/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1e3a5f;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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


/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: #f4fffdc4;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone img {
    width: 25px;
    height: 25px;
}


.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3a5f;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #24749C;
}

.nav-menu a:hover::after {
    width: 100%;
    background: #24749C;
}

.separator {
    color: #1e3a5f;
    font-weight: 400;
    font-size: 22px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3a5f;
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Section Endocrinologia e Metabologia */

.hero {
    margin-top: 125px;      
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-text h1 {
    font-size: 65px;
    font-weight: 800;
    color: #0d2d35;
    line-height: 67px;    
    letter-spacing: -0.5px;
}

.hero-crm {
    font-size: 21px;
    font-weight: 600;
    color: #0d2d35;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.cta-wrapper {
    position: relative;
    display: inline-block;
}

.cta-button {
    background-color: #0d2d35;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 8px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
    padding-right: 60px;
    position: relative;
}

.cta-button:hover {
    background-color: #24749c;
}

.button-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;    
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    position: absolute;
    bottom: 80px;    
    transform: translateX(-14em);
    background:linear-gradient(1deg, rgb(77 164 207 / 55%) 20%, rgba(240, 248, 255, 0.95) 50%);
    padding: 13px 0px;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
    width: 20em;
}

.hero-badge p {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.3px; 
    margin-bottom: -5px;  
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;    
    letter-spacing: 0.3px;
    display: block;
}


/* ========================================
   RESPONSIVO - TABLET
   ======================================== */

@media (max-width: 1024px) {
    /* HEADER */
    .logo img {
        height: 50px;
    }
    
    .nav-menu ul {
        gap: 12px;
    }
    
    .nav-menu li {
        gap: 12px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    /* Section Endocrinologia e Metabologia */
    .hero {
        margin-top: 115px;        
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 48px;
        line-height: 1;
    }
    
    .hero-image img {
        max-width: 450px;
    }

    .hero-badge {
        padding: 11px 36px;
        bottom: 15px;
        transform: translateX(-7em);
    }

    .hero-badge p {
        font-size: 17px;
    }

    .hero-badge span {
        font-size: 13px;
    }
}



/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* HEADER */
    .header-top {
        padding: 6px 13px;
    }
    
    .social-links a {
        width: 24px;
        height: 24px;
    }
       
    .logo img {
        height: 45px;
    }
            
    
    /* Section Endocrinologia e Metabologia */
    .hero {
        margin-top: 105px;
        padding-top: 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-crm {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 15px;
        padding-right: 60px;
    }

    .button-icon {
        width: 55px;
        height: 55px;
        right: -8px;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .hero-badge {
        bottom: 20px;
        padding: 12px 25px;        
        transform: translateX(0px);
        
    }
       
    .container {
        padding: 0 0px;
    }

    .header-main {
        padding: 15px 10px;
    }
    
}

/* Section Atendimento Especializado */

.specialties {
    background-image: url('../images/atendimento-especializado.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

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

.specialties .container {
    position: relative;
    z-index: 2;
}

.specialties-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 150px;
    align-items: center;
}

.specialties-header h2 {
    font-size: 65px;
    font-weight: 400;
    color: #0d2d35;
    line-height: 60px;
    margin: 0;
}

.specialties-header .specialties-title-bold {
    font-size: 65px;
    font-weight: 800;
    color: #0d2d35;   
}

.specialties-crm {
    font-size: 20px;
    font-weight: 700;
    color: #0d2d35;
    letter-spacing: 0.5px;    
    text-align: right;
}

.specialties-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.specialties-list li {
    font-size: 25px;
    font-weight: 600;
    color: #0d2d35;
    padding-left: 25px;
    position: relative;
    line-height: 1;
}

.specialties-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #24749C;
    font-size: 25px;
}


/* ========================================
   RESPONSIVO - TABLET
   ======================================== */

@media (max-width: 1024px) {
    /* Section Atendimento Especializado */
    .specialties {
        padding: 60px 0;
    }
    
    .specialties-content {
        gap: 50px;
    }
    
    .specialties-header h2 {
        font-size: 48px;
        line-height: 50px;
    }
    
    .specialties-list li {
        font-size: 16px;
    }
    .specialties-header .specialties-title-bold {
        font-size: 48px;        
    }

     .specialties-list li::before {
        bottom: -3px;
    }


}


/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* Section Atendimento Especializado */
    .specialties {
        padding: 40px 0;
    }
    
    .specialties-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .specialties-header h2 {
        font-size: 36px;
        line-height: 1
    }

    .specialties-crm {
        font-size: 14px;        
        text-align: center;
    }
    
    .specialties-list ul {
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
        display: inline-block;
    }
    
    .specialties-list li {
        font-size: 18px;
        padding-left: 20px;
        line-height: 30px;
    }

    .specialties-header .specialties-title-bold {
        font-size: 36px;
    }
    
    .specialties-list li::before {
        bottom: 2px;
    }

}

/* Section Dr. Renato Rezende */

.formation {
    padding-bottom: 5px;
    padding-top: 55px;
    background: #fff;
}

.formation-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.formation-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: -5px;
}

.formation-info h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0d2d35;   
    line-height: 1.1;
    padding-left: 25px;
}

