/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00a539;
    --primary-blue: #002655;
    --dark-bg: #101010;
    --light-gray: #f2f2f2;
    --medium-gray: #f1f1f1;
    --text-dark: #1b1b1b;
    --text-light: #b4b4b4;
    --white: #ffffff;
    --black: #000000;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
}

.container {
    max-width: 1145px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1000;
    box-sizing: border-box;
}

.header-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 31px;
    flex-wrap: wrap;
}

/* Top bar: logo (desktop) / logo + hambúrguer (mobile) */
.header-top {
    display: flex;
    align-items: center;
}

.logo {
    height: 23px;
}

.logo-img {
    height: 100%;
    width: auto;
}

/* Botão hambúrguer - escondido no desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 1001;
}
.menu-toggle:hover {
    background: rgba(0, 38, 85, 0.08);
}
.menu-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Redes sociais dentro do menu (mobile) - escondido no desktop */
.menu-social {
    display: none;
}

.menu-social-link img {
    width: 23px;
    height: 23px;
}

.nav {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
    margin-right: 50px;
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-entrar {
    background: var(--primary-green);
    color: var(--white);
    width: 153px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 16.5px 40px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 16.5px 40px;
    font-size: 16px;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 800px;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 20px;
}

.link-underline {
    text-decoration: underline;
    font-style: italic;
    font-weight: 600;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    color: var(--white);
    line-height: 64px;
    margin-bottom: 30px;
    line-height: 1;
    display: flex;
    flex-flow: column wrap;
}

.hero-title strong {
    font-weight: 700;
}

.header__word-container {
    position: relative;
    height: 74px;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

[data-ref="header-word"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 71px;
    transform: translate3d(0, 100%, 0);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
}

[data-ref="header-word"]:first-child {
    transform: translate3d(0, 0, 0);
}

.hero-description {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 388px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    text-decoration: none;
}

.hero-buttons .btn-outline {
    color: #fff;
    border: 1px solid #fff;
}

.hero-buttons .btn-outline:hover {
    color: #fff;
    border-color: #fff;
    opacity: 0.9;
}

.hero-buttons .btn {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(80px);
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    height: 77px;
    width: auto;
    opacity: 0;
    filter: blur(7px);
    transform: translateY(80px);
}

.hero-social {
    position: absolute;
    top: 74px;
    right: 3%;
    display: flex;
    gap: 7px;
    z-index: 3;
}

.hero-social a:hover{
    opacity: 0.7;
    transform: translateY(-2px);
}

.social-link {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(80px);
}

.social-link img {
    width: 23px;
    height: 23px;
}

/* Section Light */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light-gray);
    border-radius: 48px;
    margin: 40px 20px;
    max-width: 1145px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 53px 80px;
}

.section-text {
    flex: 1;
}

.section-title {
    font-size: 40px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 40px;
    margin-bottom: 20px;
}

.section-title strong {
    font-weight: 700;
}

.section-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 300;
}

.section-image {
    flex: 1;
    border-radius: 50px;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

/* Section Dark */
.section-dark {
    background: var(--primary-blue);
    border-radius: 48px;
    margin: 40px 20px;
    max-width: 1145px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 208px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.section-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 42, 84, 0.3);
    z-index: 1;
}

.section-dark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    border-radius: 48px;
    overflow: hidden;
}

.section-dark-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title-white {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    line-height: 57px;
}

.section-title-white strong {
    font-weight: 700;
}

/* Section Telemedicina */
.section-telemedicina {
    background-color: #fff;
    margin: 40px 20px;
    max-width: 1145px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-sizing: border-box;
}

