/* ==========================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #191919;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: #26D07C;
}

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1CCE75;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    z-index: 99998;
    font-size: 16px;
    font-weight: 400;
}

.announcement-bar p {
    margin: 0;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background-color: #191919;
    padding: 50px 0 0;
    margin-top: 41px; /* Altura do announcement bar */
}

.hero-card {
    background-color: #1CCE75;
    border-radius: 32px;
    padding: 40px 32px 0;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    height: auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 50px;
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 70px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 84px;
    letter-spacing: -1.89px;
    text-transform: none;
    margin: 0;
}

.hero-title .highlight {
    color: #000000;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    max-width: 550px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
    margin-bottom: -50px;
    align-self: flex-end;
    max-height: 530px;
    object-fit: cover;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
    background-color: #064A27;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-primary-dark {
    background-color: rgb(6, 74, 39) !important;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    padding: 18px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.btn-primary-dark:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-cta-green {
    background-color: #1FE882;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    display: block;
    margin: 40px auto 0;
    width: fit-content;
    min-width: 220px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-cta-green:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ==========================================
   LOGO CAROUSEL
   ========================================== */
.logo-carousel-section {
    background-color: #191919;
    padding: 20px 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 143px;
    height: 60px;
}

.logo-item img {
    max-width: 143px;
    height: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-section {
    background-color: #191919;
    padding: 60px 0 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 62px;
    letter-spacing: -0.918px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle-green {
    font-size: 15px;
    font-weight: 400;
    color: #1FE882;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #3D3D3D;
    border-radius: 16px;
    border: 1px solid #5B5B5B;
    padding: 24px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-icon {
    font-size: 32px;
    color: #59FFAD;
    margin-bottom: 16px;
}

.benefit-icon i {
    color: #59FFAD;
    font-size: 32px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 29.4px;
    letter-spacing: -0.567px;
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25.5px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    background-color: #191919;
    padding: 0 0 30px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: rgb(61, 61, 61);
    border: 1px solid #5B5B5B;
    border-radius: 16px;
    padding: 32px;
    margin: 10px;
    min-width: 331px;
    min-height: 295px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 21px;
    letter-spacing: -0.405px;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25.5px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.29);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* ==========================================
   PLANS SECTION
   ========================================== */
.plans-section {
    background-color: #191919;
    padding: 75px 0 48px;
}

.plans-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.link-highlight {
    color: #1FE882;
    font-weight: 700;
    text-decoration: underline;
}

.plans-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.plans-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.plans-track::-webkit-scrollbar {
    display: none;
}

/* FIX: Exibe exatamente 3 cards simultaneamente */
/* 3 cards de 314px + 2 gaps de 20px = 982px (cabe em 984px do container) */
.plan-slide {
    width: 314px;
    min-width: 314px;
    max-width: 314px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.plan-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.plans-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #5B5B5B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
    background-color: #FFFFFF;
}

/* ==========================================
   GUARANTEE SECTION
   ========================================== */
.guarantee-section {
    background-color: #191919;
    padding: 60px 0;
}

.guarantee-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-badge img {
    width: 200px;
    height: auto;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text p {
    margin: 16px 0;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.guarantee-feature i {
    color: rgb(38, 208, 124);
    font-size: 18px;
    flex-shrink: 0;
}

.check-icon {
    font-size: 20px;
}

/* ==========================================
   FINAL CTA / PRICING SECTION
   ========================================== */
.final-cta-section {
    background-color: #191919;
    padding: 10px 0 64px;
}

.cta-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cta-text {
    flex: 1;
}

.cta-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1FE882;
    line-height: 48px;
    margin: 12px 0 24px;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.cta-benefits li i {
    color: #1fe882;
    font-size: 20px;
    flex-shrink: 0;
}

.pricing-card {
    background-color: #26C476;
    border-radius: 16px;
    border: 1px solid rgb(12, 78, 12);
    padding: 25px 40px 32px;
    max-width: 430px;
    flex-shrink: 0;
}

.pricing-title-label {
    color: #ffffff;
    font-size: 29px;
    font-weight: 900;
    background: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 16px;
}

.pricing-badge {
    display: inline-block;
    background-color: #064A27;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    line-height: 18.2px;
}

.pricing-original {
    color: #B0FFA4;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.strikethrough {
    text-decoration: line-through;
}

.pricing-main {
    font-size: 52px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 12px 0;
}

.pricing-alternative {
    font-size: 20px;
    font-weight: 800;
    color: rgb(47, 47, 47);
    margin-bottom: 20px;
}

.pricing-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 16px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.pricing-features li i {
    color: rgb(6, 74, 39);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i {
    font-size: 16px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
    background-color: #303030;
    border-radius: 40px 40px 0px 0px;
    padding: 140px 0;
}

.faq-layout {
    display: flex;
    gap: 60px;
}

.faq-header {
    flex: 1;
}

.faq-label {
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 23.8px;
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 15px;
    color: #FFFFFF;
    margin-top: 16px;
}

.faq-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background-color: #23C374;
    border-radius: 16px;
    overflow: hidden;
}

.faq-title {
    padding: 24px 24px 24px 32px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-title:hover {
    filter: brightness(1.05);
}

.faq-icon {
    font-size: 20px;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #23C374;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 25.5px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #222222;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h2 {
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 20.4px;
}

.footer-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-right p,
.footer-right a {
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-right a:hover {
    color: #26D07C;
}

/* ==========================================
   SOCIAL PROOF POPUP
   ========================================== */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 99999;
    animation: fadeInUp 0.5s ease;
}

.social-proof-inner {
    background-color: #3D3D3D;
    border-radius: 30px;
    padding: 16px 20px;
    box-shadow: rgba(0, 0, 0, 0.38) 3px 5px 10px 1px;
    max-width: 260px;
    font-size: 13px;
    color: #FFFFFF;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   SECTION-SPECIFIC TITLE STYLES
   ========================================== */

/* Depoimentos section title */
.testimonials-section .section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
}

/* Planos section title */
.plans-section .section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
}

/* Garantia section title */
.guarantee-section .section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
}

/* CTA final section title */
.final-cta-section .section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
}

/* FAQ section title */
.faq-section .section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
}

/* Benefícios section - TotalPass highlight */
.benefits-section .section-title .highlight {
    color: #1FE882;
    font-size: 55px;
}

/* Benefícios section title */
.benefits-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* ============================================
   MOBILE — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

  /* HERO */
  .hero-section { padding: 40px 0 0; }

  .hero-card {
    flex-direction: column;
    padding: 30px 20px 0;
    max-width: 100%;
    align-items: stretch;
    display: flex;
  }

  .hero-content {
    display: contents; /* Flatten structure to allow proper ordering */
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
    order: 1;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    order: 2;
    margin-bottom: 24px;
  }

  /* Imagem hero: aparece ANTES do botão (foto em cima, button em baixo) */
  .hero-image {
    max-width: 100%;
    width: 100%;
    flex: unset;
    order: 3;
    margin-bottom: 24px;
  }

  .hero-content .btn-primary {
    order: 4;
    margin-bottom: 30px;
  }

  .hero-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 16px;
  }

  /* BOTÃO VER PLANOS — evitar overflow */
  .btn-primary-dark {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    box-sizing: border-box;
  }

  /* BOTÃO CTA VERDE — evitar overflow */
  .btn-cta-green {
    width: calc(100% - 40px);
    max-width: 100%;
    min-width: unset;
    padding: 16px 20px;
    box-sizing: border-box;
    margin: 30px auto 0;
  }

  /* BENEFITS */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  .benefit-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  /* TESTIMONIALS */
  .testimonials-track { padding: 10px 20px; }

  .testimonial-card {
    min-width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
    width: calc(100vw - 60px);
  }

  /* CAROUSEL BOTÕES */
  .carousel-btn { display: none; }

  /* PLANS */
  .plans-section { padding: 50px 0 30px; }

  .plans-track { padding: 10px 20px; gap: 16px; }

  .plan-slide {
    min-width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
    width: calc(100vw - 60px);
  }

  /* GUARANTEE */
  .guarantee-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .guarantee-badge { justify-content: center; }
  .guarantee-text { text-align: center; }

  /* FINAL CTA / PRICING */
  .cta-layout {
    flex-direction: column;
    gap: 30px;
  }

  .pricing-card {
    max-width: 100%;
    width: 100%;
    padding: 25px 24px 32px;
    box-sizing: border-box;
  }

  .pricing-main { font-size: 42px; }
  .pricing-title-label { font-size: 22px; }

  /* FAQ */
  .faq-layout {
    flex-direction: column;
    gap: 20px;
  }

  .faq-item { width: 100%; box-sizing: border-box; }

  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-right p,
  .footer-right a {
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    word-break: break-word;
  }
}

/* ============================================
   MOBILE PEQUENO — max-width: 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 32px; line-height: 40px; }
  .section-title { font-size: 28px; }
  .cta-highlight { font-size: 22px; }
  .pricing-main { font-size: 38px; }
}
