/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e8e1d4;
    background: #1a1612;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #c7b99c;
}

.highlight {
    background: linear-gradient(135deg, #d4af37, #f4e971);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #f4e971);
    border-radius: 2px;
    opacity: 0.3;
}

/* ========================================
   CONTAINERS & LAYOUT
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #a69080;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary, .btn-secondary, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a1612;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4e971, #d4af37);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: rgba(139, 115, 85, 0.8);
    color: #e8e1d4;
    border-color: rgba(139, 115, 85, 0.5);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
    transform: translateY(0);
}

.btn-secondary:hover {
    background: rgba(163, 146, 109, 0.9);
    border-color: rgba(139, 115, 85, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.btn-secondary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
}



.btn-submit {
    background: linear-gradient(145deg, #f4e971, #d4af37);
    color: #1a1612;
    border-color: #b8941f;
    width: 100%;
    justify-content: center;
    box-shadow: 
        0 6px 0 #b8941f,
        0 10px 20px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 0 #b8941f,
        0 14px 25px rgba(212, 175, 55, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-submit:active {
    transform: translateY(3px);
    box-shadow: 
        0 3px 0 #b8941f,
        0 6px 15px rgba(212, 175, 55, 0.3),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 22, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 22, 18, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin: 0;
    font-size: 1.8rem;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #a69080;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e8e1d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e8e1d4;
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: #1a1612; /* Simplificado temporariamente */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d4af37" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    opacity: 0.3;
    display: none; /* Temporário para debug */
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: #e8e1d4;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #c7b99c;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.feature-item i {
    color: #d4af37;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
    justify-content: flex-start;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    flex: 0 1 auto;
    min-width: 180px;
}

.hero-image {
    position: relative !important;
    height: 500px !important;
    overflow: visible !important;
    background: none !important;
    z-index: 100 !important;
}

.profile-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    position: relative !important;
    z-index: 999 !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 5px 20px rgba(212, 175, 55, 0.1) !important;
    background: none !important;
    opacity: 1 !important;
    display: block !important;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            90deg,
            rgba(26, 22, 18, 0.9) 0%,
            rgba(26, 22, 18, 0.4) 10%,
            rgba(26, 22, 18, 0.1) 25%,
            transparent 40%,
            transparent 60%,
            rgba(26, 22, 18, 0.1) 75%,
            rgba(26, 22, 18, 0.4) 90%,
            rgba(26, 22, 18, 0.9) 100%
        );
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    display: none; /* Temporariamente desabilitado para debug */
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(
            circle at center,
            transparent 30%,
            rgba(26, 22, 18, 0.3) 60%,
            rgba(26, 22, 18, 0.8) 100%
        );
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    display: none; /* Temporariamente desabilitado para debug */
}

/* Elementos do consultório removidos - agora usando imagem real */

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    color: #d4af37;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
        #1a1612;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.profile-frame {
    position: relative;
    background: linear-gradient(135deg, #2a241e, #1a1612);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
}

.profile-photo {
    width: 200px !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px !important;
    margin: 0 auto 2rem !important;
    border: 4px solid #d4af37 !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    z-index: 10 !important;
    background: none !important;
}

.profile-photo::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: radial-gradient(circle, rgba(244, 233, 113, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: none; /* Desabilitado para mostrar a imagem real */
}

.credentials h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.credentials p {
    color: #a69080;
    margin: 0;
}

.about-text {
    padding-left: 2rem;
}

.about-text h2 {
    margin-bottom: 2rem;
    color: #e8e1d4;
}

.lead {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-journey p {
    margin-bottom: 1.5rem;
    color: #c7b99c;
    line-height: 1.8;
}

.philosophy {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 15px;
    border-left: 4px solid #d4af37;
}

.philosophy blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: #e8e1d4;
}

.philosophy cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
}

/* ========================================
   SPECIALIZATIONS SECTION
======================================== */
.specializations {
    padding: 8rem 0;
    background: #1a1612;
}