.section-content-reverse {
    background: linear-gradient(to right, #003e6b  0%,  #00b148 94%);
    display: flex;
    align-items: center;
    padding: 0 79px;
    position: relative;
    border-radius: 48px;
    height: 287px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 40px;
    max-width: 34%;
}

.section-subtitle em {
    font-weight: 700;
    font-style: italic;
}


.telemedicina-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.telemedicina-text-bold {
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
}

.telemedicina-download {
    font-size: 13px;
    color: var(--primary-blue);
}

.section-image-large {
    position: relative;
    flex: 1;
    min-width: 0;
    max-width: 583px;
}

.section-image-large img {
    height: auto;
    border-radius: 50px;
    margin-top: -202px;
}

.fotos-perfil {
    display: flex;
    z-index: 2;
}

.fotos-perfil img {
    width: 30px;
    height: 30px;
}

.testimonial-img {
    margin-left: -11px;
    position: relative;
}

.telemedicina-download-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

/* Section Info */
.section-info {
    background: var(--medium-gray);
    padding: 142px 0;
    margin: 0;
    border-radius: 0;
}

.info-text {
    max-width: 993px;
    margin: 0 auto;
    font-size: 28px;
    color: var(--text-dark);
    line-height: 57px;
    text-align: center;
}

:root {
    --bg: #f1f1f1;
    --fg: #282828;
    --muted: #f1f1f1;
}

.info-text  span {
    -webkit-background-clip: text;
    background-clip: text;
    background-color: var(--muted);
    background-image: linear-gradient(135deg, var(--fg) 50%, var(--muted) 60%);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 0% 200%;
    color: transparent;
    display: inline;
    will-change: background-size;
}

.info-text em {
    font-weight: 700;
    font-style: italic;
}

/* Section Steps */
.section-steps {
    background: transparent;
    padding: 60px 0;
}

.steps-header {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    min-height: 67vh;
}

.slide {
    display: flex;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: flex 0.9s ease-in;
    border-radius: 48px;
    padding: 0px 30px;
    min-width: 310px;
    background: var(--light-gray);
    align-items: flex-end;
    justify-content: center;
    transition: background 0.1s ease-in;
}
.slide:hover {
    background: #eeeeee;
}



.slide h2 {
    font-size: 32px;
    font-weight: 400;
    text-align: left;
    margin: 0;
    color: #B4B4B4;
    line-height: 40px;
    bottom: 10%;
    position: relative;
    min-width: 240px;
}

.slide h2 span {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #B4B4B4;
    text-align: left;
    padding-bottom: 20px;
    transition: padding-bottom 0.7s ease-in;
}

.slide .step-content{
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0s 0.6s;
    max-height: 0;
    overflow: hidden;
}

.slide.active {
    flex: 2;
    background: var(--primary-blue);
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    transition: all 0.4s ease-in;
}

.slide.active:hover {
    background: var(--primary-blue);
}

.slide.active h2{
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 30px;
    bottom:0px;
    padding-right: 54px;
    transition: padding-bottom 1s ease-in;
}

.slide.active h2 span{
    color: #fff;
    float: left;
    margin-right: 20px;
    padding-bottom: 0px;
    transition: padding-bottom 0.7s ease-in;
}

.slide.active .step-content{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s, visibility 0s 0s;
    max-height: 1000px;
}

.step-03 h2,
.step-03 h3,
.step-03 p {
    color: var(--white);
}

/* Esconder conteúdo detalhado dos slides não ativos */
.slide:not(.active) .step-03-content {
    display: none;
}

.slide.active .step-03-content {
    display: block;
}

.step-03-content {
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 40px;
    margin-bottom: 20px;
}

.step-title-white {
    font-size: 32px;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 30px;
}

.step-description-white {
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
}

.step-image {
    width: 100%;
    max-width: 217px;
    height: auto;
    border-radius: 30px;
    margin-top: 40px;
}

.steps-numbers {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.step-num {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 40px;
}

/* Section Benefits */
.section-benefits {
    background: transparent;
    padding: 0px 0;
}

.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 90px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.benefits-grid {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.benefit-card {
    background: transparent;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    height: 530px;
    width: 275px;
    flex-shrink: 0;
}

.benefit-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 48px;
    overflow: hidden;
}

.benefit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 38, 85, 0.12) 55%, var(--primary-blue) 99.519%);
    border-radius: 48px;
}

