/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #DAA520;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #DAA520;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Image Placeholder Styles */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F5DC 0%, #DEB887 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    padding: 2rem;
    border: 1px #DAA520;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #FFF8DC 0%, #F0E68C 100%);
    transform: scale(1.02);
}

.image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #DAA520;
}

.image-placeholder span {
    color: #8B4513;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F5F5DC 0%, #DEB887 100%);
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.hero-text h2 {
    font-size: 1.3rem;
    font-weight: 300;
    color: #DAA520;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.hero-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #DAA520;
    color: white;
}

.btn-primary:hover {
    background: #B8860B;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #DAA520;
    border: 2px solid #DAA520;
}

.btn-secondary:hover {
    background: #DAA520;
    color: white;
}

.hero-image .image-placeholder {
    min-height: 400px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.section-header h3 {
    font-size: 1rem;
    font-weight: 300;
    color: #DAA520;
    text-transform: lowercase;
    letter-spacing: 1px;
}

/* Multiespecialidades Section */
.multiespecialidades {
    padding: 6rem 0;
    background: white;
}

.multiespecialidades .content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.multiespecialidades .text-content {
    padding-right: 2rem;
}

.multiespecialidades .text-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.video-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 220px; /* Fixed width for phone-like dimensions */
    height: 390px; /* Approximate height of text content */
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #F5F5DC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #8B4513;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

/* All in One Section */
.all-in-one {
    padding: 6rem 0;
    background: white;
}

.all-in-one .content-grid {
    grid-template-columns: 1fr 1fr;
}

.all-in-one h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.all-in-one p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.image-content .image-placeholder {
    min-height: 300px;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: white;
}

.quote-section blockquote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-section p {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.quote-section cite {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Especialidades Section */
.especialidades {
    padding: 6rem 0;
    background: white;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.especialidade-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
}

.especialidade-card:hover {
    transform: translateY(-10px);
}

.especialidade-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.especialidade-icon i {
    font-size: 1.8rem;
    color: white;
}

.especialidade-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #8B4513;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.especialidade-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Doutores Section */
.doutores {
    padding: 6rem 0;
    background: white;
}

.doutores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.doutor-card {
    background: #F5F5DC;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
}

.doutor-card:hover {
    transform: translateY(-10px);
}

.doutor-image {
    height: 250px;
    overflow: hidden;
}

.doutor-image .image-placeholder {
    border-radius: 0;
    height: 100%;
    min-height: auto;
}

.doutor-info {
    padding: 2rem;
}

.doutor-info h3 {
    font-size: 1.4rem;
    font-weight: 400;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.cro {
    color: #DAA520;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.doutor-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

.email {
    color: #DAA520;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
}

.email:hover {
    text-decoration: underline;
}

/* Consultório Section */
.consultorio {
    padding: 6rem 0;
    background: #F5F5DC;
}

.consultorio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.consultorio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
}

.consultorio-card:hover {
    transform: translateY(-10px);
}

.consultorio-image {
    height: 400px;
    overflow: hidden;
}

.consultorio-image .image-placeholder {
    border-radius: 0;
    height: 100%;
    min-height: auto;
}

.consultorio-info {
    padding: 1.5rem;
}

.consultorio-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #8B4513;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.consultorio-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #8B4513;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #DAA520;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #F5F5DC;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

.contact-info {
    margin-top: 1.5rem;
}

.address-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.address-block i {
    color: #8B4513;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.address-details p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.address-details .street {
    font-weight: 500;
    color: #333;
}

.address-details .complement,
.address-details .neighborhood {
    margin-top: 0.2rem;
}

.address-details .cep {
    margin-top: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: #8B4513;
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.horarios p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #DAA520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #B8860B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #A0522D;
    color: #F5F5DC;
    font-size: 0.85rem;
    font-weight: 400;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo .logo {
        height: 70px;
        max-width: 220px;
        margin: 0;
        padding: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .doutores-grid {
        grid-template-columns: 1fr;
    }

    .consultorio-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-container {
        width: 200px;
        height: 355px;
    }
    
    .multiespecialidades .text-content {
        padding: 0 1rem;
    }

    .address-block {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-block {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo {
        height: 60px;
        max-width: 180px;
        margin: 0;
        padding: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
    background: #F5F5DC;
}

/* Missão, Visão e Valores */
.mvv-section {
    margin-bottom: 4rem;
}

.mvv-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: center;
}

.mvv-item h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
    position: relative;
}

.mvv-item h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
}

.mvv-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    max-width: 400px;
    margin: 0 auto;
}

/* Fundadoras Section */
.fundadoras-section {
    margin: 4rem 0;
}

.fundadoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.fundadora-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(218, 165, 32, 0.1);
}

.fundadora-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: rgba(218, 165, 32, 0.3);
}

.fundadora-image {
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #F5F5DC 0%, #DEB887 100%);
    position: relative;
}

.fundadora-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0%;
    transition: transform 0.3s ease;
}

.fundadora-card:hover .fundadora-photo {
    transform: scale(1.05);
}

.fundadora-image .image-placeholder {
    border-radius: 0;
    height: 100%;
    min-height: auto;
    background: transparent;
    border: none;
}

.fundadora-info {
    padding: 1.5rem;
    text-align: center;
}

.fundadora-info h3 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #8B4513;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.2px;
}

.fundadora-info .cro {
    color: #DAA520;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fundadora-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.fundadora-info p:last-child {
    margin-bottom: 0;
}

/* Depoimentos Section */
.depoimentos-section {
    margin: 4rem 0 0 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #DAA520;
}

.depoimento-card:hover {
    transform: translateY(-5px);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.depoimento-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.depoimento-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #DAA520;
    font-size: 0.9rem;
}

.depoimento-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
}

/* Responsive adjustments for Sobre section */
@media (max-width: 768px) {
    .mvv-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mvv-item h3 {
        font-size: 1.6rem;
    }
    
    .fundadoras-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .multiespecialidades .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .multiespecialidades .text-content {
        padding-right: 0;
        text-align: center;
    }

    .video-container {
        width: 200px;
        height: 355px;
    }
}