/* Importação das fontes Gilroy locais */
@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-Heavy.ttf') format('truetype');
    font-weight: 950;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/gilroy/Gilroy-HeavyItalic.ttf') format('truetype');
    font-weight: 950;
    font-style: italic;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilroy", "Century Gothic", "CenturyGothic", "AppleGothic", sans-serif;
}
html, body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Controle de visibilidade */
.show-mobile {
    display: none; /* Esconde no desktop por padrão */
}

body {
    min-height: 100vh;
    padding-top: 98px; /* Compensação para o header fixo */
}

/* Estilos da navbar */
header {
    width: 100%;
    background-color: #012538;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Efeito de transparência ao rolar */
header.scrolled {
    background-color: rgba(1, 37, 56, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 20px;
}

.logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 60px;
}

.nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    font-family: "Gilroy", sans-serif;
    letter-spacing: 2.3px;
    transition: 0.3s;
}

.nav-item .nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: #2FA8D8;
    transition: 0.3s;
}

.nav-item:hover .nav-icon {
    fill: #2FA8D8;
    transform: scale(1.1);
}

.nav-item:hover {
    color: #2FA8D8;
}

.nav-item.active {
    color: #2FA8D8;
}

.nav-item.active .nav-icon {
    fill: #2FA8D8;
    transform: scale(1.1);
}

