:root {
      --primary-color: #0d3b66;
      --secondary-color: #f4f8f7;
      --accent-color: #25d366;
      --text-color: #333333;
      --text-muted: #6c757d;
      --primary-btn: #1A365D;
      --primary-btn-hover: #122540;
      --success-color: #28a745;

}

body {
      font-family: 'Poppins', sans-serif;
      background-color: #fafafa;
      color: var(--text-color);
      line-height: 1.6;
      overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
      font-weight: 600;
      color: var(--primary-color);
}

.text-blue {
      color: var(--primary-color);
}

@keyframes pulse-whatsapp {
      0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }

      100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
}

.btn-whatsapp {
      background-color: var(--accent-color);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      border: none;
      animation: pulse-whatsapp 2s infinite;
}

.btn-whatsapp:hover {
      background-color: #1ebc59;
      color: white;
      animation: none;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large {
      font-size: 1.2rem;
      padding: 18px 40px;
}

/* --- HERO SECTION --- */
.hero-split {
      position: relative;
      background: url('../images/hero-background.jpeg') center center / cover no-repeat;
      min-height: 90vh;
      display: flex;
      align-items: center;
}

.hero-split::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(13, 59, 102, 0.95) 0%, rgba(13, 59, 102, 0.8) 45%, rgba(13, 59, 102, 0) 100%);
      z-index: 1;
}

.hero-text-col {
      position: relative;
      z-index: 2;
}

.hero-text-inner {
      padding: 4rem 0;
}

.hero-text-inner h1 {
      color: #ffffff;
      line-height: 1.2;
      font-size: 3rem;
      margin-bottom: 1rem;
}

.hero-text-inner .hero-subtitle {
      color: #d0e1f9;
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: 2rem;
      line-height: 1.5;
}

.hero-benefits {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
}

.hero-benefits li {
      color: #ffffff;
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 10px;
}

.hero-benefits li i {
      color: var(--accent-color);
      font-size: 1.3rem;
}

.badge-hero {
      background-color: rgba(37, 211, 102, 0.2);
      border: 2px solid var(--accent-color);
      color: #ffffff;
      padding: 10px 24px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-block;
      margin-bottom: 20px;
      backdrop-filter: blur(5px);
}

@media (max-width: 991px) {
      .hero-split {
            background-position: 75% top !important;
            /* Foca no rosto na parte de cima */
            align-items: flex-end;
            min-height: 100vh;
            /* Ocupa a tela toda para dar espaço */
      }

      .hero-split::before {
            /* Deixa o topo transparente (rosto) e escurece a base (texto) */
            background: linear-gradient(to bottom, rgba(13, 59, 102, 0) 0%, rgba(13, 59, 102, 0) 30%, rgba(13, 59, 102, 0.95) 60%, var(--primary-color) 100%);
      }

      .hero-text-inner {
            padding: 12rem 1rem 5rem 1rem;
            /* Empurra o texto para a área escura */
            text-align: center;
      }

      .hero-text-inner h1 {
            font-size: 2.2rem;
            /* Ajusta o título para não esmagar a tela */
      }

      .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            font-size: 25px;
      }

      .pricing-card {
            padding: 40px 20px;
      }
}

/* Cause Card */
.cause-card {
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
}

.cause-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
      border-color: var(--primary-btn);
}

.cause-card h4 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
}

.cause-card p {
      font-size: 0.95rem;
      line-height: 1.6;
}

.cause-icon-wrapper {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
}

.cause-icon-wrapper i {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
}

/* Button Secondary */
.btn-outline-primary-customized {
      border: 2px solid var(--primary-btn);
      color: var(--primary-btn);
      padding: 10px 25px;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
}

.btn-outline-primary-customized:hover {
      background-color: var(--primary-btn);
      color: #fff;
}

/* Method Card */
.method-box {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      height: 100%;
      position: relative;
      /* A linha 'overflow: hidden;' foi removida daqui para não cortar o texto */
      border-left: 4px solid var(--primary-color);
      margin-bottom: 1rem;
}