.historical-context {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.context-card {
    background: 
        linear-gradient(135deg, rgba(42, 36, 30, 0.8), rgba(26, 22, 18, 0.9));
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.context-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #f4e971);
    border-radius: 0 0 15px 15px;
}

.context-card h4 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.context-card p {
    color: #c7b99c;
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .specializations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.spec-card {
    background: 
        linear-gradient(135deg, rgba(42, 36, 30, 0.8), rgba(26, 22, 18, 0.9));
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(139, 115, 85, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4e971);
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.spec-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4e971);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.spec-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #d4af37, #f4e971);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.spec-icon i {
    font-size: 2rem;
    color: #1a1612;
}

.spec-card h3 {
    color: #e8e1d4;
    margin-bottom: 0.5rem;
}

.spec-card h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.spec-card p {
    color: #c7b99c;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.spec-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spec-features span {
    display: flex;
    align-items: center;
    color: #a69080;
    font-size: 0.9rem;
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        #1a1612;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: rgba(42, 36, 30, 0.6);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(139, 115, 85, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #f4e971);
    border-radius: 0 0 15px 15px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(42, 36, 30, 0.8);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 233, 113, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #d4af37;
}

.benefit-card h3 {
    color: #e8e1d4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #c7b99c;
    line-height: 1.7;
    margin: 0;
}

.transformation-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: 
        linear-gradient(135deg, rgba(42, 36, 30, 0.8), rgba(26, 22, 18, 0.9));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.transformation-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.transformation-quote blockquote {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e8e1d4;
    margin: 0;
}

.transformation-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #d4af37;
    font-weight: 600;
}

/* ========================================
   SOCIAL MEDIA SECTION
======================================== */
.social-section {
    padding: 8rem 0;
    background: #1a1612;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: 
        linear-gradient(135deg, rgba(42, 36, 30, 0.8), rgba(26, 22, 18, 0.9));
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.social-icon i {
    font-size: 2rem;
    color: #1a1612;
}

.social-card h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: #c7b99c;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-card p:nth-child(4) {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-social {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a1612;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    color: #1a1612;
}



/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(42, 36, 30, 0.3) 0%, transparent 50%),
        #1a1612;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: #e8e1d4;
}

.contact-lead {
    font-size: 1.2rem;
    color: #c7b99c;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(42, 36, 30, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(139, 115, 85, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(42, 36, 30, 0.7);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e971);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: #1a1612;
}

.method-info h4 {
    color: #e8e1d4;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.method-info p {
    color: #a69080;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.method-info a,
.method-info span {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

.method-info a:hover {
    color: #f4e971;
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-form {
    background: 
        linear-gradient(135deg, rgba(42, 36, 30, 0.8), rgba(26, 22, 18, 0.9));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 115, 85, 0.3);
}

.contact-form h3 {
    color: #e8e1d4;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 22, 18, 0.8);
    border: 2px solid rgba(139, 115, 85, 0.3);
    border-radius: 10px;
    color: #e8e1d4;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #a69080;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    color: #d4af37;
    font-size: 0.8rem;
    background: #1a1612;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: 
        linear-gradient(135deg, rgba(26, 22, 18, 0.95), rgba(42, 36, 30, 0.8));
    border-top: 1px solid rgba(139, 115, 85, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #a69080;
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    color: #e8e1d4;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #c7b99c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-social h4 {
    color: #e8e1d4;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(139, 115, 85, 0.2);
    border-radius: 8px;
    color: #d4af37;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.3);
}

.social-links a:hover {
    background: #d4af37;
    color: #1a1612;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(139, 115, 85, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a69080;
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 12px;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablets (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-buttons {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        min-width: 190px;
        max-width: 220px;
    }
}

/* Mobile e Tablets pequenos (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 22, 18, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        height: 300px;
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        min-width: 180px;
        flex: 1 1 auto;
        max-width: 250px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .specializations-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    

    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .specializations,
    .benefits,
    .social-section,
    .contact {
        padding: 6rem 0;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS & INTERACTIONS
======================================== */
@media (prefers-reduced-motion: no-preference) {
    .hero-image {
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    .spec-card:hover .spec-icon {
        animation: rotate 0.5s ease-in-out;
    }
    
    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
}

/* ========================================
   ACCESSIBILITY
======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .highlight {
        background: #ffffff;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .btn-primary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
    
    .btn-secondary {
        border-color: #ffffff;
        color: #ffffff;
    }
}