@import url('fonts.css');

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #333;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.social-icons {
    display: flex;
    gap: 8px;
}

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

.social-link:hover {
    transform: scale(1.1);
}

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

/* Navigation Menu */
.nav-menu {
    flex: 1;
}

.menu-list {
    display: flex;
    justify-content: center;
    gap: 38px;
}

.menu-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #154061;
    transition: color 0.3s ease;
    position: relative;
}

.menu-list li a:hover {
    color: #0ea5b0;
}

.menu-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0ea5b0;
    transition: width 0.3s ease;
}

.menu-list li a:hover::after {
    width: 100%;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 32px;
    height: 32px;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #154061;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .phone-number,
    .footer-phone,
    .footer-social-link:has(img[src*="telefone"]) {
        pointer-events: none;
        cursor: default;
    }
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #154061;
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-image {
    display: block;
    height: 100%;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-desktop {
    display: block;
}

.hero-mobile {
    display: none;
}

.blue-line {
    width: 100%;
    height: 8px;
    background-color: #154061;
    
}
/* Responsive - Notebook */
@media (max-width: 1500px) {
    .hero-banner {
        height: 650px;
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
        gap: 20px;
    }

    .menu-list {
        gap: 30px;
    }

    .menu-list li a {
        font-size: 15px;
    }

    .phone-number {
        font-size: 16px;
    }

    .hero-banner {
        height: 550px;
    }
}

@media (max-width: 1327px) {
    .nav-menu {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
}

@media (max-width: 768px) {
     .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
    }

    .hero-banner {
    height: 63em;
}
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }

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

    .logo {
        width: 50px;
        height: 50px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .hero-mobile {
        display: block;
    }
    
}

/* Facetas de porcelana Section */
.lentes-section {
    background-color: #ecf4fc;
    padding: 60px 0;
}

.lentes-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.lentes-title {
    font-size: 36px;
    font-weight: 700;
    color: #154061;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.lentes-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.lentes-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

/* Linhas diagonais conectando as imagens */
.lentes-item:nth-child(1)::before {
    content: '';
    position: absolute;
    bottom: -121px;
    right: 44%;
    width: 2px;
    height: 129px;
    background-color: #333;
    transform: rotate(60deg);
    transform-origin: top;
    z-index: 1;
}

.lentes-item:nth-child(3)::before {
    content: '';
    position: absolute;
    bottom: -121px;
    right: 44%;
    width: 2px;
    height: 129px;
    background-color: #333;
    transform: rotate(60deg);
    transform-origin: top;
    z-index: 1;
}

/* Cards com formato de balão */
.lentes-card {
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    width: 71em;
    position: relative;
    z-index: 2;
}

/* Seta do balão - esquerda */
.lentes-card.left::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #fff;
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.05));
}

/* Seta do balão - direita */
.lentes-card.right::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid #fff;
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.05));
}

.lentes-card p {
    font-size: 16px;
    line-height: 1.2;
    color: #154061;
    font-weight: 500;
    margin: 0;
}

/* Linha conectora */
.lentes-connector {
    width: 100px;
    height: 2px;
    background-color: #333;
    position: relative;
    flex-shrink: 0;
}