.menu-mobile {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger {
    width: 25px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.line {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-mobile.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-mobile.active .line2 {
    opacity: 0;
}

.menu-mobile.active .line3 {
    transform: rotate(-45deg) translate(6px, -5px);
}

/* Estilos para seção hero */
.hero {
    position: relative;
    background-image: url('assets/img-section/section-one/IMAGEM-DE-FUNDO.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 600px;
    gap: 80px;
}

.hero-text {
    max-width: 590px;
    flex: 0 0 590px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    transform: translateY(-25px);
    position: relative;
    z-index: 10;
}

.hero-doctor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 730px;
    max-width: 500px;
}

.hero-logo-bg {
    position: absolute;
    right: 375px;
    top: 34%;
    transform: translateY(calc(-50% + 35px));    
    z-index: 1;
    opacity: 0.8;
}

.logo-background {
    max-width: 450px;
    height: auto;
}

.doctor-image {
    height: 100%;
    width: auto;
    max-height: 730px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: translateX(-150px) translateY(15px) scale(1.11);
}

.hero-title {
    color: #012538;
    font-size: 48px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.text-nutrition {
    font-size: 89px;
}

.hero-subtitle-light {
    color: #012538;
    font-size: 45px;
    font-weight: 400;
    font-family: "Gilroy", sans-serif;
    line-height: 1.1;
    margin-top: -15px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.hero-subtitle-medium {
    color: #012538;
    font-size: 28px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-quote {
    background: linear-gradient(135deg, #013956 0%, #29788c 100%);
    padding: 25px 30px;
    margin-bottom: 45px;
    box-shadow: 0 8px 25px rgba(1, 57, 86, 0.25);
    max-width: 400px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, black 65%, transparent 100%);
}

.quote-text {
    color: white;
    font-size: 17px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.quote-author {
    color: #4AB8D5;
    font-size: 15px;
    font-style: italic;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    text-align: left;
    margin: 0;
    letter-spacing: 1.8px;
}



.hero-image {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.cta-button {
    display: inline-block;
    background-color: #00c86c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 25px 45px;
    border-radius: 6px;
    transition: 0.3s;
    text-transform: uppercase;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 200, 108, 0.2);
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.cta-button:hover {
    background-color: #00a655;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 200, 108, 0.3);
}

/* Estilos para seção sobre */
.about {
    background-color: #1a4a5c;
    background-image: url('assets/img-section/section-two/IMAGEM-DE-FUNDO.png');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.about-doctor {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(calc(-50% - 200px));
    width: 1000px;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.about-logo-bg {
    position: absolute;
    left: 40px;
    top: 62%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 1;
}

.logo-background-about {
    max-width: 610px;
    height: auto;
}

.doctor-image-about {
    width: 103%;
    height: auto;
    max-width: 1029px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    margin-top: 245px;
    margin-left: 25px;
}

.about-text {
    flex: 1;
    max-width: 650px;
    margin-left: auto;
    margin-right: -60px;
    position: relative;
    z-index: 2;
}

.about-subtitle {
    color: #4AB8D5;
    font-size: 14px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: white;
}

.about-description {
    font-size: 18px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.about-features {
    margin-bottom: 40px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    background: rgba(47, 168, 216, 0.35);
    padding: 15px 18px;
    border-radius: 8px;
    gap: 1px;
    transition: all 0.3s ease;
    min-height: 65px;
    max-width: 320px;
}

.feature-row .feature-item:nth-child(1) {
    min-width: 300px;
}

.feature-row .feature-item:nth-child(2) {
    min-width: 400px;
}

.feature-item:hover {
    background: rgba(47, 168, 216, 0.35);
    transform: translateY(-2px);
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2px;
}

.feature-icon img {
    width: 16px;
    height: 16px;
}

.feature-text {
    font-size: 13px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

.about-cta-button {
    display: inline-block;
    background-color: #00c86c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 19px 38px;
    border-radius: 6px;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 200, 108, 0.3);
}

.about-cta-button:hover {
    background-color: #00a655;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 108, 0.4);
}

/* Estilos para seção serviços */
.services {
    position: relative;
    background-color: #f5f7f9;
    background-image: url('https://img.freepik.com/free-photo/man-suit-fixing-his-tie_144627-43300.jpg');
    background-size: cover;
    background-position: center left;
    color: #00274e;
    overflow: hidden;
    padding: 100px 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(245,247,249,0.95) 60%, rgba(245,247,249,0.7) 100%);
    z-index: 1;
}

.services-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}

.services-text {
    width: 60%;
    text-align: left;
}

.services-title {
    font-size: 36px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #001a33;
}

.services-description {
    font-size: 20px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

/* Estilos para seção planos */
.plans {
    position: relative;
    background-color: #001a33;
    background-image: url('https://img.freepik.com/free-vector/abstract-blue-geometric-shapes-background_1035-17545.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(0,26,51,0.85) 0%, rgba(0,26,51,0.95) 70%);
    z-index: 1;
}

.plans-header {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.plans-subtitle {
    font-size: 14px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: block;
    margin-bottom: 15px;
}

.divider {
    width: 120px;
    height: 3px;
    background-color: #2FA8D8;
    margin: 0 auto 30px;
}

.plans-title {
    font-size: 40px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.plans-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.plan-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.plan-card {
    width: 48%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.plan-tag {
    display: inline-block;
    background-color: #FF6B00;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.plan-card:nth-child(2) .plan-tag {
    background-color: #FF6B00;
}

.plan-card:nth-child(3) .plan-tag {
    background-color: #FF3D00;
}

.plan-card:nth-child(4) .plan-tag {
    background-color: #2FA8D8;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.plan-description {
    font-size: 18px;
    font-weight: 600;
    font-family: "Gilroy", sans-serif;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.plan-details {
    font-size: 14px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 30px;
    min-height: 100px;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    color: #00c67f;
    text-decoration: none;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.plan-button i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.plan-button:hover {
    color: #2FA8D8;
}

.plan-button:hover i {
    transform: translateX(5px);
}

.plan-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0.7;
    width: 60px;
    height: 60px;
}

.plan-icon img {
    width: 100%;
    height: 100%;
}

/* Estilos para seção three */
.section-three {
    position: relative;
    background-image: url('assets/img-section/section-three/IMAGEM-DE-FUNDO.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.section-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-three-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 650px;
    gap: 80px;
    transform: translateY(-40px);
}

.section-three-text {
    gap: 10px;
    max-width: 650px;
    flex: 0 0 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.section-three-doctor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 730px;
    max-width: 500px;
}

.section-three-logo-bg {
    position: absolute;
    right: 375px;
    top: 34%;
    transform: translateY(calc(-50% + 35px));
    z-index: 1;
    opacity: 0.8;
}

.logo-background-three {
    max-width: 450px;
    height: auto;
}

.doctor-image-three {
    height: 100%;
    width: auto;
    max-height: 730px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: translateX(-150px) translateY(40px) scale(1.11);
}

.section-three-title {
    color: #012538;
    font-size: 32px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-three-quote {
    background: linear-gradient(135deg, #013956 0%, #29788c 100%);
    padding: 25px 30px;
    margin-bottom: 45px;
    box-shadow: 0 8px 25px rgba(1, 57, 86, 0.25);
    max-width: 450px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, black 65%, transparent 100%);
}

.quote-text-three {
    color: white;
    font-size: 17px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.quote-author-three {
    color: #4AB8D5;
    font-size: 15px;
    font-style: italic;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    text-align: left;
    margin: 0;
    letter-spacing: 1.8px;
}

.section-three-cta-button {
    display: inline-block;
    text-align: center;
    background-color: #00c86c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 28px 48px;
    border-radius: 6px;
    transition: 0.3s;
    text-transform: uppercase;
    max-width: 425px;
    box-shadow: 0 4px 15px rgba(0, 200, 108, 0.2);
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.section-three-cta-button:hover {
    background-color: #00a655;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 200, 108, 0.3);
}

/* Estilos para seção four */
.section-four {
    position: relative;
    background-color: #001a33;
    background-image: url('assets/img-section/section-four/IMAGEM-DE-FUNDO-4.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.section-four::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-four-logo-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.9;
}

.logo-background-four {
    
    max-width: 1550px;
    height: auto;
}

.section-four-header {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-four-title {
    font-size: 38px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: white;
}

.section-four-subtitle {
    font-size: 38px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
}

.section-four-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.program-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 30px;
}

.program-card {
    width: 48%;
    height: 400px;
    background-color: #003049;
    border-radius: 15px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.program-card:nth-child(1) .program-tag {
    background-color: #FFC107;
    color: #000;
}

.program-card:nth-child(2) .program-tag {
    background-color: #FF6B00;
    color: white;
}

.program-card:nth-child(1) .program-tag {
    background-color: #FFC107;
    color: #000;
}

.program-row:nth-child(2) .program-card:nth-child(1) .program-tag {
    background-color: #FF0030;
    color: white;
}

.program-row:nth-child(2) .program-card:nth-child(2) .program-tag {
    background-color: #2FA8D8;
    color: white;
}

.program-name {
    font-size: 22px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
}

.program-description {
    font-size: 16px;
    font-weight: 600;
    font-family: "Gilroy", sans-serif;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.4;
}

.program-details {
    font-size: 14px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 35px;
    min-height: 80px;
}

.program-button {
    position: absolute;
    bottom: 50px;
    display: inline-block;
    background-color: #00c86c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 200, 108, 0.3);
}

.program-button:hover {
    background-color: #00a655;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 108, 0.4);
}

.program-icon {
    position: absolute;
    right: 30px;
    bottom: 50px;
    opacity: 0.7;
    width: 65px;
    height: 65px;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    opacity: 1;
    transform: scale(1.1);
}

.program-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(1.2);
}



/* Estilos para seção five */
.section-five {
    position: relative;
    background-color: #f8f9fa;
    background-image: url('assets/img-section/section-five/IMAGEM-DE-FUNDO-5.png');
    background-size: cover;
    background-position: center;
    color: #012538;
    padding: 100px 0;
    overflow: hidden;
}

.section-five::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.95);
    z-index: 1;
}

.section-five-logo-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 1525px;
}

.logo-background-five {
    max-width: 1600px;
    height: auto;
}

.section-five-header {
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-five-subtitle {
    color: #2FA8D8;
    font-size: 15px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.section-five-title {
    font-size: 38px;
    letter-spacing: 1.5px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    text-transform: uppercase;
    color: #012538;
    margin-bottom: 0;
}

.section-five-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.differential-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.differential-card {
    width: 48%;
    background-color: #012538;
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(1, 37, 56, 0.3);
}

.differential-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differential-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(1.2);
}

.differential-text {
    flex: 1;
    color: white;
    font-size: 18px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

/* Estilos para seção six */
.section-six {
    position: relative;
    background-image: url('assets/img-section/section-six/IMAGEM-DE-FUNDO-6.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.section-six::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-six-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 650px;
    gap: 1px;
}

.section-six-text {
    max-width: 600px;
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    position: relative;
    z-index: 10;
}

.section-six-doctor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 650px;
    max-width: 500px;
}

.doctor-image-six {
    margin-left: -130px;
    height: 100%;
    width: auto;
    max-height: 650px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: scale(1.1) translateY(20px);
}

.section-six-title {
    color: white;
    font-size: 46px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-six-description {
    color: #e0e0e0;
    font-size: 18px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 45px;
}

.section-six-cta-button {
    display: inline-block;
    background-color: #00c86c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 25px 45px;
    border-radius: 6px;
    transition: 0.3s;
    text-transform: uppercase;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 200, 108, 0.2);
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.section-six-cta-button:hover {
    background-color: #00a655;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 200, 108, 0.3);
}

/* Estilos para seção seven */
.section-seven {
    position: relative;
    background-color: #001a33;
    background-image: url('assets/img-section/section-seven/FUNDO PÁGINA 7.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.section-seven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.9);
    z-index: 1;
}

.section-seven-logo-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.logo-background-seven {
    max-width: 1550px;
    height: auto;
}

.section-seven-header {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-seven-title {
    font-size: 42px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
}

.section-seven-description {
    font-size: 16px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-seven-specialties {
    color: #2FA8D8;
    font-size: 14px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.section-seven-content {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.specialty-card {
    background-color: rgba(47, 168, 216, 0.15);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 168, 216, 0.2);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.specialty-card:hover {
    background-color: rgba(47, 168, 216, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(47, 168, 216, 0.2);
}

.specialty-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.specialty-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.section-seven-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-seven-cta-button {
    display: inline-block;
    background-color: #00c86c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 25px 45px;
    border-radius: 6px;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 200, 108, 0.3);
}

.section-seven-cta-button:hover {
    background-color: #00a655;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 108, 0.4);
}

/* Estilos para seção eight */
.section-eight {
    position: relative;
    background-image: url('assets/img-section/section-height/FUNDO FAIXA 8.png');
    background-size: cover;
    background-position: center;
    color: #012538;
    overflow: hidden;
}


.section-eight-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px;
    transform: translateY(60px);
}

.section-eight-text {
    max-width: 650px;
    flex: 0 0 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.section-eight-doctor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 650px;
    max-width: 500px;
}

.doctor-image-eight {
    margin-left: -10px;
    height: 100%;
    width: auto;
    max-height: 650px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: scale(1.1);
}

.section-eight-subtitle {
    color: #012538;
    font-size: 16px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 7px;
}

.section-eight-title {
    color: #012538;
    font-size: 34px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-eight-description {
    max-width: 550px;
    color: #003049;
    font-size: 19px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 35px;
}

.section-eight-highlight {
    font-weight: 700;
    color: #012538;
}

.section-eight-cta-button {
    display: inline-block;
    background-color: #00c86c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 17px;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 25px 45px;
    border-radius: 6px;
    transition: 0.3s;
    text-transform: uppercase;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 200, 108, 0.2);
}

.section-eight-cta-button:hover {
    background-color: #00a655;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 200, 108, 0.3);
}

.floating-icons {
    position: absolute;
    right: 50px;
    top: 20%;
    z-index: 3;
}

.floating-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 100px;
}

.floating-icon:nth-child(1) {
    animation-delay: 1.5s;
    margin-top: 120px;
    transform: translateX(-440px);
}

.floating-icon:nth-child(2) {
    margin-top: -140px;
    transform: translateX(-70px);
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.doctor-quote-eight {
    position: absolute;
    bottom: 90px;
    right: 90px;
    background: linear-gradient(135deg, #013956 100%);
    padding: 25px 30px;
    max-width: 620px;
    width: 460px;
    z-index: 4;
    box-shadow: 0 8px 25px rgba(47, 168, 216, 0.3);
    -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, black 65%, transparent 100%);
}

.quote-text-eight {
    color: white;
    font-size: 16px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.quote-author-eight {
    color: #2FA8D8;
    font-size: 14px;
    font-style: italic;
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    text-align: left;
    margin: 0;
    letter-spacing: 2px;
}

/* Estilos para seção nine */
.section-nine {
    position: relative;
    background-image: url('assets/img-section/section-nine/FUNDO FAIXA 9.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px 0;
    overflow: hidden;
}



.section-nine-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 550px;
    gap: 80px;
    transform: translateY(30px);
}

.section-nine-doctor {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 650px;
    max-width: 500px;
}

.doctor-image-nine {
    height: 100%;
    width: auto;
    max-height: 650px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: scale(1.15);
}

.section-nine-text {
    max-width: 500px;
    flex: 0 0 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    padding-left: 90px;
}

.section-nine-title {
    color: white;
    font-size: 35px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-nine-description {
    color: #ffffff;
    max-width: 400px;
    font-size: 18px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 35px;
}

.section-nine-highlights {
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.highlight-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #2FA8D8;
    border-radius: 50%;
    margin-top: 2px;
}

.highlight-text {
    max-width: 400px;

    color: white;
    font-size: 16px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    line-height: 1.5;
}


.section-nine-cta-button:hover {
    background-color: #00a655;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 200, 108, 0.3);
}

/* Estilos para seção ten */
.section-ten {
    position: relative;
    background-image: url('assets/img-section/section-teen/FUNDO FAIXA 10.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    overflow: hidden;
}



.section-ten-header {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-ten-title {
    font-size: 40px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    line-height: 1.4;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #012538;
    letter-spacing: 1px;
}

.section-ten-divider {
    width: 420px;
    height: 5px;
    background-color: #003049;
    margin: 0 auto 40px;
}

.section-ten-description {
    font-size: 26px;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.section-ten-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 0 40px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 60px;
    justify-content: flex-start;
    align-items: flex-start;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    background-color: #2FA8D8;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #012538;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.content-card {
    background-color: white;
    border-radius: 15px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 0 0 420px;
    width: 420px;
}

.content-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.content-card-body {
    padding: 35px 30px;
}

.content-card-title {
    font-size: 26px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    margin-bottom: 25px;
    color: #012538;
    line-height: 1.3;
}

.content-card-button {
    display: inline-flex;
    align-items: center;
    background-color: #1e4a5c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: "Gilroy", sans-serif;
    font-size: 19px;
    padding: 16px 28px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.content-card-button:hover {
    background-color: #2FA8D8;
    transform: translateX(5px);
}

.content-card-button::after {
    content: '→';
    font-size: 16px;
    font-weight: bold;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.content-card-button:hover::after {
    transform: translateX(5px);
}

/* Estilos para seção eleven */
.section-eleven {
    position: relative;
    background-color: #1e4a5c;
    background-image: url('assets/img-section/section-eleven/FUNDO FAIXA 11.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}


.section-eleven-header {
    max-width: 1500px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-eleven-title {
    font-size: 40px;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    line-height: 1.3;
    margin-bottom: 0;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
}

.section-eleven-content {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}



.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 35px 35px;
    border: none;
    border-radius: 0;
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #999;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 20px;
    cursor: pointer;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.form-select option {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    padding: 10px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(47, 168, 216, 0.3);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    display: inline-block;
    background-color: #29788c;
    color: white;
    font-weight: 700;
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    letter-spacing: 0.8px;
    text-decoration: none;
    padding: 45px 40px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    margin-top: 20px;
}

.form-submit:hover {
    background-color: #00a655;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 108, 0.4);
}

/* Estilos para feedback do formulário */
.form-status {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.form-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    animation: slideIn 0.5s ease-out;
}

.form-success p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.form-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    animation: slideIn 0.5s ease-out;
}

.form-error p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para conteúdo principal */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    color: #001a33;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 800;
    font-family: "Gilroy", sans-serif;
    letter-spacing: 1px;
}

p {
    line-height: 1.6;
    color: #333;
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Estilos para o rodapé */
footer {
    background-color: #001a33;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.number-whatsapp {
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 98px;
        left: 0;
        right: 0;
        background-color: #012538;
        flex-direction: column;
        padding: 30px 20px;
        z-index: 999;
        gap: 35px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        pointer-events: none;
    }
    
    .nav-item {
        justify-content: flex-start;
        width: 100%;
        padding: 15px 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
        transform: translateX(-20px);
        opacity: 0;
    }
    
    .nav-item:hover {
        background-color: rgba(47, 168, 216, 0.1);
        transform: translateX(0);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links.active .nav-item {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-links.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-links.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-links.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-links.active .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .menu-mobile {
        display: block;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Seção 2 - Centralizar texto */
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .about-text {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        order: 1;
    }
    
    .about-doctor {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 600px;
        margin: 0 auto;
        order: 2;
    }
    
    .about-logo-bg {
        left: 40%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .logo-background-about {
        max-width: 720px;
    }
    
    .doctor-image-about {
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin: 0;
        transform: scale(1.5);
    }
    
    /* Seção 8 - Remover imagens e citação */
    .floating-icons {
        display: none;
    }
    
    .doctor-quote-eight {
        display: none;
    }
    
    .section-eight-content {
        justify-content: space-between;
        align-items: flex-start;
        gap: 100px;
    }
    
    .section-eight-text {
        max-width: 70%;
        text-align: left;
        padding: 40px 40px 0 0;
        margin-left: auto;
        margin-top: -60px;
    }
    
    .section-eight-doctor {
        max-width: 30%;
        height: 550px;
    }
    
    .doctor-image-eight {
        margin-top: 230px;
        transform: scale(1.3);
        max-height: 550px;
    }
    
    .section-eight-cta-button {
        margin-bottom: 30px;
        max-width: 350px;
        width: 100%;
        text-align: center;
    }
    
    /* Seção 9 - Remover imagem e otimizar texto */
    .section-nine-content {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 60px 0;
    }
    
    .section-nine-doctor {
        display: none;
    }
    
    .section-nine-text {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .section-nine-title {
        font-size: 36px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-nine-description {
        font-size: 20px;
        line-height: 1.7;
        margin-bottom: 50px;
        text-align: center;
        max-width: 100%;
    }
    
    .section-nine-highlights {
        text-align: center;
        max-width: 100%;
    }
    
    .highlight-item {
        margin-bottom: 30px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .highlight-text {
        font-size: 18px;
        line-height: 1.7;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    .hero-content {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 30px;
        max-width: 100%;
        position: relative;
    }
    
    .hero-text {
        margin-bottom: 30px;
        text-align: center;
        max-width: 100%;
        height: auto;
        flex: none;
        padding-left: 0;
        transform: translateY(0);
        z-index: 20;
        position: relative;
    }
    
    
    .hero-doctor {
        margin-top: 0;
        height: 450px;
        position: relative;
        max-width: 100%;
        align-items: center;
        z-index: -9999;
    }
    
    .hero-logo-bg {
        right: 160px;
        z-index: 1;
    }
    
    .doctor-image {
        transform: translateX(0) translateY(30px);
        z-index: 2;
        max-height: 450px;
    }
    
    .logo-background {
        max-width: 250px;
        z-index: 1;
    }
    
    .hero-title {
        margin-top: 30px;
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .text-nutrition{
        font-size: 50px;
    }
    .hero-subtitle-light {
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle-medium {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .hero-quote {
        padding: 20px 20px;
        margin-bottom: 35px;
        max-width: 140%;
        position: absolute !important;
        top: 690px;
        right: 20px;
        left: 20px;
        z-index: 999 !important;
        max-width: calc(100% - 30px);
        margin: 0;
        pointer-events: auto;
    }
    
    .quote-text {
        font-size: 15px;
        text-align: center;
        line-height: 1.6;
    }
    
    .quote-author {
        font-size: 12px;
        text-align: center;
    }
    
    .cta-button {
        width: fit-content;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        min-width: 280px;
        text-align: center;
        padding: 18px 30px;
        font-size: 14px;
        z-index: 25;
        position: relative;
        line-height: 1.3;
        white-space: normal;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .about-doctor {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 400px;
        margin: 0 auto;
        order: 2;
    }
    
    .about-logo-bg {
        left: 50%;
        top: 50%;
        transform: translate(-120%, -50%);
    }
    
    .logo-background-about {
        max-width: 160%;
        width: 160%;
    }
    
    .doctor-image-about {
        max-width: 140%;
        width: 140%;
        height: 100%;
        object-fit: contain;
        margin-top: -100px;
        margin-left: 0;
        transform: scale(1.65);
    }
    
    .about-text {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        order: 1;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        display: flex;
        align-items: flex-start;
        background: rgba(47, 168, 216, 0.35);
        padding: 15px 18px;
        border-radius: 8px;
        gap: 12px;
        transition: all 0.3s ease;
        text-align: left;
        max-width: 100%;
        min-height: 80px;
        width: 100%;
    }
    
    .feature-row .feature-item:nth-child(1),
    .feature-row .feature-item:nth-child(2) {
        min-width: 100%;
        max-width: 100%;
    }
    
    .about-cta-button {
        width: fit-content;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        min-width: 280px;
        text-align: center;
        padding: 18px 30px;
        font-size: 14px;
        z-index: 25;
        position: relative;
        line-height: 1.3;
        white-space: normal;
    }
    
    .services-text {
        width: 100%;
        text-align: center;
    }
    
    .plan-row {
        flex-direction: column;
    }
    
    .plan-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .plans-title {
        font-size: 30px;
    }
    
    .section-three-content {
        flex-direction: column;
        gap: 0px;
        padding: 40px 10px;
        min-height: auto;
        text-align: center;
    }
    
    .section-three-text {
        max-width: 95%;
        flex: none;
        padding-left: 0;
        order: 1;
        z-index: 20;
        position: relative;
    }
    
    .section-three-doctor {
        flex: none;
        height: 400px;
        max-width: 350px;
        order: 2;
        align-items: center;
    }
    
    .section-three-logo-bg {
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo-background-three {
        max-width: 250px;
    }
    
    .doctor-image-three {
        max-height: 450px;
        transform: translateX(0) translateY(60px) scale(1.15);
    }
    
    .section-three-title {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .section-three-quote {
        padding: 20px 25px;
        margin-bottom: 35px;
        max-width: 110%;
        position: absolute !important;
        z-index: 999 !important;
        width: 110%;
        pointer-events: auto;
    }

    .section-three-quote-specific {
        top: 650px;
        margin: 0 auto;
        max-width: calc(100% - 1px);

    }
    
    .quote-text-three {
        font-size: 14px;
        text-align: center;
        line-height: 1.6;
    }
    
    .quote-author-three {
        font-size: 12px;
        text-align: center;
    }
    
    .section-three-cta-button {
        width: fit-content;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        min-width: 280px;
        text-align: center;
        padding: 18px 30px;
        font-size: 14px;
        z-index: 25;
        position: relative;
        line-height: 1.3;
        white-space: normal;
    }
    
    .text-highlight-mobile {
        color: #2FA8D8;
        font-size: 15px;
    }
    .section-four {
        padding: 60px 0px 0px 0px;
    }

    .section-four-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .section-four-subtitle {
        font-size: 27px;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    
    .program-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .program-card {
        width: 100%;
        padding: 25px;
        height: auto;
        min-height: 380px;
        position: relative;
    }
    
    .program-name {
        font-size: 20px;
    }
    
    .program-description {
        font-size: 15px;
    }
    
    .program-details {
        font-size: 13px;
        min-height: auto;
        margin-bottom: 60px;
    }
    
    .program-button {
        position: absolute;
        bottom: 50px;
        left: 25px;
        width: calc(70% - 25px);
        text-align: center;
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .program-icon {
        width: 40px;
        height: 40px;
        right: 25px;
        bottom: 50px;
    }
    
    .logo-background-four {
        max-width: 400px;
    }
    
    .section-five-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .section-five-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .differential-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .differential-card {
        width: 100%;
        padding: 30px 25px;
        min-height: 140px;
        gap: 15px;
    }
    
    .differential-icon {
        width: 50px;
        height: 50px;
    }
    
    .differential-icon img {
        width: 40px;
        height: 40px;
    }
    
    .differential-text {
        font-size: 16px;
    }
    
    .logo-background-five {
        max-width: 600px;
    }
    
    .section-six-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
        min-height: auto;
        text-align: center;
    }
    
    .section-six-text {
        max-width: 100%;
        flex: none;
        padding-left: 0;
        order: 1;
        z-index: 20;
        position: relative;
    }
    
    .section-six-doctor {
        flex: none;
        height: 400px;
        max-width: 350px;
        order: 2;
        align-items: center;
    }
    
    .doctor-image-six {
        max-height: 400px;
    }
    
    .section-six-title {
        font-size: 29px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .section-six-description {
        font-size: 16px;
        margin-bottom: 35px;
        text-align: center;
    }
    
    .section-six-cta-button {
        width: fit-content;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        min-width: 280px;
        text-align: center;
        padding: 18px 30px;
        font-size: 14px;
        z-index: 25;
        position: relative;
        line-height: 1.3;
        white-space: normal;
    }

    .section-seven {
        padding: 70px 0px 50px 0px;
    }
    
    .section-seven-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
        .hide-mobile {
        display: none;
    }
    
    .show-mobile {
        display: block; /* Mostra a quebra de linha no mobile */
    }
    
    .section-seven-description {
        margin: 0 auto;
        text-align: center;
        max-width: 600px;
        width: 370px;
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .section-seven-specialties {
        font-size: 15px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .specialty-card {
        padding: 0;
        min-height: 100px;
    }
    
    .specialty-text {
        max-width: 600px;
        width: 350px;
        font-size: 18px;
    }
    
    .section-seven-cta-button {
        width: fit-content;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        min-width: 280px;
        text-align: center;
        padding: 18px 30px;
        font-size: 14px;
        z-index: 25;
        position: relative;
        line-height: 1.3;
        white-space: normal;
    }
    
    .logo-background-seven {
        max-width: 600px;
    }
    
    .section-eight-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
        min-height: auto;
        text-align: center;
    }
    
    .section-eight-text {
        max-width: 100%;
        flex: none;
        padding-left: 0;
        order: 1;
    }
    
    .section-eight-doctor {
        flex: none;
        height: 400px;
        max-width: 350px;
        order: 2;
        margin: 0 auto;
    }
    
    .doctor-image-eight {
        max-height: 400px;
    }
    
    .section-eight-subtitle {
        font-size: 15px;
        letter-spacing: 8px;
        margin-bottom: 20px;
    }
    
    .section-eight-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .section-eight-description {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .section-eight-cta-button {
        width: fit-content;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        min-width: 280px;
        text-align: center;
        padding: 18px 30px;
        font-size: 14px;
        z-index: 25;
        position: relative;
        line-height: 1.3;
        white-space: normal;
    }
    
    .floating-icons {
        display: none;
    }
    
    .doctor-quote-eight {
        position: absolute;
        right: 10px;
        margin: 0 auto;

        height: 38%;
        width: 110%;
        padding: 25px 25px;
        background: linear-gradient(135deg, #013956 100%);
        box-shadow: 0 8px 25px rgba(47, 168, 216, 0.3);
    }
    .doctor-quote-eight-specific {
        top: 205px;
        max-width: calc(100% - 1px);
    }


    
    .quote-text-eight {
        font-size: 14px;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .quote-author-eight {
        font-size: 12px;
        text-align: center;
        letter-spacing: 1px;
    }
    
    .section-nine-content {
        flex-direction: column;
        gap: 0px;
        padding: 40px 20px;
        min-height: auto;
        text-align: center;
    }
    
    .section-nine-doctor {
        flex: none;
        height: 400px;
        max-width: 350px;
        order: 2;
        margin: 0 auto;
    }
    
    .doctor-image-nine {
        margin-left: -79px;
        max-height: 400px;
    }
    
    .section-nine-text {
        max-width: 100%;
        width: 100%;
        flex: none;
        padding: 0 15px;
        order: 1;
        text-align: center;
    }
    
    .section-nine-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 25px;
        text-align: center;
        letter-spacing: 0.5px;
    }
    
    .section-nine-description {
        font-size: 17px;
        margin-bottom: 35px;
        text-align: center;
        max-width: 120%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
        max-width: 85%;
        margin: 0 auto 25px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .highlight-icon {
        align-self: center;
    }
    
    .highlight-text {
        width: 120%;
        font-size: 17px;
        text-align: center;
        line-height: 1.4;
    }
    
    .section-nine-cta-button {
        width: 100%;
        text-align: center;
        padding: 18px 30px;
        font-size: 14px;
    }

    .section-ten-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .section-ten-divider {
        width: 80px;
        height: 2px;
        margin: 0 auto 30px;
    }

    .section-ten-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .carousel-wrapper {
        gap: 30px;
    }

    .content-card {
        flex: 0 0 280px;
        width: 280px;
    }

    .content-card-image {
        height: 220px;
    }

    .content-card-body {
        padding: 25px 20px;
    }

    .content-card-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .content-card-button {
        font-size: 15px;
        padding: 14px 22px;
        border-radius: 0;
    }

    .section-eleven-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 20px;
    }

    .form-row:nth-child(1) {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
    }
    
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group:last-child {
        margin-bottom: 0;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 18px 20px;
        font-size: 14px;
        background-color: #f8f8f8;
    }
    
    .form-select {
        background-position: right 15px center;
        background-size: 18px;
        font-size: 16px;
    }
    .form-submit {
        width: 100%;
        padding: 20px 30px;
        font-size: 14px;
    }
    
    /* Feedback do formulário - mobile */
    .form-success,
    .form-error {
        padding: 15px;
        font-size: 14px;
        margin-top: 15px;
    }
    
    .form-success p,
    .form-error p {
        font-size: 14px;
        line-height: 1.4;
    }
} 

/* Footer personalizado */
.footer-custom {
    background: #01202b;
    color: #fff;
    padding: 80px 0 70px 0;
    font-family: 'Gilroy', sans-serif;
    position: relative;
    min-height: 340px;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 0 20px;
    position: relative;
}
.footer-logo-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 340px;
    max-width: 420px;
}
.footer-logo {
    width: 270px;
    margin-bottom: 30px;
}
.footer-address {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.footer-icon-text {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 18px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}
.footer-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    opacity: 0.7;
}
.footer-links-col {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}
.footer-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #fff;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.footer-list li {
    font-size: 20px;
    font-weight: 400;
    color: #e6f6fa;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
    cursor: pointer;
    transition: color 0.2s;
}
.footer-list li:hover {
    color: #2FA8D8;
}
.footer-arrow {
    width: 18px;
    height: 18px;
    margin-right: 2px;
    opacity: 0.7;
}


.footer-list a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.footer-social-col {
    flex: 0.8;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}
.footer-social-icons {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.footer-social-link img {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}
.footer-social-link img:hover {
    opacity: 1;
    transform: scale(1.1);
}
.footer-whatsapp-col {
    position: absolute;
    right: -90px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: row;
}
.footer-whatsapp-bubble {
    background: #fff;
    color: #8e8e8e;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    padding: 15px 30px;
    margin-right: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
}
.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00c86c;
    border-radius: 50%;
    width: 69px;
    height: 69px;
    box-shadow: 0 4px 18px rgba(0,200,108,0.18);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}
.footer-whatsapp-btn img {
    width: 45px;
    height: 35px;
}
.footer-whatsapp-btn:hover {
    background: #00a655;
    transform: scale(1.08);
}

@media (max-width: 1200px) {
    .footer-container {
        flex-wrap: wrap;
        padding: 0 30px 0 30px;
        gap: 30px;
    }
    .footer-logo-col {
        min-width: 260px;
        max-width: 360px;
    }
    .footer-title {
        font-size: 28px;
    }
    .footer-list li {
        font-size: 19px;
    }
    .footer-social-link img {
        width: 32px;
        height: 32px;
    }
    .footer-whatsapp-col {
        right: 30px;
        bottom: 30px;
    }
    .footer-whatsapp-bubble {
        font-size: 18px;
        padding: 10px 20px;
    }
    .footer-whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    .footer-whatsapp-btn img {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 0 20px 0 20px;
    }
    .footer-logo-col, .footer-links-col, .footer-social-col {
        margin-left: 20px;
        min-width: unset;
        max-width: unset;
        width: 100%;
        align-items: flex-start;
    }
    .footer-whatsapp-col {
        position: static;
        margin-top: 40px;
        margin-bottom: 20px;
        align-self: flex-end;
    }
}
@media (max-width: 600px) {
    
    .footer-custom {
        padding: 40px 0 20px 0;
        min-height: 0;
    }
    .footer-container {
        padding: 0 15px 0 15px;
        gap: 25px;
    }
    .footer-logo {
        width: 200px;
        margin-bottom: 25px;
    }
    .footer-title {
        font-size: 19px;
        margin-bottom: 15px;
    }
    .footer-list li {
        font-size: 18px;
        gap: 8px;
    }
    .footer-arrow {
        width: 11px;
        height: 11px;
    }
    .footer-social-link img {
        width: 40px;
        height: 40px;
    }
    .footer-icon {
        width: 28px;
        height: 28px;
    }
    .footer-icon-text {
        gap: 14px;
        font-size: 16px;
    }
    .footer-whatsapp-col {
        margin-right: 30px;
    }
    .footer-whatsapp-bubble {
        font-size: 15px;
        padding: 18px 14px;
        margin-right: 12px;
    }
    .footer-whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    .footer-whatsapp-btn img {
        width: 28px;
        height: 28px;
    }
}

.section-consultorio {
    max-width: 1100px;
    margin: 80px auto 0 auto;
    padding: 0 20px 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.consultorio-title {
    color: #012538;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Gilroy', sans-serif;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 2px;
}
.consultorio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
}
.consultorio-img-box {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.consultorio-img {
    width: 100%;
    max-width: 580px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    object-fit: cover;
}
.consultorio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 320px;
    max-width: 400px;
    gap: 18px;
}
.consultorio-clinic {
    color: #012538;
    font-size: 45px;
    font-weight: 700;
    font-family: 'Gilroy', sans-serif;
    margin-bottom: 0;
    line-height: 1.1;
}
.consultorio-address {
    color: #012538;
    font-size: 28px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    margin: 18px 0 32px 0;
    line-height: 1.2;
}
.consultorio-btn {
    display: inline-block;
    background: #37687a;
    color: #fff;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    padding: 18px 30px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 18px rgba(55,104,122,0.10);
}
.consultorio-btn:hover {
    background: #2FA8D8;
    transform: translateY(-2px);
}
@media (max-width: 900px) {
    .section-consultorio {
        padding: 0 10px 40px 10px;
    }
    .consultorio-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .consultorio-content {
        flex-direction: column;
        gap: 30px;
    }
    .consultorio-img {
        max-width: 100%;
        border-radius: 18px;
    }
    .consultorio-info {
        min-width: unset;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .consultorio-clinic {
        font-size: 28px;
    }
    .consultorio-address {
        font-size: 18px;
        margin: 10px 0 20px 0;
    }
    .consultorio-btn {
        font-size: 16px;
        padding: 20px 25px;
    }
}

.footer-copyright {
    width: 100%;
    background: #01202b;
    color: #b0c4ce;
    text-align: center;
    font-size: 14px;
    padding: 18px 0 12px 0;
    font-family: 'Gilroy', sans-serif;
    letter-spacing: 0.5px;
}
.footer-copyright a {
    color: #2FA8D8;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.footer-copyright a:hover {
    color: #00c86c;
}