.formation-crm {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-align: right;
    max-width: 34rem;

}


.formation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.formation-list li {
    font-size: 21px;
    font-weight: 600;
    color: #0d2d35;
    padding-left: 25px;
    position: relative;
    line-height: 1;
}

.formation-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #24749C;
    font-size: 25px;
    bottom: -1px;
}

.formation-list li.no-bullet::before {
    content: '';
    display: none;
}

.formation-list li.no-bullet {
    padding-left: 25px;
}


/* RESPONSIVO - TABLET */
@media (max-width: 1043px) {
    /* Section Dr. Renato Rezende */    
    
    .formation-content {
        gap: 50px;
    }
    
    .formation-info h2 {
        font-size: 40px;
    }
    
    .formation-crm {
        text-align: left;
        padding-left: 25px;
    }
    
    .formation-list li {
        font-size: 16px;
    }
    
    .formation-list li::before {
        bottom: -3px;
    }

    .formation-image img {
        width: 125%;        
    }
}


/* RESPONSIVO - MOBILE */
@media (max-width: 768px) {
    /* Section Dr. Renato Rezende */
    .formation {
        padding: 40px 0;
    }
    
    .formation-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .formation-image img {
    max-width: 300px;    
    }

    .formation-info h2 {
        font-size: 32px;
        padding-left: 0;
        text-align: center;
    }

    .formation-crm {
        font-size: 14px;
        margin-bottom: 25px;
        text-align: center;
        max-width: 100%;
    }
    
    .formation-list {
        text-align: left;
        margin: 0 auto 30px;
        display: inline-block;
    }
    
    .formation-list li {
        font-size: 18px;
        padding-left: 20px;
        line-height: 30px;
    }
    
    .formation-list li::before {
        bottom: 2px;
    }
}

/* Linha Divisória */
.divider-line {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #1e3a5f 0%, #24749C 50%, #1e3a5f 100%);
}

/* Section Estrutura Completa */

.structure {
    padding: 80px 0;
    background: #fff;
}

.structure-content {
    display: grid;
    grid-template-columns: 0.4fr 2.6fr;
    gap: 60px;
    align-items: center;
}

.structure-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0d2d35;
    line-height: 1;
    margin: 0;
}

.structure-title-bold {
    font-size: 48px;
    font-weight: 800;
    color: #0d2d35;
    margin-bottom: 20px;
}

.structure-subtitle {
    font-size: 37px;
    font-weight: 400;
    color: #0d2d35;
    line-height: 1.2;
    margin: 0;
}

.structure-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 101%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.structure .container {
    max-width: 1600px;
}