/* Pricing Card */
.pricing-card {
      background: white;
      border: 1px solid var(--primary-color);
      border-radius: 24px;
      padding: 50px 40px;
      position: relative;
      box-shadow: 0 15px 40px rgba(13, 59, 102, 0.08);
      min-width: 280px;
}

.pricing-card .price-original {
      text-decoration: line-through;
      color: var(--text-muted);
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
}

.pricing-card .price-current {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
}

.pricing-card .price-current small {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-muted);
}

.pricing-card .price-detail {
      color: var(--text-muted);
      font-size: 1rem;
      margin-bottom: 1.5rem;
}

.pricing-card .discount-badge {
      background: #e8f5e9;
      color: #2e7d32;
      padding: 6px 16px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.9rem;
      display: inline-block;
      /* margin-bottom: 1.5rem; */
      letter-spacing: 0.5px;
}

.pricing-card .pricing-badge {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-color);
      color: white;
      padding: 8px 24px;
      border-radius: 30px;
      font-size: 0.95rem;
      font-weight: 500;
      white-space: nowrap;
      letter-spacing: 0.5px;
}

.pricing-card .badge-popular {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: #e3f2fd;
      color: #1565c0;
      padding: 8px 24px;
      border-radius: 30px;
      border: 1px solid #bbdefb;
      /* Bordinha sutil */
      font-size: 0.95rem;
      font-weight: 500;
      white-space: nowrap;
      letter-spacing: 0.5px;
}

.pricing-card .features-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
}

.pricing-card .features-list li {
      padding: 0.8rem 0;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      gap: 10px;
}

.pricing-card .features-list li:last-child {
      border-bottom: none;
}

.pricing-card .features-list li i {
      color: var(--success-color);
      font-size: 1.2rem;
}

.pricing-card .limited-spots {
      background: #fff3cd;
      border-left: 4px solid #ffc107;
      padding: 1rem;
      border-radius: 8px;
      margin: 1.5rem 0;
      font-size: 0.95rem;
      color: #856404;
}

.pricing-card .limited-spots strong {
      color: #cc5200;
}

/* TRUST BADGES */
.trust-badges {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 3rem;
}

.trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      /* color: white; */
      font-size: 0.95rem;
      font-weight: 500;
}

.trust-badge i {
      font-size: 1.5rem;
      color: var(--accent-color);
}

/* Objections Card */
.objection-card {
      background-color: var(--secondary-color);
      border-radius: 16px;
      padding: 30px;
      height: 100%;
      text-align: center;
      border: 1px solid #e9ecef;
}

.objection-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
}

/* Custom Accordion (FAQ) */
.accordion-button:not(.collapsed) {
      background-color: var(--secondary-color);
      color: var(--primary-color);
      box-shadow: none;
      font-weight: 600;
}

.accordion-button:focus {
      box-shadow: none;
}

.accordion-item {
      border: 1px solid #eaeaea;
      border-radius: 12px !important;
      margin-bottom: 15px;
      overflow: hidden;
      background: white;
}

/* Profile Image */
.img-profile {
      border-radius: 20px;
      width: 100%;
      max-width: 450px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      object-fit: cover;
      /* border: 5px solid white; */
}

/* Floating Button */
.whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 40px;
      background-color: #25D366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 3px #999;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      text-decoration: none;
      animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
      background-color: #128C7E;
      color: #fff;
      transform: scale(1.1);
      animation: none;
}

/* --- Hover effect for the remaining cards (Method, Price, and Objections) --- */

/* 1. Prepares the boxes for smooth animation */
.method-box,
.pricing-card,
.objection-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 2. Makes the boxes float when you hover the mouse over them */
.method-box:hover,
.pricing-card:hover,
.objection-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* 3. (Optional) Extra emphasis on the border in the Method and Objections sections */
.method-box:hover,
.objection-card:hover {
      border-color: var(--primary-color);
}