.benefit-title {
    position: absolute;
    bottom: 76.5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    text-align: center;
    width: 212px;
    line-height: 26px;
}

.benefit-card-dark {
    background: #121212;
}

.benefit-card-dark .benefit-card-image img {
    opacity: 0.2;
}

.benefit-title-dark {
    position: absolute;
    bottom: 76.5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
    width: 212px;
    line-height: 26px;
}

/* Section Plans */
.section-plans {
    background: transparent;
    padding: 100px 0;
}

.plans-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 316px;
}

.plans-header .section-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
}

.plans-header .section-description {
    font-size: 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: 394px 394px 394px;
    gap: 40px;
    justify-content: center;
    position: relative;
}

.plan-card {
    border-radius: 48px;
    padding: 40px 35px;
    position: relative;
    height: 690px;
    display: flex;
    flex-direction: column;
}

.plan-escolha {
    background: var(--light-gray);
    justify-content: space-between;
}

.plan-escolha .plan-title {
    color: var(--text-dark);
    text-align:left;
    line-height: 42px;
    margin-bottom:0px;
}

.plan-escolha .plan-description {
    color: var(--text-dark);
    text-align:left;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.plan-basic {
    background: var(--light-gray);
}

.plan-premium {
    background: var(--primary-blue);
}

.plan-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.plan-basic .plan-title {
    color: var(--text-dark);
}

.plan-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
}

.plan-currency {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    align-self: flex-start;
    padding-top: 10px;
}

.plan-basic .plan-currency {
    color: var(--text-dark);
}

.plan-value {
    font-size: 180px;
    font-weight: 700;
    color: var(--white);
    line-height: 99px;
    letter-spacing: -9px;
}

.plan-basic .plan-value {
    color: var(--text-dark);
}

.plan-cents {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    align-self: flex-end;
    padding-bottom: 10px;
}

.plan-basic .plan-cents {
    color: var(--text-dark);
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 40px;
}

.plan-features li {
    font-size: 18px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 10px;
}

.plan-basic .plan-features li {
    color: var(--text-dark);
}