.lentes-connector.right::before {
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.lentes-connector.left::before {
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
}

/* Imagens maiores */
.lentes-image {
    max-width: 450px;
    min-height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lentes-image img {
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.custom-textos-centralizados {
    text-align: center;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .lentes-container {
        padding: 0 20px;
    }

    .lentes-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .lentes-card {
        max-width: 380px;
        width: 380px;
        padding: 40px 5px;
    }

    .lentes-card p {
        font-size: 14px;
    }

    .lentes-image {
        max-width: 370px;
        min-height: 260px;
    }

    .lentes-image img {
        min-height: 260px;
    }

    .lentes-connector {
        width: 80px;
    }

    .lentes-item:nth-child(1)::before,
    .lentes-item:nth-child(3)::before {
        bottom: -113px;
        right: 44%;
        width: 2px;
        height: 118px;
    }
}

@media (max-width: 891px) {
    .lentes-item:nth-child(1)::before,
    .lentes-item:nth-child(3)::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .lentes-section {
        padding: 50px 0;
    }

    .lentes-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .lentes-content {
        gap: 25px;
    }

    .lentes-item {
        flex-direction: column;
        gap: 25px;
    }

    /* Força a ordem: card sempre primeiro, imagem sempre depois */
    .lentes-item .lentes-card {
        order: 1;
        width: 100%;
    }

    .lentes-item .lentes-image {
        order: 2;
    }

    .lentes-item .lentes-connector {
        display: none;
    }

    .lentes-item:nth-child(1)::before,
    .lentes-item:nth-child(3)::before {
        display: none;
    }

    .lentes-card {
        max-width: 100%;
    }

    .lentes-card.left::after,
    .lentes-card.right::after {
        display: none;
    }

    .lentes-image {
        max-width: 100%;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .lentes-section {
        padding: 40px 0;
    }

    .lentes-container {
        padding: 0 15px;
    }

    .lentes-title {
        font-size: 24px;
        margin-bottom: 35px;
    }


    .lentes-card {
        padding: 18px 22px;
    }

    .lentes-card p {
        font-size: 13px;
    }
}


/* Etapas do tratamento Section */
.tratamento-section {
    background-color: #fff;
    padding: 60px 0;
}

.tratamento-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.tratamento-title {
    font-size: 36px;
    font-weight: 700;
    color: #154061;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.tratamento-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.tratamento-card {     
    border: 3px solid #154061de;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-icon {
    background-color: #fff;
    padding: 30px 20px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.card-icon img {
    width: 70px;
    height: auto;
}

.custom-padding-cards {
    padding-bottom: 8px;
}


@media (min-width: 1046px) {
.custom-titulos-grandes {
    padding-top: 2px !important;
    padding-bottom: 9px !important;
}
}


.card-title {
    background-color: #fff;
    color: #154061;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 10px 15px 20px;
    margin: 0;    
}

@media (max-width: 1171px) {
    .card-title {
        font-size: 17px;
    }
}

.card-content {
    background-color: #154061de;
    color: #fff;
    padding: 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px 15px 0px 0px;;
}

.card-subtitle {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    counter-reset: card-counter;
    text-align: left;
    display: inline-block;
}

.card1-tratamento {
    font-size: 15px;    
    font-weight: 500;    
}

.card-list li {
    font-size: 15px;    
    margin-bottom: 0;
    padding-left: 0;
    position: relative;
    counter-increment: card-counter;
    font-weight: 500;
}

.card-list li::before {
    content: counter(card-counter) ".";
    position: static;
    color: #7dc242;
    font-weight: 700;
    margin-right: 5px;
}

.tratamento-cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #94df53;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    padding-right: 70px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    margin-top: 20px;
}

.tratamento-cta-button:hover {    
    transform: translateY(-2px);
}

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

/* Responsive - Tablet */
@media (max-width: 1046px) {
    .tratamento-container {
        padding: 0 20px;
    }

    .tratamento-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .tratamento-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card-icon {
        padding: 25px 15px 12px;
        min-height: 90px;
    }

    .card-icon img {
        width: 60px;
    }

    .card-title {
        font-size: 20px;
        padding: 0px 12px 15px;
    }

    .card-content {
        padding: 18px 15px;
    }

    .card-subtitle {
        font-size: 14px;
        text-align: center;
        margin-right: 40px;
    }

    .card-list li {
        font-size: 14px;
        max-width: 193px;
    }
}

@media (max-width: 768px) {
    .tratamento-section {
        padding: 50px 0;
    }

    .tratamento-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .tratamento-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tratamento-cta-button {
        font-size: 16px;
        padding: 10px 20px;
        padding-right: 65px;
        margin-top: 10px;
    }

    .tratamento-button-icon {
        width: 55px;
        height: 55px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .tratamento-section {
        padding: 40px 0;
    }

    .tratamento-container {
        padding: 0 15px;
    }

    .tratamento-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .card-icon {
        padding: 20px 12px 10px;
        min-height: 80px;
    }

    .card-icon img {
        width: 55px;
    }

    .card-title {        
        padding: 0px 10px 12px;
    }

    .card-content {
        padding: 15px 12px;
    }

    .card-subtitle {
        font-size: 13px;
    }

    .card-list li {
        font-size: 14px;
        padding-left: 22px;
    }

    .tratamento-cta-button {
        font-size: 15px;
        padding: 10px 18px;
        padding-right: 60px;
    }

    .tratamento-button-icon {
        width: 50px;
        height: 50px;
        right: -5px;
    }

    .card1-tratamento {
        font-size: 14px;
        text-align: center;
        margin-right: 2px;
    }    
}


/* Consultório Section */
.consultorio-section {
    background-color: #fff;
    padding: 60px 0;
}

.consultorio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.consultorio-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;    
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.consultorio-title {
    font-size: 50px;
    font-weight: 700;
    color: #154061;
    letter-spacing: 1px;
    margin: 0;
    flex-shrink: 0;
}

.consultorio-divider {
    flex: 1;
    height: 3px;
    background-color: #154061;
    max-width: 400px;
    margin-left: 20px;
}

.consultorio-cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #94df53;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    padding-right: 70px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.consultorio-cta-button:hover {
    transform: translateY(-2px);
}

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

.consultorio-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 0;
}

.gallery-item {
    overflow: hidden;
}

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

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

/* Coluna 1 - Linha 1 */
.gallery-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Coluna 1 - Linha 2 */
.gallery-item-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Coluna 2 - Foto Vertical (ocupa 2 linhas) */
.gallery-item-3 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

/* Coluna 3 - Linha 1 */
.gallery-item-4 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Coluna 3 - Linha 2 */
.gallery-item-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Coluna 4 - Linha 1 */
.gallery-item-6 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

/* Coluna 4 - Linha 2 */
.gallery-item-7 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Coluna 5 - Linha 1 */
.gallery-item-8 {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
}

/* Coluna 5 - Linha 2 */
.gallery-item-9 {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .consultorio-container {
        padding: 0 20px;
    }


    .consultorio-title {
        font-size: 42px;
    }

    .consultorio-divider {
        max-width: 350px;
    }

    .consultorio-cta-button {
        font-size: 16px;
        padding: 10px 20px;
        padding-right: 65px;
    }

    .consultorio-button-icon {
        width: 60px;
        height: 60px;
        right: -8px;
    }

    .consultorio-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 240px);
    }

    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .gallery-item-4 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item-5 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item-6 {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .gallery-item-7 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item-8 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item-9 {
        display: block;
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {
    .consultorio-section {
        padding: 50px 0;
    }

    .consultorio-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .consultorio-title {
        font-size: 34px;
    }

    .consultorio-divider {
        display: none;
    }

    .consultorio-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item-7 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .gallery-item-8 {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .gallery-item-9 {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .consultorio-section {
        padding: 40px 0;
    }

    .consultorio-container {
        padding: 0 15px;
    }


    .consultorio-cta-button {
        font-size: 15px;
        padding: 10px 18px;
        padding-right: 60px;
    }

    .consultorio-button-icon {
        width: 50px;
        height: 50px;
        right: -5px;
    }

    .consultorio-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 180px);
    }

    .gallery-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .gallery-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item-7 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .gallery-item-8 {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .gallery-item-9 {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    }
}



/* Tratamento Odontológico Estético Section */
.tratamentos-odonto-section {
    background-image: url('../images/capa-tratamentos-odontologicos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.tratamentos-odonto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    
    z-index: 1;
}

.tratamentos-odonto-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.tratamentos-odonto-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 900px;
    margin-left: auto;
}

.tratamentos-odonto-header {
    display: flex;
    align-items: center;    
    margin-bottom: 50px;
}

.tratamentos-odonto-title {
    font-size: 48px;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.title-bold {
    font-weight: 700;
}

.title-light {
    font-weight: 300;
}

.tratamentos-odonto-line {
    flex: 1;
    height: 3px;
    background-color: #fff;
    min-width: 170px;
    max-width: 250px;
    margin-left: 30px;
}

.tratamentos-odonto-button {
    display: inline-flex;
    align-items: center;
    background-color: #94df53;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    padding-right: 70px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.tratamentos-odonto-button:hover {
    transform: translateY(-2px);
}

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

.tratamentos-odonto-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tratamentos-odonto-list li {
    font-size: 45px;
    font-weight: 700;
    color: #fff;    
    position: relative;
    padding-left: 25px;
}

.tratamentos-odonto-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 42px;
}

/* Responsive - Tablet */
@media (max-width: 1455px) {
    .tratamentos-odonto-title {
        font-size: 36px;
    }

    .tratamentos-odonto-list li {
        font-size: 36px;
    }

    .tratamentos-odonto-list li::before {
        font-size: 36px;
    }

    .tratamentos-odonto-line {
        min-width: 115px;        
        margin-left: 30px;
    }
}

@media (max-width: 1170px) {
    .tratamentos-odonto-section {
        padding: 60px 0;
    }

    .tratamentos-odonto-container {
        padding: 0 20px;
    }

    .tratamentos-odonto-title {
        font-size: 32px;
    }

    .tratamentos-odonto-line {
        max-width: 180px;
        min-width: 100px;
    }

    .tratamentos-odonto-button {
        font-size: 16px;
        padding: 10px 20px;
        padding-right: 65px;
    }

    .tratamentos-odonto-button-icon {
        width: 60px;
        height: 60px;
        right: -8px;
    }

    .tratamentos-odonto-list li {
        font-size: 32px;
    }

    .tratamentos-odonto-list li::before {
        font-size: 32px;
    }
}

@media (max-width: 1040px) {
    .tratamentos-odonto-section {
        padding: 50px 0;
    }

    .tratamentos-odonto-content {
        align-items: center;
        max-width: 100%;
    }

    .tratamentos-odonto-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        width: 100%;
    }

    .tratamentos-odonto-title {
        font-size: 38px;
        text-align: center;
        white-space: normal;
    }

    .tratamentos-odonto-line {
        display: none;
    }

    .tratamentos-odonto-list {
        padding-left: 20px;
    }

    .tratamentos-odonto-list li {
        font-size: 24px;
        padding-left: 25px;
        margin-bottom: 12px;
    }

    .tratamentos-odonto-list li::before {
        display: block;
        font-size: 24px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .tratamentos-odonto-section {
        padding: 40px 0;
    }

    .tratamentos-odonto-container {
        padding: 0 15px;
    }

    .tratamentos-odonto-button {
        font-size: 15px;
        padding: 10px 18px;
        padding-right: 60px;
    }

    .tratamentos-odonto-button-icon {
        width: 50px;
        height: 50px;
        right: -5px;
    }

    .tratamentos-odonto-list {
        padding-left: 15px;
    }

    .tratamentos-odonto-list li {
        font-size: 20px;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .tratamentos-odonto-list li::before {
        font-size: 20px;
    }
}

/* Dra. Cynthia Section */
.dra-cynthia-section {
    background-color: #fff;
    padding: 30px 0;
}

.dra-cynthia-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.dra-cynthia-image {
    max-width: 450px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid #154061;
}

.dra-cynthia-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dra-cynthia-content {    
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dra-cynthia-title {
    font-size: 42px;
    font-weight: 600;
    color: #154061;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

.dra-cynthia-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;    
}

.dra-cynthia-list li {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.dra-cynthia-button {
    display: inline-flex;
    align-items: center;
    background-color: #94df53;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    padding-right: 70px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    align-self: center;
    margin-top: 10px;
}

.dra-cynthia-button:hover {
    transform: translateY(-2px);
}

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

/* Responsive - Quebra de linha do título */
@media (max-width: 1580px) {
    .dra-cynthia-title {
        white-space: normal;
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .dra-cynthia-section {
        padding: 60px 0;
    }

    .dra-cynthia-container {
        padding: 0 20px;
        gap: 60px;
    }

    .dra-cynthia-image {
        max-width: 380px;
    }

    .dra-cynthia-title {
        font-size: 40px;
    }

    .dra-cynthia-list li {
        font-size: 26px;
    }

    .dra-cynthia-button {
        font-size: 16px;
        padding: 10px 20px;
        padding-right: 65px;
        align-self: center;
    }

    .dra-cynthia-button-icon {
        width: 60px;
        height: 60px;
        right: -8px;
    }
}

@media (max-width: 768px) {
    .dra-cynthia-section {
        padding: 50px 0;
    }

    .dra-cynthia-container {
        flex-direction: column;
        gap: 40px;
    }

    .dra-cynthia-image {
        max-width: 100%;
    }

    .dra-cynthia-content {
        text-align: center;
        align-items: center;
    }

    .dra-cynthia-title {
        font-size: 34px;
    }

    .dra-cynthia-list li {
        font-size: 24px;
        text-align: left;
    }

    .dra-cynthia-button {
        align-self: center;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {   
    .dra-cynthia-section {
    overflow-x: hidden;
    }

    .dra-cynthia-container {
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    }

    .dra-cynthia-content {
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    }

    .dra-cynthia-title {
    white-space: normal !important;
    word-break: break-word;
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: center;
    font-size: 33px;
    }

    .dra-cynthia-list li {
    word-break: break-word;
    overflow-wrap: break-word;    
    font-size: 20px;
    }
}


/* Perguntas Frequentes Section */
.faq-section {
    background-image: url('../images/capa-perguntas-frequentes.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
    padding-bottom: 80px;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;   
    z-index: 1;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 80px;
}

.faq-item {
    border: 3px solid #fff;
    border-bottom: none;
    overflow: hidden;
}

.faq-item:first-child {
    border-radius: 5px 5px 0 0;
}

.faq-item:last-child {
    border-bottom: 3px solid #fff;
    border-radius: 0 0 5px 5px;
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 13px 40px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 18px 40px;
    margin: 0;
    color: #154061;
    font-size: 16px;
    line-height: 1.6;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #94df53;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    padding-right: 70px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.faq-cta-button:hover {
    transform: translateY(-2px);
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .faq-list {
        margin-bottom: 80px;
    }

    .faq-question {
        font-size: 17px;
        padding: 16px 35px;
        gap: 18px;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 16px 35px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-list {
        margin-bottom: 50px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px 30px;
        gap: 15px;
    }

    .faq-icon {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 15px 30px;
    }

    .faq-cta-button {
        font-size: 16px;
        padding: 10px 20px;
        padding-right: 65px;
    }

    .faq-button-icon {
        width: 60px;
        height: 60px;
        right: -8px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {   

    .faq-container {
        padding: 0 15px;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-question {
        font-size: 15px;
        padding: 14px 25px;
        gap: 12px;
    }

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

    .faq-answer p {
        font-size: 13px;
        padding: 14px 25px;
    }

    .faq-cta-button {
        font-size: 15px;
        padding: 10px 18px;
        padding-right: 60px;
    }

    .faq-button-icon {
        width: 50px;
        height: 50px;
        right: -5px;
    }
}


/* Footer */
.footer {
    background-color: #fff;
    padding: 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: auto 3px 1fr 1.3fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Coluna 1 - Logo e Contatos */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    max-width: 280px;
    width: 100%;
}

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

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

.footer-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

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

.footer-phones {
    display: flex;
    flex-direction: column;   
    align-items: center;
}

.footer-phone {
    font-size: 27px;
    font-weight: 600;
    color: #154061;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #0ea5b0;
}

.custom-telefone1-footer {
    font-size: 30px;
    font-weight: 700;
}

/* Linha divisória vertical */
.footer-divider {
    width: 4px;
    height: 82%;
    background-color: #154061;
    justify-self: center;
}

/* Coluna 2 - Menu */
.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav {
    width: 100%;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
}

.footer-menu li a {
    font-size: 18px;
    font-weight: 600;
    color: #154061;
    transition: color 0.3s ease;    
}

.footer-menu li a:hover {
    color: #0ea5b0;
}

/* Coluna 3 - Imagem do Consultório */
.footer-building {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-building img {
    width: 100%;
    min-width: 280px;
    height: 280px;
    object-fit: cover;    
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-building-text {
    font-size: 20px;
    font-weight: 600;
    color: #154061;
    text-align: center;   
    margin: 0;
}

.footer-building-text strong {
    font-weight: 700;
}

/* Coluna 4 - Mapa */
.footer-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-map-container {
    width: 100%;
    min-width: 280px;
    height: 280px;    
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-map-container iframe {
    display: block;
}

.footer-address {
    font-size: 18px;
    font-weight: 600;
    color: #154061;
    text-align: center;   
    margin: 0;
}


/* Responsive - Tablet */
@media (max-width: 1143px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 35px;
        padding: 0 20px;
    }

    .footer-divider {
        display: none;
    }

    .footer-left {
        grid-column: 1 / 3;
        padding-bottom: 20px;
        
    }

    .footer-logo {
        max-width: 250px;
    }

    .footer-social-link {
        width: 45px;
        height: 45px;
    }


    .footer-center {
        grid-column: 1 / 3;
        padding-bottom: 20px;
        
    }

    .footer-menu {
        align-items: center;
        margin-top: 0px;
        margin-bottom: 8px;
    }


    .footer-building {
        grid-column: 1 / 2;
        justify-self: end;
    }

    .footer-map {
        grid-column: 2 / 3;
        justify-self: start;
    }

    .footer-building img {
        min-width: auto;
        width: 350px;
        height: 250px;
    }

    .footer-map-container {
        min-width: auto;
        width: 350px;
        height: 250px;
    }

    .footer-building-text,
    .footer-address {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 35px 0;
    }

    .footer-container {
        gap: 30px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .footer-left {
        grid-column: 1 / 2;
    }

    .footer-center {
        grid-column: 1 / 2;
    }

    .footer-building {
        grid-column: 1 / 2;
        justify-self: center;
    }

    .footer-map {
        grid-column: 1 / 2;
        justify-self: center;
    }

    .footer-logo {
        max-width: 220px;
    }

    .footer-social-link {
        width: 42px;
        height: 42px;
    }

    .footer-phone {
        font-size: 19px;
    }

    .footer-building img {
        width: 400px;
        height: 280px;
    }

    .footer-map-container {
        width: 400px;
        height: 280px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }

    .footer-container {
        padding: 0 15px;
        gap: 25px;
    }

    .footer-logo {
        max-width: 200px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .footer-phone {
        font-size: 18px;
    }

    .footer-menu li a {
        font-size: 16px;
    }

    .footer-building-text,
    .footer-address {
        font-size: 14px;
    }

    .footer-building img {
        min-width: auto;
        width: 320px;
        height: 240px;
    }

    .footer-map-container {
        min-width: auto;
        width: 320px;
        height: 240px;
    }
}


/* ===== MENU HAMBURGUER===== */
@media (max-width: 1327px) {

 
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;    
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }

  
  .nav-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

 
  .menu-list {
    flex-direction: column;
    gap: 18px;
    margin-left: 26px;
  }

  .menu-list li a {
    font-size: 18px;
    font-weight: 600;
    color: #154061;
  }

 
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
  }

  .mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #154061;
    border-radius: 2px;
    transition: background-color 0.3s ease;
  }

  /* Evita rolagem de fundo quando o menu está aberto */
  body.menu-open {
    overflow: hidden;
  }
}



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

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

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

.lightbox-close:hover {
    transform: scale(1.2);
    color: #0c648c;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 100px;
    font-weight: 300;
    cursor: pointer;
    padding: 20px 15px;
    z-index: 10000;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #0c648c;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Adicionar cursor pointer nas imagens da galeria */
.gallery-item img {
    cursor: pointer;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .lightbox-close {
        top: 15px;
        right: 30px;
        font-size: 45px;
        width: 45px;
        height: 45px;
    }
    
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 90%;
        max-height: 75vh;
    }
    
    .lightbox-content img {
        border-radius: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 75px;
        padding: 10px 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}