/* Configurações base */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 80px; /* Compensa o header */
   }


/* Camada de fundo (consultório/sorriso) */
.hero__background {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
}

/* Container da Dra. - controle preciso */
.hero__dra-container {
    position: absolute;
    right: 8%;
    bottom: 0;
    width: 40%;
    max-width: 600px;
    z-index: 2;
    transform: translateY(0);
}

.hero__dra-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2)); /* Sombra externa realista */
    /* Remova border-radius e clip-path se usar PNG transparente */
}

/* Conteúdo textual */
.hero__content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-left: 10%;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}


/* Responsividade */
@media (max-width: 1200px) {
    .hero__dra-container {
        right: 5%;
        width: 45%;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .hero__dra-container {
        position: relative;
        right: auto;
        width: 60%;
        margin-bottom: -50px; /* Sobreposição controlada */
    }
    
    .hero__content {
        margin-left: 0;
        padding: 30px;
        text-align: center;
        background: rgba(42, 44, 45, 0.7);
        backdrop-filter: blur(5px);
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__dra-container {
        width: 80%;
    }
}

/* EFEITO PRATA METÁLICO NOS TEXTOS */
.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color:#f5f5f5;
    /* Gradiente metálico
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(230, 230, 230, 0.95) 25%,
        rgba(236, 236, 236, 0.9) 50%,
        rgba(230, 230, 230, 0.95) 75%,
        rgba(255, 255, 255, 0.9) 100%
    
        -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 6px rgba(0, 0, 0, 0.1);*/
    position: relative;
    display: inline-block;
}

/* Brilho adicional (opcional) */
.hero__title::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    
    z-index: -1;
    border-radius: 50%;
    opacity: 0.6;
}

/* Efeito para o subtítulo */
.hero__subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    /* Versão mais suave do efeito 
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(248, 248, 248, 0.85) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.15);*/
    color:#f5f5f5;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
        /* Efeito mais discreto em mobile */
        
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
}

