/* Reset e Base - Versão 3.0 - Menu Dropdown Atualizado */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #FEFAF6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background-color: #B6A99B;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-link {
    color: #FEFAF6;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-link:hover {
    opacity: 0.8;
}

.top-link svg {
    color: #FEFAF6;
}

/* --- NAVEGAÇÃO REVISADA --- */
.main-header {
    background-color: #FEFAF6;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 80px;
    width: auto;
}

.main-nav {
    margin-left: auto;
    margin-right: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: #62422D;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item > a:hover {
    color: #8E8078;
}

/* Submenu Desktop */
.nav-dropdown {
    position: relative;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    min-width: 280px;
    padding: 15px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1100;
    border-top: 3px solid #B6A99B;
    list-style: none;
    margin: 0;
}

/* Comportamento Hover Desktop */
@media (min-width: 992px) {
    .nav-list {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .nav-item > a {
        white-space: nowrap;
    }
    
    .nav-dropdown:hover .dropdown-submenu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-submenu li a {
    padding: 12px 25px;
    font-size: 16px;
    display: block;
    color: #62422D;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-submenu li a:hover {
    background-color: #F4F1EE;
    color: #8E8078;
}

/* --- MOBILE VERSION --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #62422D;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .mobile-menu-toggle { 
        display: flex; 
        order: 2; 
    }
    
    .instagram-btn { 
        display: none;
    }
    
    .logo { 
        order: 1; 
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .main-nav.active { 
        display: block; 
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item > a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    /* Submenu no Mobile */
    .dropdown-submenu {
        position: static;
        display: none;
        box-shadow: none;
        background: #F9F8F7;
        padding: 0;
        min-width: 100%;
        border-top: none;
        transform: none;
        left: auto;
    }
    
    .nav-dropdown.active .dropdown-submenu {
        display: block;
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateX(-50%) translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
}

.instagram-btn {
    width: 40px;
    height: 40px;
    background-color: #B6A99B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-btn:hover {
    background-color: #8E8078;
}

.instagram-btn svg {
    color: #FEFAF6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
    padding: 60px 0 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    color: #8E8078;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #111518;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 16px;
    color: #62422D;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: #8E8078;
}

.feature-text strong {
    display: block;
    color: #111518;
    font-size: 14px;
    margin-bottom: 5px;
}

.feature-text p {
    color: #62422D;
    font-size: 13px;
    line-height: 1.5;
}

.hero-image {
    position: relative;
    margin-bottom: 0px;
}

.hero-image img {
    border-radius: 0;
    width: 100%;
    display: block;
}

.certification-badge {
    position: absolute;
    top: 45%;
    right: 30px;
    background-color: rgba(142, 128, 120, 0.95);
    color: #FEFAF6;
    padding: 20px;
    border-radius: 10px;
    max-width: 250px;
    display: flex;
    gap: 15px;
}

.badge-icon {
    flex-shrink: 0;
}

.badge-icon svg {
    color: #FEFAF6;
}

.badge-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 12px;
    line-height: 1.4;
}

.patients-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-number {
    font-size: 24px;
    font-weight: 800;
    color: #111518;
}

.patients-badge strong {
    display: block;
    color: #111518;
    font-size: 14px;
    margin-bottom: 12px;
}

.patients-avatars {
    display: flex;
}

.patients-avatars img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

/* Stats Bar */
.stats-bar {
    background-color: #B6A99B;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: #FEFAF6;
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon svg {
    color: #FEFAF6;
    margin: 0 auto;
}

.stat-content strong {
    display: block;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-content span {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #FEFAF6;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #8E8078;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header-center h2 {
    font-size: 36px;
    color: #111518;
    font-weight: 800;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 12px;
}

.consultations-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(62, 66, 45, 0.9);
    color: #FEFAF6;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 28px;
    color: #111518;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    color: #62422D;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #62422D;
    font-size: 15px;
}

.about-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #8E8078;
    font-weight: bold;
    font-size: 18px;
}

.about-content .btn {
    margin-top: 20px;
}

/* Specialties Section */
.specialties-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
}

.specialties-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.specialties-intro h2 {
    font-size: 36px;
    color: #111518;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 10px;
}

