/*
Theme Name: Dobrocred Linktree
Theme URI: https://dobrocred.com.br
Description: Tema Linktree moderno para Dobrocred com links de serviços financeiros
Version: 1.0.0
Author: Dobrocred
Author URI: https://dobrocred.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dobrocred-linktree
Domain Path: /languages
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  background: radial-gradient(circle at center, #354b7c 0%, #17213a 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.dobrocred-container {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.dobrocred-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dobrocred-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.dobrocred-logo img {
  height: 8rem;
  width: 8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dobrocred-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.dobrocred-subtitle {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.dobrocred-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #64748b;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
}

.dobrocred-share-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dobrocred-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dobrocred-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  background-size: 100% 100%;
  background-position: 0 0;
}

.dobrocred-link:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.dobrocred-link-content {
  flex: 1;
  text-align: left;
}

.dobrocred-link-title {
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.dobrocred-link-description {
  font-size: 0.875rem;
  opacity: 0.9;
  display: block;
  margin-top: 0.25rem;
}

.dobrocred-link-arrow {
  margin-left: 1rem;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.dobrocred-link:hover .dobrocred-link-arrow {
  transform: translateX(0.25rem);
}

/* Cores dos links */
.dobrocred-link.fgts {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.dobrocred-link.consignado {
  background: linear-gradient(135deg, #3b82f6 0%, #4f46e5 100%);
}

.dobrocred-link.inss {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.dobrocred-link.bolsa-familia {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.dobrocred-link.quem-somos {
  background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
}

.dobrocred-footer {
  width: 100%;
  max-width: 28rem;
  margin-top: 3rem;
  text-align: center;
}

.dobrocred-footer-text {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.dobrocred-footer-phone {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Responsivo */
@media (max-width: 640px) {
  .dobrocred-title {
    font-size: 1.5rem;
  }

  .dobrocred-link {
    padding: 0.875rem 1.25rem;
  }

  .dobrocred-link-title {
    font-size: 1rem;
  }

  .dobrocred-link-description {
    font-size: 0.8125rem;
  }
}

