/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #777;
    background: url('images/fundo-site.jpg') repeat;
    background-size: 200px 200px;
}

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

/* Barra superior */
.top-bar {
    background-color: rgba(168, 198, 179, 1);
    color: white;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 200;
    position: relative;
    z-index: 1000;
}

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

.top-bar .contact-info {
    display: flex;
    gap: 30px;
}

.top-bar .social-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .social-info svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Header principal */
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

/* Menu principal */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin-bottom: 8px;
}

.main-nav a {
    text-decoration: none;
    color: #999;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: rgba(130, 156, 140, 1);
}

.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
}

.main-nav .dropdown:hover .dropdown-content {
    display: block;
}

.main-nav .dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #777;
    font-size: 14px;
}

.main-nav .dropdown-content a:hover {
    background: #f8f9fa;
    color: rgba(130, 156, 140, 1);
}

/* Menu hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #999;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Slider */
.slider-section {
    position: relative;
    height: 780px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 10;
}

.slide-text {
    color: white;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.slide-overlay .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(91, 107, 97, 0.9);
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-overlay .btn:hover {
    background: rgba(91, 107, 97, 1);
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Seção Bem-vindo */
.welcome-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
}

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

.welcome-text h2 {
    color: rgba(130, 156, 140, 1);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

.welcome-text h2 .line1 {
    display: block;
}

.welcome-text h2 .line2 {
    display: block;
}

.welcome-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: rgba(130, 156, 140, 1);
    margin: 15px 0 25px 0;
}

.welcome-text h3 {
    color: #777;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
}

.welcome-text p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
}
.welcome-text .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(130, 156, 140, 1);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.welcome-text .btn::before {
    content: '📍';
    font-size: 16px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

.welcome-text .btn:hover {
    background: rgba(110, 136, 120, 1);
    transform: translateY(-2px);
}

.welcome-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    background: rgba(168, 198, 179, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.welcome-images img {
    width: 45%;
    height: auto;
    aspect-ratio: 720/1280;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* Seção de vídeos */
.videos-section {
    padding: 60px 0;
    background: rgba(168, 198, 179, 0.15);
    position: relative;
}

.videos-section h2 {
    text-align: center;
    color: #777;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.videos-section p {
    text-align: center;
    color: #777;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
}

/* Aviso importante */
.important-notice {
    background: rgba(168, 198, 179, 0.2);
    border: 2px solid rgba(168, 198, 179, 0.5);
    border-radius: 15px 15px 0 0;
    padding: 30px;
    margin: 60px 0 0 0;
    text-align: center;
    position: relative;
}

.important-notice::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background-image: url('images/simbolo-vanessa.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 15px auto;
}

.important-notice h3 {
    color: rgba(130, 156, 140, 1);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.important-notice p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

/* Rodapé */
.footer {
    background: rgba(91, 107, 97, 1);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 300;
    color: white;
    text-decoration: none;
}

.footer-instagram-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.footer h3 {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 11px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.footer-section p {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta {
    text-align: center;
}

.footer-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(110, 127, 117, 1);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 300;
    font-size: 13px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.footer-cta .btn:hover {
    background: rgba(22, 163, 74, 1);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Responsividade */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo img {
        height: 80px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 80px 0 20px 0;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: left;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav a {
        display: block;
        font-size: 16px;
        font-weight: 400;
        color: #333;
        text-decoration: none;
        padding: 15px 30px;
        transition: background-color 0.3s ease;
    }
    
    .main-nav a:hover {
        background-color: #f8f9fa;
        color: rgba(130, 156, 140, 1);
    }
    
    .main-nav .dropdown-content {
        position: static;
        display: block;
        background: #f8f9fa;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        width: 100%;
    }
    
    .main-nav .dropdown-content a {
        font-size: 14px;
        padding: 12px 50px;
        color: #666;
    }
    
    .hamburger {
        display: flex;
    }
    
    .slider-section {
        height: 400px;
    }
    
    .slide-text {
        font-size: 28px;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-images {
        flex-direction: column;
        align-items: center;
    }
    
    .welcome-images img {
        width: 80%;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}


/* Botões de áudio dos vídeos */
.video-item {
    position: relative;
}

.audio-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.audio-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.audio-toggle.active {
    background: rgba(130, 156, 140, 0.9);
}



/* Página Dra. Vanessa Pessotti */
.dra-vanessa-section {
    padding: 60px 0 80px 0;
    background: white;
}

.dra-vanessa-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.dra-vanessa-text {
    padding-left: 0;
}

.dra-vanessa-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dra-vanessa-subtitle {
    color: #777;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.dra-vanessa-education {
    margin-bottom: 30px;
}

.dra-vanessa-education p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 15px;
}

.dra-vanessa-description p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.dra-vanessa-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.dra-vanessa-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

/* Responsividade para página da Dra. Vanessa */
@media (max-width: 768px) {
    .dra-vanessa-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .dra-vanessa-title {
        font-size: 28px;
    }
    
    .dra-vanessa-subtitle {
        font-size: 20px;
    }
    
    .dra-vanessa-image img {
        max-width: 300px;
    }
}


/* Página Consultório */
.consultorio-section {
    padding: 60px 0 80px 0;
    background: white;
}

.consultorio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.consultorio-text {
    padding-right: 20px;
}

.consultorio-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultorio-description p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.consultorio-location {
    margin-top: 30px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(130, 156, 140, 1);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.location-btn::before {
    content: '📍';
    font-size: 16px;
    margin-right: 5px;
    filter: brightness(0) invert(1);
}

.location-btn:hover {
    background: rgba(110, 136, 120, 1);
    transform: translateY(-2px);
}

.consultorio-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.consultorio-main-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.consultorio-main-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.consultorio-gallery-bottom {
    margin-top: 60px;
}

.gallery-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-bottom-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-bottom-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Responsividade para página do consultório */
@media (max-width: 768px) {
    .consultorio-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .consultorio-title {
        font-size: 28px;
    }
    
    .consultorio-text {
        padding-right: 0;
    }
    
    .gallery-grid {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .gallery-item {
        height: 120px;
    }
}


/* Página Endodontia Microscópica */
.endodontia-section {
    padding: 80px 0 60px;
    background: #fff;
}

.endodontia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.endodontia-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.endodontia-description {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.endodontia-description p {
    margin-bottom: 20px;
}

.endodontia-gallery {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.gallery-mosaic {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    width: 100%;
}

.gallery-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-mosaic img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.gallery-top-row img {
    height: 280px;
}

.gallery-bottom-row img {
    height: 350px;
}

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

.technology-content {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.technology-title {
    color: rgba(130, 156, 140, 1);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.technology-text {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 800px;
}

.technology-text p {
    margin-bottom: 20px;
}

.video-section {
    margin-top: 40px;
    text-align: center;
}

.video-section video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .endodontia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .endodontia-title {
        font-size: 28px;
    }
    
    .gallery-mosaic {
        max-width: 100%;
        justify-self: center;
    }
    
    .endodontia-gallery {
        justify-content: center;
    }
}



/* Seção de vídeo da endodontia */
.technology-video-section {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.technology-video-content {
    display: flex;
    flex-direction: column;
}

.technology-video-item {
    position: relative;
    max-width: 300px;
}

.technology-video-item video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.technology-video-item .audio-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.technology-video-item .audio-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.technology-video-item .audio-toggle.active {
    background: rgba(130, 156, 140, 0.9);
}

/* Responsividade para endodontia */
@media (max-width: 768px) {
    .endodontia-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .endodontia-title {
        font-size: 28px;
    }
    
    .gallery-mosaic {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-top-row img {
        height: 150px;
    }
    
    .gallery-bottom-row img {
        height: 180px;
    }
    
    .technology-video-section {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .technology-video-item {
        max-width: 250px;
        margin: 0 auto;
    }
}


/* Página Tomografia na Endodontia */
.tomografia-section {
    padding: 60px 0 80px 0;
    background: white;
}

.tomografia-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tomografia-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tomografia-text {
    margin-bottom: 50px;
}

.tomografia-text p {
    color: #777;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.tomografia-gallery {
    background: rgba(130, 156, 140, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.tomografia-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tomografia-photos img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tomografia-photos img:hover {
    transform: scale(1.05);
}

/* Responsividade para tomografia */
@media (max-width: 768px) {
    .tomografia-title {
        font-size: 28px;
    }
    
    .tomografia-photos {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .tomografia-photos img {
        height: 250px;
    }
    
    .tomografia-gallery {
        padding: 30px 20px;
    }
}


/* Página Dúvidas Frequentes */
.duvidas-section {
    padding: 60px 0 80px 0;
    background: white;
}

.duvidas-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
}

.duvidas-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: flex-start;
}

.duvidas-faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: rgba(130, 156, 140, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(130, 156, 140, 0.05);
    color: rgba(130, 156, 140, 1);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: rgba(130, 156, 140, 1);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(130, 156, 140, 0.02);
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #666;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
}

.duvidas-video {
    position: sticky;
    top: 100px;
}

.duvidas-video h3 {
    color: rgba(130, 156, 140, 1);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}

.duvidas-video-container {
    position: relative;
    background: rgba(130, 156, 140, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.duvidas-video video {
    width: 100%;
    height: auto;
    aspect-ratio: 720/1280;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.duvidas-video p {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

/* Responsividade para dúvidas */
@media (max-width: 768px) {
    .duvidas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .duvidas-title {
        font-size: 28px;
        text-align: center;
    }
    
    .duvidas-video {
        position: static;
        order: -1;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-answer.active {
        padding: 0 20px 15px 20px;
    }
}


/* Página Contato */
.contato-section {
    padding: 60px 0 80px 0;
    background: white;
}

.contato-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contato-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contato-card {
    background: rgba(130, 156, 140, 0.05);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(130, 156, 140, 0.1);
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(130, 156, 140, 0.15);
    border-color: rgba(130, 156, 140, 0.3);
}

.contato-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.contato-card h3 {
    color: rgba(130, 156, 140, 1);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contato-card p {
    color: #666;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contato-card .phone-number {
    color: rgba(130, 156, 140, 1);
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0;
}

.contato-card .email-address {
    color: rgba(130, 156, 140, 1);
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
    word-break: break-all;
}

.whatsapp-btn {
    background: rgba(130, 156, 140, 1);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background: rgba(110, 136, 120, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 156, 140, 0.3);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.contato-map {
    padding: 40px 0px;
    text-align: center;
}

.contato-map h3 {
    color: rgba(130, 156, 140, 1);
    font-size: 24px;
    font-weight: 400;
   
}


.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsividade para contato */
@media (max-width: 768px) {
    .contato-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .contato-title {
        font-size: 28px;
        text-align: center;
    }
    
    .contato-card {
        padding: 25px 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contato-card .phone-number {
        font-size: 20px;
    }
    
    .contato-card .email-address {
        font-size: 14px;
        word-break: break-word;
    }
    
    .contato-map {
        padding: 30px 0;
    }
    
    .map-container iframe {
        height: 350px;
    }
}
/* Página Política de Privacidade */
.privacidade-section {
    padding: 60px 0 80px 0;
    background: white;
}

.privacidade-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
}

.privacidade-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fafafa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.privacidade-intro {
    background: rgba(130, 156, 140, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid rgba(130, 156, 140, 1);
}

.privacidade-intro p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.privacidade-text {
    color: #555;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.privacidade-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.privacidade-text strong {
    color: rgba(130, 156, 140, 1);
    font-weight: 500;
}

.privacidade-section-title {
    color: rgba(130, 156, 140, 1);
    font-size: 20px;
    font-weight: 500;
    margin: 30px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(130, 156, 140, 0.2);
}

.privacidade-list {
    background: rgba(130, 156, 140, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.privacidade-list p {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.privacidade-list p:before {
    content: "•";
    color: rgba(130, 156, 140, 1);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacidade-contact {
    background: rgba(130, 156, 140, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.privacidade-btn {
    background: rgba(130, 156, 140, 1);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.privacidade-btn:hover {
    background: rgba(110, 136, 120, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 156, 140, 0.3);
}

.privacidade-date {
    background: rgba(130, 156, 140, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

/* Responsividade para política de privacidade */
@media (max-width: 768px) {
    .privacidade-title {
        font-size: 28px;
    }
    
    .privacidade-content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .privacidade-intro,
    .privacidade-contact {
        padding: 20px;
    }
    
    .privacidade-text {
        font-size: 14px;
    }
    
    .privacidade-section-title {
        font-size: 18px;
    }
}

/* Página Artigos e Palestras */
.artigos-section {
    padding: 60px 0 80px 0;
    background: white;
}

.artigos-title {
    color: rgba(130, 156, 140, 1);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
}

.artigos-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    background: rgba(130, 156, 140, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid rgba(130, 156, 140, 1);
}

.artigos-intro p {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.artigos-intro p:last-child {
    margin-bottom: 0;
}

.artigos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.artigos-column {
    background: #fafafa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.column-title {
    color: rgba(130, 156, 140, 1);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(130, 156, 140, 0.2);
}

.column-icon {
    text-align: center;
    margin-bottom: 20px;
    font-size: 48px;
    color: rgba(130, 156, 140, 1);
}

.column-description {
    color: #666;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 30px;
}

.coming-soon {
    background: rgba(130, 156, 140, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.coming-soon h4 {
    color: rgba(130, 156, 140, 1);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.coming-soon p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.preview-list {
    list-style: none;
    padding: 0;
}

.preview-list li {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 3px solid rgba(130, 156, 140, 1);
    color: #666;
    font-size: 14px;
    font-weight: 300;
}

.preview-list li:last-child {
    margin-bottom: 0;
}

.artigos-cta {
    text-align: center;
    margin-top: 50px;
}

.artigos-btn {
    background: rgba(130, 156, 140, 1);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.artigos-btn:hover {
    background: rgba(110, 136, 120, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(130, 156, 140, 0.3);
}

.newsletter-section {
    background: rgba(130, 156, 140, 0.05);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
}

.newsletter-title {
    color: rgba(130, 156, 140, 1);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.newsletter-description {
    color: #666;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: rgba(130, 156, 140, 1);
}

.newsletter-btn {
    background: rgba(130, 156, 140, 1);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: rgba(110, 136, 120, 1);
}

/* Responsividade para artigos */
@media (max-width: 768px) {
    .artigos-title {
        font-size: 28px;
    }
    
    .artigos-intro {
        padding: 25px 20px;
        margin: 0 15px 40px 15px;
    }
    
    .artigos-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 15px;
    }
    
    .artigos-column {
        padding: 30px 25px;
    }
    
    .column-title {
        font-size: 20px;
    }
    
    .newsletter-section {
        padding: 30px 20px;
        margin: 40px 15px 0 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}

.link-instagram {
  color: white;
  text-decoration: none;
}

/* Opcional: Mantém a cor branca mesmo depois de visitado ou ao passar o mouse */
.link-instagram:hover, .link-instagram:visited {
  color: white; 
}