.specialties-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.specialties-description p {
    color: #62422D;
    font-size: 16px;
    line-height: 1.7;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.specialty-card {
    background-color: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.specialty-icon {
    background-color: #B6A99B;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.specialty-icon svg {
    color: #FEFAF6;
}

.specialty-card h3 {
    font-size: 18px;
    color: #111518;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.specialty-card p {
    color: #62422D;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.specialty-link {
    color: #8E8078;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.specialty-link:hover {
    color: #62422D;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0 0 0;
    background-color: #B6A99B;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

.form-wrapper {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.form-wrapper h2 {
    font-size: 32px;
    color: #111518;
    margin-bottom: 15px;
    font-weight: 800;
}

.form-wrapper > p {
    color: #62422D;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E8E4E1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: #FEFAF6;
    color: #111518;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B6A99B;
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA0A3;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form {
    background-color: #B6A99B;
    color: #FEFAF6;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background-color: #8E8078;
    transform: translateY(-2px);
}

.btn-form svg {
    color: #FEFAF6;
}

.contact-image-wrapper {
    position: relative;
    align-self: flex-end;
}

.contact-image-wrapper img {
    width: 70%;
    border-radius: 0;
    display: block;
}

.schedule-card {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    max-width: 280px;
}

.schedule-card h3 {
    font-size: 18px;
    color: #111518;
    margin-bottom: 8px;
    font-weight: 700;
}

.schedule-card > p {
    color: #62422D;
    font-size: 13px;
    margin-bottom: 20px;
}

.schedule-list {
    list-style: none;
    margin-bottom: 20px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E8E4E1;
    font-size: 14px;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list li span:first-child {
    color: #111518;
    font-weight: 500;
}

.schedule-list li span:last-child {
    color: #62422D;
}

.btn-schedule {
    width: 100%;
    background-color: #B6A99B;
    color: #FEFAF6;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.btn-schedule:hover {
    background-color: #8E8078;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #FEFAF6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
    padding: 40px 35px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.process-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 22px;
    color: #111518;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-card p {
    color: #62422D;
    font-size: 15px;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Coluna Esquerda - Textos */
.why-choose-left h2 {
    font-size: 36px;
    color: #111518;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 50px;
}

.why-list {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(98, 66, 45, 0.2);
}

.why-item:last-child {
    border-bottom: none;
}

.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 18px;
    color: #111518;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.why-content p {
    color: #62422D;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.why-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.why-icon svg {
    color: #B6A99B;
}

/* Coluna Direita - Imagens */
.why-choose-right {
    position: relative;
}

.why-images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
}

.why-image-large {
    grid-column: 1 / 3;
    grid-row: 1;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
}

.why-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-image-small {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
}

.why-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card de Satisfação */
.why-satisfaction-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(62, 66, 45, 0.95);
    color: #FEFAF6;
    padding: 30px;
    border-radius: 12px;
    max-width: 260px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.satisfaction-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #FEFAF6;
    margin-bottom: 12px;
}

.satisfaction-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FEFAF6;
}

.satisfaction-info p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(254, 250, 246, 0.85);
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #8E8078;
    color: #FEFAF6;
}

.btn-primary:hover {
    background-color: #62422D;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #62422D;
    border: 2px solid #62422D;
    padding: 12px 32px;
}

.btn-secondary:hover {
    background-color: #62422D;
    color: #FEFAF6;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/Ortopedista-Especialista-maos-em-Goiania-.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(17, 21, 24, 0.4) 0%, rgba(17, 21, 24, 0.85) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.cta-content {
    max-width: 600px;
    text-align: right;
}

.cta-content h2 {
    font-size: 42px;
    color: #FEFAF6;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    color: #E8E4E1;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-cta {
    background-color: #B6A99B;
    color: #FEFAF6;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background-color: #8E8078;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    background-color: #8E8078;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(182, 169, 155, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #FEFAF6;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-subtitle {
    color: #B6A99B;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials-header h2 {
    color: #62422D;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(98, 66, 45, 0.15);
}

.testimonials-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.testimonials-image:hover img {
    transform: scale(1.05);
}

.btn-doctoralia {
    display: inline-block;
    padding: 16px 32px;
    background-color: #62422D;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-doctoralia:hover {
    background-color: #8E8078;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(98, 66, 45, 0.3);
}

.testimonials-right {
    position: relative;
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(98, 66, 45, 0.1);
    position: relative;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
}

.testimonial-author {
    margin-bottom: 20px;
    padding-top: 30px;
}

.testimonial-author strong {
    display: block;
    color: #62422D;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #B6A99B;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-text {
    color: #62422D;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E8E4E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #B6A99B;
}

.dot.active {
    background-color: #62422D;
    width: 40px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-header h2 {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .testimonials-header h2 {
        font-size: 24px;
    }
    
    .testimonial-card {
        padding: 25px;
        min-height: 250px;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        top: -15px;
        left: 20px;
    }
    
    .testimonial-author strong {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

.testimonial-card {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #62422D;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #111518;
    font-weight: 600;
    font-size: 14px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #5a5a5a 0%, #3d3d3d 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: #FEFAF6;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

/* Doctor Profile Section */
.doctor-profile-section {
    padding: 80px 0;
    background-color: #FEFAF6;
}

.profile-subtitle {
    text-align: center;
    color: #B6A99B;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.profile-title {
    text-align: center;
    color: #111518;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.consultations-badge-doctor {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(98, 66, 45, 0.95);
    color: #FEFAF6;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 220px;
}

.badge-number {
    font-size: 48px;
    font-weight: 800;
    color: #FEFAF6;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    line-height: 1.4;
    color: #FEFAF6;
}

.profile-content h3 {
    color: #111518;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.profile-content p {
    color: #62422D;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.profile-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.profile-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #62422D;
    font-size: 15px;
    line-height: 1.6;
}

.profile-benefits svg {
    flex-shrink: 0;
    color: #B6A99B;
    margin-top: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #B6A99B;
    color: #FEFAF6;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #8E8078;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(182, 169, 155, 0.4);
}

/* Training and Specialization Section */
.training-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.training-subtitle {
    color: #B6A99B;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.training-title {
    color: #111518;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.training-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(98, 66, 45, 0.15);
}

.training-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.training-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(182, 169, 155, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-icon svg {
    color: #62422D;
}

.training-text h3 {
    color: #111518;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.training-text p {
    color: #62422D;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.training-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.training-image-top {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(98, 66, 45, 0.15);
}

.training-image-top img {
    width: 100%;
    height: auto;
    display: block;
}

.training-image-bottom {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.satisfaction-badge-training {
    flex-shrink: 0;
    background-color: rgba(98, 66, 45, 0.95);
    color: #FEFAF6;
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 10px 40px rgba(98, 66, 45, 0.15);
}

.satisfaction-number {
    font-size: 48px;
    font-weight: 800;
    color: #FEFAF6;
    line-height: 1;
    margin-bottom: 10px;
}

.satisfaction-info strong {
    display: block;
    font-size: 16px;
    color: #FEFAF6;
    margin-bottom: 5px;
}

.satisfaction-info p {
    font-size: 13px;
    line-height: 1.4;
    color: #E8E4E1;
    margin: 0;
}

.training-image-bottom .image-wrapper {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(98, 66, 45, 0.15);
    max-width: 350px;
}

.training-image-bottom .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.site-footer {
    background-color: #62422D;
    color: #FEFAF6;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(254, 250, 246, 0.15);
}

.footer-column h3 {
    color: #FEFAF6;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer About */
.footer-about .footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-description {
    color: #E8E4E1;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(254, 250, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #B6A99B;
    transform: translateY(-3px);
}

.footer-social svg {
    color: #FEFAF6;
}

/* Footer Links */
.footer-links ul,
.footer-specialties ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-specialties li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-specialties a {
    color: #E8E4E1;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-specialties a:hover {
    color: #B6A99B;
    padding-left: 5px;
}

/* Footer Contact */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #B6A99B;
}

.contact-list a {
    color: #E8E4E1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: #B6A99B;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: #E8E4E1;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #E8E4E1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #B6A99B;
}

.footer-legal span {
    color: rgba(254, 250, 246, 0.3);
}

/* Doctor Profile Responsive */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-title {
        font-size: 28px;
    }
    
    .consultations-badge-doctor {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .training-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .training-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .doctor-profile-section {
        padding: 60px 0;
    }
    
    .profile-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .profile-content h3 {
        font-size: 20px;
    }
    
    .profile-content p {
        font-size: 15px;
    }
    
    .badge-number {
        font-size: 36px;
    }
    
    .training-section {
        padding: 60px 0;
    }
    
    .training-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .training-item {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .training-text h3 {
        font-size: 17px;
    }
    
    .training-text p {
        font-size: 14px;
    }
    
    .training-image-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .satisfaction-badge-training {
        width: 100%;
        max-width: 100%;
    }
    
    .training-image-bottom .image-wrapper {
        max-width: 100%;
    }
    
    .satisfaction-number {
        font-size: 36px;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 30px;
    }
    
    .footer-about .footer-logo {
        max-width: 180px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.8);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { 
        display: flex; 
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .main-nav.active { 
        display: block; 
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-item { 
        width: 100%; 
    }
    
    .nav-item > a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-submenu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        background: #f9f9f9;
        min-width: 100%;
        margin-top: 10px;
    }
    
    .nav-dropdown.active .dropdown-submenu {
        display: block;
    }
    
    .top-bar-content {
        gap: 15px;
    }
    
    .top-link {
        font-size: 12px;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .logo img {
        height: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .certification-badge {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .patients-badge {
        position: static;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    /* Mobile: Imagem do hero abaixo do patients-badge e colada na parte inferior */
    .hero-image {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }
    
    .hero-image img {
        order: 2;
        margin-top: 0;
        border-radius: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .consultations-badge {
        position: static;
        margin-top: 20px;
    }
    
    .specialties-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specialties-intro h2 {
        font-size: 28px;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Mobile: Ocultar imagem do formulário e adicionar padding-bottom */
    .contact-form-section {
        padding-bottom: 20px;
    }
    
    .contact-image-wrapper {
        display: none;
    }
    
    .form-wrapper {
        margin-bottom: 0;
    }
    
    .schedule-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-left h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .why-item {
        flex-direction: column-reverse;
        gap: 15px;
        padding: 20px 0;
    }
    
    .why-icon {
        align-self: flex-end;
    }
    
    .why-images-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .why-image-large {
        grid-column: 1;
        grid-row: 1;
        height: 280px;
    }
    
    .why-image-small {
        grid-column: 1;
        grid-row: 2;
        height: 200px;
    }
    
    .why-satisfaction-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-section .container {
        justify-content: center;
    }
    
    .cta-content {
        text-align: center;
        max-width: 100%;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-content h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .why-item {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 0;
    }
    
    .why-icon {
        align-self: flex-end;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 15px;
    }
    
    .image-large {
        grid-column: 1;
        grid-row: 1;
        height: 280px;
    }
    
    .image-small {
        grid-column: 1;
        grid-row: 2;
        height: 200px;
    }
    
    .satisfaction-badge {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Specialty Pages Styles */
.page-hero .hero-subtitle {
    color: #E8E4E1;
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.specialty-intro-section {
    padding: 100px 0;
    background-color: #FEFAF6;
}

.specialty-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.specialty-intro-content h2 {
    color: #111518;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.specialty-intro-content p {
    color: #62422D;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.specialty-intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(98, 66, 45, 0.2);
}

.specialty-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.conditions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
}

.section-title-center {
    text-align: center;
    color: #111518;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.conditions-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 15px;
}

.conditions-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: #62422D;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid #B6A99B;
}

.conditions-list li:hover {
    background-color: rgba(255, 255, 255, 1);
    border-left-color: #62422D;
    transform: translateX(5px);
}

.conditions-list svg {
    flex-shrink: 0;
    color: #B6A99B;
}

.symptoms-section {
    padding: 100px 0;
    background-color: #FEFAF6;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.symptom-card {
    background-color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(98, 66, 45, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #E8E4E1;
}

.symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(98, 66, 45, 0.15);
    border-top-color: #B6A99B;
}

.symptom-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.symptom-icon svg {
    color: #62422D;
}

.symptom-card p {
    color: #62422D;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.advantage-card {
    background-color: #FFFFFF;
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(98, 66, 45, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #B6A99B;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(98, 66, 45, 0.15);
    border-top-color: #62422D;
}

.advantage-icon {
    margin-bottom: 30px;
}

.advantage-icon svg {
    color: #62422D;
}

.advantage-card h3 {
    color: #111518;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.advantage-card p {
    color: #62422D;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.why-choose-specialty-section {
    padding: 80px 0;
    background-color: #FEFAF6;
}

.why-choose-specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-choose-specialty-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(98, 66, 45, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #B6A99B;
}

.why-choose-specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(98, 66, 45, 0.15);
    border-top-color: #62422D;
}

.why-choose-specialty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8E4E1 0%, #D5CFC9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-choose-specialty-icon svg {
    color: #62422D;
}

.why-choose-specialty-card h3 {
    color: #111518;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose-specialty-card p {
    color: #62422D;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.specialty-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #62422D 0%, #8E8078 100%);
    position: relative;
}

.specialty-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.specialty-cta-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.specialty-cta-content h2 {
    color: #FEFAF6;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.specialty-cta-content p {
    color: #E8E4E1;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: #25d366;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: rgba(254, 250, 246, 0.15);
    color: #FEFAF6;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(254, 250, 246, 0.3);
}

.btn-phone:hover {
    background-color: rgba(254, 250, 246, 0.25);
    border-color: rgba(254, 250, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 250, 246, 0.2);
}

/* Specialty Pages Responsive */
@media (max-width: 992px) {
    .specialty-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid,
    .why-choose-specialty-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .specialty-intro-section {
        padding: 60px 0;
    }
    
    .specialty-intro-content h2,
    .section-title-center {
        font-size: 24px;
    }
    
    .specialty-intro-content p {
        font-size: 15px;
    }
    
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .specialty-cta-content h2 {
        font-size: 28px;
    }
    
    .specialty-cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-whatsapp,
    .btn-phone {
        width: 100%;
        justify-content: center;
    }
}


/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: #F8F6F4;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.contact-info-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: block;
    color: inherit;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #F8F6F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: #62422D;
}

.contact-info-icon svg {
    color: #62422D;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon svg {
    color: #FFFFFF;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.4;
}

/* Contact Info Responsive */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-info-card h3 {
        font-size: 16px;
    }
}

/* Map Section */
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
}

/* Specialties Page Styles */
.specialties-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEFAF6 0%, #F5EDE3 100%);
}

.specialties-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.doctor-credentials {
    color: #8E8078;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(142, 128, 120, 0.1);
    border-radius: 50px;
}

.specialties-header h2 {
    font-size: 42px;
    color: #62422D;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.specialties-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.specialties-grid-section {
    padding: 100px 0;
    background-color: #fff;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.specialty-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #F5EDE3;
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8E8078 0%, #62422D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.specialty-card:hover::before {
    transform: scaleX(1);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(98, 66, 45, 0.15);
    border-color: #8E8078;
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FEFAF6 0%, #F5EDE3 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.specialty-card:hover .specialty-icon {
    background: linear-gradient(135deg, #8E8078 0%, #62422D 100%);
    transform: scale(1.1) rotate(5deg);
}

.specialty-icon svg {
    color: #8E8078;
    transition: all 0.4s ease;
}

.specialty-card:hover .specialty-icon svg {
    color: #fff;
}

.specialty-card h3 {
    font-size: 22px;
    color: #62422D;
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.specialty-card:hover h3 {
    color: #8E8078;
}

.specialty-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.specialty-link {
    color: #8E8078;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.specialty-link svg {
    transition: transform 0.3s ease;
}

.specialty-link:hover {
    color: #62422D;
    gap: 12px;
}

.specialty-link:hover svg {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .specialties-header h2 {
        font-size: 36px;
    }
    
    .specialties-intro-section {
        padding: 60px 0;
    }
    
    .specialties-grid-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .specialties-intro-section {
        padding: 50px 0;
    }
    
    .specialties-grid-section {
        padding: 60px 0;
    }
    
    .specialties-header h2 {
        font-size: 32px;
    }
    
    .specialties-description {
        font-size: 16px;
    }
    
    .specialty-card {
        padding: 35px 28px;
    }
    
    .specialty-card h3 {
        font-size: 20px;
    }
}

/* Terms and Services Page Styles */
.terms-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-item {
    margin-bottom: 40px;
}

.terms-item h2 {
    font-size: 32px;
    color: #62422D;
    margin-bottom: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid #8E8078;
}

.terms-item h3 {
    font-size: 22px;
    color: #62422D;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-item p:last-child {
    margin-bottom: 0;
}

.terms-item a {
    color: #8E8078;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-item a:hover {
    color: #62422D;
}

.terms-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEFAF6 0%, #F5EDE3 100%);
}

.terms-cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(98, 66, 45, 0.1);
}

.terms-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8E8078 0%, #62422D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.terms-cta-icon svg {
    color: #fff;
}

.terms-cta-card h2 {
    font-size: 28px;
    color: #62422D;
    margin-bottom: 15px;
    font-weight: 700;
}

.terms-cta-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.terms-cta-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-content-section {
        padding: 60px 0;
    }
    
    .terms-cta-section {
        padding: 60px 0;
    }
    
    .terms-item h2 {
        font-size: 28px;
    }
    
    .terms-item h3 {
        font-size: 20px;
    }
    
    .terms-cta-card {
        padding: 40px 30px;
    }
    
    .terms-cta-card h2 {
        font-size: 24px;
    }
}

/* Privacy Policy Lists */
.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.privacy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8E8078;
    font-weight: 700;
    font-size: 18px;
}

.privacy-list li strong {
    color: #62422D;
    font-weight: 600;
}
