
/* Reset e Base */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    color: #4A443F;
}

/* Glassmorphism para o Header */
.glass {
    background: rgba(242, 235, 223, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(211, 197, 182, 0.4);
}

/* Animações de Revelação Melhores */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Botão Agendar Consulta - Moldura Marrom Escuro Preenchida Arredondada */
.btn-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem !important;
    background-color: #4A443F !important; /* Marrom escuro preenchido */
    color: #ffffff !important;
    border: 3px solid #38322D !important; /* Moldura em marrom ainda mais escuro para destaque */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none !important;
    border-radius: 50px; /* Formato arredondado solicitado */
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #5C554E !important; 
    border-color: #4A443F !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 68, 63, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(74, 68, 63, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #8C7E6E;
    color: #8C7E6E;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px; /* Consistência com o botão principal */
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8C7E6E;
    color: #ffffff;
}

/* Links do Menu */
.nav-link {
    color: #8C7E6E;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: #8C7E6E;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #4A443F;
}

/* Cards com Vidro */
.card-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(211, 197, 182, 0.3);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -15px rgba(140, 126, 110, 0.15);
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F2EBDF;
}
::-webkit-scrollbar-thumb {
    background: #D3C5B6;
    border-radius: 20px;
}