/* RESPONSIVO - TABLET */
@media (max-width: 1024px) {
    /* Section Estrutura Completa */
    .structure {
        padding: 60px 0;
    }
    
    .structure-content {
        gap: 40px;
    }
    
    .structure-text h2 {
        font-size: 35px;
    }
    
    .structure-title-bold {
        font-size: 40px;
    }
    
    .structure-subtitle {
        font-size: 30px;
    }
    
    .structure-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* RESPONSIVO - MOBILE */
@media (max-width: 768px) {
    /* Section Estrutura Completa */
    .structure {
        padding: 40px 0;
        padding-bottom: 0px;
    }
    
    .structure-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .structure-text h2 {
        font-size: 32px;
    }
    
    .structure-title-bold {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .structure-subtitle {
        font-size: 30px;
    }
    
    .structure-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Section Tudo que você precisa saber antes da consulta */

.consultation-info {
    background-image: url('../images/tudo-que-voce-precisa-saber.jpg');
    background-size: cover;    
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    background-position: 30% center;
}

.consultation-info .container {
    position: relative;
    z-index: 2;
}

.consultation-content {
    display: flex;
    justify-content: flex-end;
}

.consultation-text {
    max-width: 600px;
    width: 100%;
}

.consultation-text h2 {
    font-size: 40px;
    font-weight: 500;
    color: #0d2d35;
    line-height: 1;
    margin: 0;
}

.consultation-text h2:last-of-type {
    margin-bottom: 30px;
}

.consultation-text h2 .title-bold {
    font-weight: 800;
}

.consultation-questions {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 30px;
}

.question-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    min-height: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #0d2d35;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgb(0 0 0 / 35%);
    text-align: left;
    width: 100%;
}

.question-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.question-icon {
    width: 10px;
    height: 16px;
    flex-shrink: 0;
}

.question-text {
    flex: 1;
}

.consultation-cta {
    display: flex;
    justify-content: flex-end;
}


/* RESPONSIVO - TABLET */
@media (max-width: 1024px) {
    /* Section Tudo que você precisa saber antes da consulta */
    .consultation-info {
        padding: 50px 0;      
    }
    
    .consultation-text h2 {
        font-size: 32px;
    }
    
    .question-item {
        font-size: 15px;
        padding: 11px 20px;
    }
}

@media (max-width: 768px) {
    /* Section Tudo que você precisa saber antes da consulta */
    .consultation-info {
        padding: 40px 0;
        background-position: 15% center;
    }
    
    .consultation-content {
        justify-content: center;
    }
    
    .consultation-text {
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }    
    
    .consultation-questions {        
        margin-bottom: 25px;
    }
    
    .question-item {
        font-size: 15px;
        padding: 11px 18px;
    }
    
    .consultation-cta {
        justify-content: center;
    }
}


/* Section Meus locais de atendimento */

.locations {
    background: #24749C;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.locations .container {
    max-width: 1400px;
}

.locations-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.locations-doctor {
    flex: 0 0 auto;
}

.locations-doctor img {
    width: 450px;
    height: auto;
    display: block;
}

.locations-info {
    flex: 1;
}

.locations-info h2 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.locations-info h2 .title-bold {
    font-weight: 800;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.location-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}


.location-header {
    background: #0d2d35;
    padding: 12px 20px;
    text-align: center;
}

.location-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.location-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

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

.location-details {
    background: #0d2d35;
    padding: 18px 10px;
    text-align: center;
}

.location-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;   
}

.location-address {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.location-phone {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
}


/* RESPONSIVO - RESOLUÇÕES INTERMEDIÁRIAS */
@media (max-width: 1273px) {
    /* Section Meus locais de atendimento */
    .locations-content {
        gap: 20px;
    }
    
    .locations-doctor img {
        width: 300px;
    }
    
    .locations-info h2 {
        font-size: 36px;
    }
}


/* RESPONSIVO - TABLET */
@media (max-width: 1112px) {
    /* Section Meus locais de atendimento */
    .locations {
        padding: 50px 0;
    }
    
    .locations-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .locations-doctor img {
        width: 350px;
        margin: 0 auto;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .location-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: 50%;
    }
    
    .location-image {
        height: 230px;
    }
}


/* RESPONSIVO - MOBILE */
@media (max-width: 768px) {
    /* Section Meus locais de atendimento */
    .locations {
        padding: 40px 0;
    }
    
    .locations .container {
        padding: 0 20px;
    }
    
    .locations-doctor img {
        width: 280px;
    }
    
    .locations-info h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-card:last-child {
        grid-column: auto;
        justify-self: auto;
        width: 100%;
    }
    
    .location-image {
        height: 20em;
    }
    
    .location-header h3 {
        font-size: 18px;
    }

    .location-phone  {
        font-size: 20px;
    }
}

/* FOOTER */

.footer {
    background: #fff;
    padding: 50px 0;
}

.footer-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.9fr 2px 0.7fr 2px 1.1fr 1.3fr;
    gap: 0;
    align-items: stretch;
}

.footer-column {
    padding: 0 45px;
    display: flex;
    flex-direction: column;
}

.footer-column-1 {
    justify-content: center;
    padding-left: 20px;
}

.footer-column-2 {
    justify-content: center;
}

.footer-column-3 {
    justify-content: center;
}

.footer-column-4 {
    padding: 0;
    padding-right: 20px;
}

.footer-divider {
    width: 4px;
    background: #24749C;
    height: 65%;
    margin-top: 50px;
}

.footer-cta {
    margin-top: 20px;
}

.cta-button-footer {
    white-space: nowrap;
}

.footer-menu ul {
    display: flex;
    flex-direction: column;   
}

.footer-menu a {
    font-size: 16px;
    font-weight: 700;
    color: #0d2d35;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #24749C;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 18px;
    font-weight: 400;
    color: #0d2d35;
    margin: 0;
}

.footer-instagram,
.footer-email {
    font-weight: 400;
}

.footer-instagram strong,
.footer-email strong {
    font-weight: 700;
}

.footer-phone {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #24749C !important;
}

.footer-map {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    border: 0;
}

/* Copyright */

.copyright {
    background: #fff;
    padding: 25px 0;
}

.copyright .container {
    text-align: center;
}

.copyright-text {
    font-size: 13px;
    font-weight: 600;
    color: #0d2d35;
    margin: 0;  
}


/* ========================================
   RESPONSIVO - LAYOUT 2x2 (1400px - 761px)
   ======================================== */

@media (max-width: 1400px) {
    /* FOOTER */
    .footer {
        padding: 45px 0;
    }
    
    .footer-container {
        max-width: 100%;
        padding: 0 20px;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        grid-template-areas:
            "col1 col2"
            "col3 col4";
    }
    
    .footer-column {
        padding: 35px 30px;
        border: none;
    }
    
    .footer-column-1 {
        grid-area: col1;
        padding-left: 30px;        
        justify-content: center;
        align-items: center;
    }
    
    .footer-column-2 {
        grid-area: col2;
        padding-right: 30px;        
        justify-content: center;
        align-items: center;
    }
    
    .footer-column-3 {
        grid-area: col3;
        padding-left: 30px;        
        justify-content: center;
        align-items: center;
    }
    
    .footer-column-4 {
        grid-area: col4;
        padding: 35px 30px;
        padding-right: 30px;
        display: flex;
        align-items: center;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-logo img {
        height: 75px;
    }
    
    .footer-cta {
        margin-top: 25px;
    }
    
    .footer-menu ul {
        gap: 12px;        
    }
    
    .footer-menu a {
        font-size: 15px;
    }
    
    .footer-contact {
        gap: 18px;
    }
    
    .footer-contact-item img {
        width: 38px;
        height: 38px;
    }
       
    .footer-phone {
        font-size: 28px !important;
    }
    
    .footer-map {
        height: 100%;
    }
    
    .footer-map iframe {
        min-height: 320px;
    }
}


/* ========================================
   RESPONSIVO - MOBILE (760px ou menos)
   ======================================== */

@media (max-width: 760px) {
    /* FOOTER */
    .footer {
        padding: 35px 0;
    }
    
    .footer-container {
        padding: 0 15px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "col1"
            "col2"
            "col3"
            "col4";
    }
    
    .footer-column {
        padding: 25px 15px;
        text-align: center;
        border-right: none !important;       
    }
    
    .footer-column-1 {
        padding: 25px 15px;
    }
    
    .footer-column-2 {
        padding: 25px 15px;
    }
    
    .footer-column-3 {
        padding: 25px 15px;
    }
    
    .footer-column-4 {
        padding: 25px 15px;
        border-bottom: none;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        height: 60px;
        margin: 0 auto;
    }
    
    .footer-cta {
        margin-top: 0;
    }
    
    .footer-menu ul {
        align-items: center;
        gap: 10px;
    }
    
    .footer-menu a {
        font-size: 14px;
    }
    
    .footer-contact {
        gap: 10px;
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-contact-item img {
        width: 32px;
        height: 32px;
    }
    
    .footer-contact-item p {
        font-size: 15px;
        word-break: break-word;
        max-width: 100%;
    }
    
    .footer-phone {
        font-size: 22px !important;
    }
    
    .footer-map iframe {
        min-height: 280px;
    }
    
    /* Copyright */
    .copyright {
        padding: 20px 0;
    }
    
    .copyright-text {
        font-size: 11px;
        line-height: 1.6;
    }
}


/* ========================================
   RESPONSIVO - MOBILE PEQUENO
   ======================================== */

@media (max-width: 430px) {
    /* FOOTER */
    .footer {
        padding: 30px 0;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-column {
        padding: 20px 10px;
    }
    
    .footer-column-1,
    .footer-column-2,
    .footer-column-3 {
        padding: 20px 10px;
    }
    
    .footer-column-4 {
        padding: 20px 10px;
    }
    
    .footer-logo img {
        height: 55px;
    }
    
    .footer-menu a {
        font-size: 13px;
    }
    
    .footer-contact-item img {
        width: 28px;
        height: 28px;
    }
    
    .footer-contact-item p {
        font-size: 13px;
    }
    
    .footer-phone {
        font-size: 20px !important;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 8px 18px;
        padding-right: 55px;
    }
    
    .button-icon {
        width: 50px;
        height: 50px;
        right: -10px;
    }
    
    .footer-map iframe {
        min-height: 250px;
    }
    
    /* Copyright */
    .copyright {
        padding: 18px 0;
    }
    
    .copyright .container {
        padding: 0 10px;
    }
    
    .copyright-text {
        font-size: 10px;
    }
}


/* ========================================
   LIGHTBOX - GALERIA DE IMAGENS
   ======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #24749C;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(36, 116, 156, 0.8);
    border-color: #24749C;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 30px;
    height: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}


/* RESPONSIVO - MOBILE */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-prev svg,
    .lightbox-next svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-content img {
        max-height: 85vh;
    }
}

/* ========================================
   ACCORDION - PERGUNTAS FREQUENTES
   ======================================== */

.question-wrapper {
    margin-bottom: 12px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 35%);
    overflow: hidden;
    transition: all 0.3s ease;
}

.question-wrapper:hover:not(.active) {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.question-item {
    width: 100%;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.question-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.question-wrapper.active .question-item {
    transform: none;
    box-shadow: none;
}

.question-wrapper.active .question-item:hover {
    transform: none;
    box-shadow: none;
}

.question-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.question-wrapper.active .question-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.question-answer p {
    background: transparent;
    border-radius: 0;
    padding: 15px 0 0 0;
    font-size: 16px;
    font-weight: 400;
    color: #0d2d35;
    line-height: 1.6;
    margin: 0;
    box-shadow: none;
    border-top: 1px solid #e5e5e5;
}

.question-wrapper.active .question-icon {
    transform: rotate(90deg);
}


/* RESPONSIVO */
@media (max-width: 1024px) {
    .question-answer {
        padding: 0 20px;
    }
    
    .question-wrapper.active .question-answer {
        padding: 0 20px 18px 20px;
    }
    
    .question-answer p {
        font-size: 15px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .question-answer {
        padding: 0 18px;
    }
    
    .question-wrapper.active .question-answer {
        padding: 0 18px 15px 18px;
    }   
    
}



/* ========================================
   MENU HAMBÚRGUER - MOBILE
   ======================================== */

@media (max-width: 930px) {
    .nav-menu {
        position: fixed;
        top: 125px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 125px);
    }
    
    /* ADICIONE ESTAS LINHAS AQUI: */
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e5e5e5;
        flex-direction: column;
        gap: 0;
    }

    .separator {
        display: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        top: 105px;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 105px);
    }
}

/* Animação do ícone hambúrguer */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* ========================================
   LINKS DE TELEFONE E WHATSAPP
   ======================================== */
.phone-link {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}

@media (max-width: 768px) {
    .phone-link {
        pointer-events: auto;
        cursor: pointer;
    }
    
    .phone-link:hover {
        text-decoration: underline;
    }
    
}

.whatsapp-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-link:hover {
    text-decoration: underline;
    color:  #24749C;
}

.header-phone a {
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.3px;
}

a.footer-phone {
    display: inline-block;
}

/* Link do Instagram e E-mail no footer */
.footer-link {
    color: inherit;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #24749C;
}

@media(max-width:540px) {
    .footer-link {
        font-size: 14px;
    }

    .footer-contact {
        gap: 5px;
    }
}