.plan-arrow {
    position: absolute;
    bottom: 111.5px;
    left: 55px;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-arrow img {
    width: 19px;
    height: auto;
    display: block;
}

/* Section Testimonials */
.section-testimonials {
    background: transparent;
    padding: 60px 0;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.testimonials-nav {
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 38, 85, 0.3);
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.nav-dot:hover {
    background: rgba(0, 38, 85, 0.6);
}

.nav-dot:active {
    background: var(--primary-blue);
}

.testimonials-carousel {
    overflow: visible;
    width: 100%;
    position: relative;
    padding: 0 calc((100% - (506px * 3 + 32px * 2)) / 2);
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    width: fit-content;
    position: relative;
    left: -253px; /* Move para mostrar metade do primeiro card à esquerda */
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 506px;
    flex-shrink: 0;
}

.testimonial-text {
    background: var(--medium-gray);
    border-radius: 48px;
    padding: 65px 69px;
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 94px;
    height: 94px;
    border-radius: 50%;
}

.testimonial-name {
    font-size: 27px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 30px;
}

/* Section Banner */
.section-banner {
    background: var(--primary-green);
    border-radius: 48px;
    margin: 40px 20px;
    max-width: 1145px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-title {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    line-height: 57px;
}

.banner-title-normal {
    font-weight: 400;
}

/* Section FAQ */
.section-faq {
    background: transparent;
    padding: 60px 0;
}

.faq-content {
    display: grid;
    grid-template-columns: 316px 1fr;
    gap: 80px;
}

.faq-intro {
    background: var(--light-gray);
    border-radius: 48px;
    padding: 80px 53px;
    height: 564px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-arrow {
    margin-top: 40px;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-arrow img {
    width: 19px;
    height: auto;
    display: block;
}

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

.faq-item {
    background: var(--medium-gray);
    border-radius: 24px;
    padding: 28px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item-open {
    background: var(--primary-blue);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-item-open .faq-question {
    color: var(--white);
}

.faq-answer {
    margin-top: 20px;
    font-size: 20px;
    color: var(--white);
    line-height: 1.6;
    display: none;
}

.faq-item-open .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    padding: 107px 0 40px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-text {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social img {
    width: 28px;
    height: 28px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-contact {
    font-size: 20px;
    color: var(--white);
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1172px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.footer-disclaimer p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 4%;
    }
    
    .section-content {
        padding: 40px 40px;
    }
    
    .section-content-reverse {
        padding: 0 40px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 394px;
        margin: 0 auto;
    }
    
    .testimonials-carousel {
        padding: 0 20px;
    }
    
    .testimonials-grid {
        left: 0;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav {
        gap: 24px;
        margin-right: 20px;
    }
    
    .section-content {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }
    
    .section-content-reverse {
        flex-direction: column;
        height: auto;
        min-height: 287px;
        padding: 40px 30px;
    }
    
    .section-subtitle {
        max-width: 100%;
        font-size: 28px;
    }
    
    .section-image-large {
        max-width: 100%;
    }
    
    .section-image-large img {
        margin-top: 0;
        width: 100%;
    }
    
    .steps-header {
        flex-direction: column;
        min-height: auto;
    }

    .plans-grid .plan-escolha{
        min-height:auto;
    }
    .plans-grid .plan-escolha img{ 
        transform: rotate(90deg);
    }
    
    .slide {
        display: block;
        min-width: 100%;
        padding: 30px 24px;
    }
    
    .slide h2 {
        min-width: auto;
    }
    
    .benefits-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-intro {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .header {
        top: 8px;
        padding: 0 16px;
    }
    
    /* Versão do menu só para mobile: top bar fixa + drawer */
    .header-container {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        min-height: 0;
    }
    
    /* Primeira linha: só logo (esquerda) + hambúrguer (direita) – não desce, não centraliza */
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-shrink: 0;
        padding: 12px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    /* Conteúdo do menu (links + entrar + redes) – aparece abaixo do header-top quando aberto */
    .nav {
        display: none;
        flex-direction: column;
        gap: 0;
        margin: 0;
        align-items: stretch;
        width: 100%;
        padding: 16px 20px 0;
        border-top: 1px solid rgba(0, 38, 85, 0.15);
    }
    
    .header-container.nav-open {
        background: rgb(255 255 255);
    }
    
    .header-container.nav-open .nav {
        display: flex;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 14px 0;
        text-align: center;
        border-bottom: 1px solid rgba(0, 38, 85, 0.08);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-entrar {
        display: none !important;
        width: calc(100% - 40px);
        max-width: none;
        margin: 12px 20px 20px;
        padding: 14px 20px;
        justify-content: center;
        border-radius: 24px;
    }
    
    .header-container.nav-open .btn-entrar {
        display: flex !important;
    }
    
    .menu-social {
        display: none;
        width: 100%;
        padding: 16px 20px 20px;
        margin: 0;
        border-top: 1px solid rgba(0, 38, 85, 0.15);
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-container.nav-open .menu-social {
        display: flex;
    }
    
    .menu-social-link {
        display: inline-flex;
        transition: opacity 0.3s;
    }
    
    .menu-social-link:hover {
        opacity: 0.7;
    }
    
    /* Ícones das redes em verde no menu (fundo branco) */
    .menu-social-link img {
        width: 23px;
        height: 23px;
        filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(91deg) brightness(95%) contrast(101%);
    }
    
    .hero {
        height: auto;
        min-height: 85vh;
        padding-top: 120px;
    }
    
    /* Esconde redes no topo da hero no mobile */
    .hero-social {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 20px 20px 40px;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .header__word-container {
        height: 67px;
    }
    
    [data-ref="header-word"] {
        height: 63px;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        /* Garantir visibilidade no mobile mesmo sem animação JS */
        opacity: 1;
        filter: none;
        transform: none;
    }
    
    .hero-badges {
        display: none;
    }
    
    /* Garantir que ícones sociais apareçam no mobile (badges retirados) */
    .social-link {
        opacity: 1;
        filter: none;
        transform: none;
    }
    
    .section-light,
    .section-dark,
    .section-telemedicina,
    .section-banner {
        margin-left: 16px;
        margin-right: 16px;
        border-radius: 24px;
    }
    
    .section-content,
    .section-content-reverse {
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
    }
    
    .section-image {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .section-dark {
        padding: 120px 0;
    }
    
    .section-title-white {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .section-content-reverse {
        padding: 40px 30px;
        background: linear-gradient(to right, #003e6b 0%, #00b148 214%);
    }
    
    .section-image-large {
        display: none;
    }
    
    .telemedicina-download-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .section-info {
        padding: 60px 0;
    }
    
    .info-text {
        font-size: 18px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .steps-header {
        gap: 16px;
    }
    
    .slide h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .slide h2 span {
        font-size: 40px;
    }
    
    .slide.active h2 {
        padding-right: 0;
    }
    
    .step-number,
    .step-num {
        font-size: 40px;
    }
    
    .step-title-white {
        font-size: 24px;
    }
    
    .step-description-white {
        font-size: 16px;
    }
    
    .step-image {
        max-width: 100%;
    }
    
    .benefits-header .section-title {
        font-size: 28px;
    }
    
    .benefits-header .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-card {
        width: 260px;
        height: 400px;
    }
    
    .benefit-title,
    .benefit-title-dark {
        font-size: 18px;
        width: 90%;
    }
    
    .section-plans {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 24px;
    }
    
    .plan-card {
        height: auto;
        min-height: 500px;
        padding: 32px 24px;
    }
    
    .plan-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    
    .plan-value {
        font-size: 100px;
        line-height: 1;
        letter-spacing: -4px;
    }
    
    .plan-cents {
        font-size: 32px;
    }
    
    .plan-currency {
        font-size: 20px;
    }
    
    .plan-features li {
        font-size: 16px;
    }
    
    .testimonials-carousel {
        padding: 0 16px;
        overflow: hidden;
    }
    
    .testimonial-card {
        width: 280px;
        min-width: 280px;
    }
    
    .testimonial-text {
        padding: 32px 24px;
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .banner-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-banner {
        padding: 48px 20px;
    }
    
    .faq-intro {
        padding: 40px 24px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-text,
    .footer-contact,
    .footer-links a {
        font-size: 16px;
    }
    
    .footer-disclaimer {
        padding-top: 40px;
    }
    
    .footer-disclaimer p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .header {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 54px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title-white {
        font-size: 24px;
    }
    
    .plan-value {
        font-size: 80px;
    }
    
    .plan-cents {
        font-size: 28px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .benefit-card {
        width: 240px;
        height: 360px;
    }
    
    .testimonial-card {
        width: 260px;
        min-width: 260px;
    }
}

/* Estilos para páginas de assinatura (checkout, success, dashboard) */
/* Os estilos específicos estão inline nas páginas para melhor organização */
/* Estes são estilos auxiliares globais */

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Modal de Checkout */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.checkout-modal-content {
    background: var(--white);
    border-radius: 48px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.checkout-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.checkout-modal-close:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.checkout-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.checkout-modal-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 24px;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group input.error {
    border-color: #dc3545;
}

.form-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Responsive para páginas de assinatura */
@media (max-width: 768px) {
    .checkout-box,
    .success-box,
    .cancel-box,
    .dashboard-card,
    .manage-card {
        padding: 30px 20px;
    }
    
    .subscription-info {
        grid-template-columns: 1fr;
    }
    
    .dashboard-actions {
        flex-direction: column;
    }
    
    .dashboard-actions .btn {
        width: 100%;
    }
    
    .checkout-modal-content {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .checkout-modal-title {
        font-size: 24px;
    }
}
