/* --- 1. SETUP GERAL E FUNDO --- */
.hero-elegant-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;

    background-image: url('/assets/img/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cta-button{
   gap: .5rem;
   display: flex;
   align-items: center;
   justify-content: center;
}
/* Overlay escuro */
.hero-elegant-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 30, 0.92),
        rgba(10, 15, 30, 0.85)
    );
    z-index: 1;
}

.hero-elegant-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

/* --- 2. TIPOGRAFIA --- */
.greeting-text {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #b8c6d9;
    text-transform: uppercase;
}

/* Nome com efeito premium tech */
.elegant-name {
    white-space: nowrap; 
    font-size: 4.2em; 
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;

    background: linear-gradient(90deg, #00eaff, #0078ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 18px rgba(0, 160, 255, 0.35);
}

/* Sobrenome com brilho suave */
.elegant-name .last-name {
    text-shadow: 0 0 16px rgba(0, 160, 255, 0.4);
}

/* Profissão */
.elegant-role {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 1px;
}

.highlight-role {
    color: #00eaff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.8);
}

/* --- 3. ÍCONES SOCIAIS --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00eaff;
    font-size: 1.4em;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 230, 255, 0.3);
}

.social-link:hover {
    background-color: rgba(0, 230, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.85);
    transform: translateY(-4px) scale(1.05);
}

/* --- 4. BOTÃO --- */
.btn-elegant-quote,.cta-button {
    padding: 18px 50px;
    background: linear-gradient(45deg, #00c6ff, #006eff);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25em;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.5);
}

.btn-elegant-quote:hover, .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 114, 255, 0.7);
    background: linear-gradient(45deg, #007eff, #00c6ff);
}
 #btn-elegant{
    margin-top: 3rem !important;
 }
/* Animação de Fade-in e Slide Up */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container do Conteúdo para garantir que a animação comece no carregamento */
.hero-elegant-content {
    /* Opcional: Garante que nada está visível antes da animação */
    opacity: 1; 
    visibility: visible;
}

/* 1. Animação para o 'Olá, eu sou' */
.hero-elegant-section .greeting-text {
    animation: fadeInSlideUp 0.8s ease-out 0.2s forwards; /* 0.2s delay */
    opacity: 0;
}

/* 2. Animação para o Nome Principal */
.hero-elegant-section .elegant-name {
    animation: fadeInSlideUp 0.8s ease-out 0.4s forwards; /* 0.4s delay */
    opacity: 0;
}

/* 3. Animação para a Função Full-Stack */
.hero-elegant-section .elegant-role {
    animation: fadeInSlideUp 0.8s ease-out 0.6s forwards; /* 0.6s delay */
    opacity: 0;
}

/* 4. Animação para os Ícones Sociais (Parent Container) */
.hero-elegant-section .social-icons {
    /* Não aplicamos a animação aqui, mas sim em cada link para o efeito escalonado */
}

/* 4.1. Animação escalonada para cada Ícone */
.hero-elegant-section .social-icons .social-link {
    display: inline-block; /* Importante para o transform e a animação */
    opacity: 0;
    animation: popIn 0.5s ease-out forwards;
}

/* Atrasos individuais para o efeito escalonado */
.hero-elegant-section .social-icons .social-link:nth-child(1) {
    animation-delay: 1.0s;
}
.hero-elegant-section .social-icons .social-link:nth-child(2) {
    animation-delay: 1.1s;
}
.hero-elegant-section .social-icons .social-link:nth-child(3) {
    animation-delay: 1.2s;
}
.hero-elegant-section .social-icons .social-link:nth-child(4) {
    animation-delay: 1.3s;
}
.hero-elegant-section .social-icons .social-link:nth-child(5) {
    animation-delay: 1.4s;
}
.hero-elegant-section .greeting-text {
    font-family: 'Montserrat', sans-serif; /* Ou 'Raleway' */
    font-size: 1.8em; 
    font-weight: 300; /* Peso leve */
    letter-spacing: 0.2em; /* Adiciona espaçamento entre as letras */
    color: var(--primary-color);
    /* Manter animação */
    animation: fadeInSlideUp 0.8s ease-out 0.2s forwards; 
    opacity: 0;
}

/* 5. Animação para o Botão CTA */
.hero-elegant-section .btn-elegant-quote,.cta-button  {
    animation: fadeInSlideUp 0.8s ease-out 1.5s forwards; /* 1.5s delay */
    opacity: 0;
}
/* Animação para Ícones Sociais (escalonado) */
@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* Adicione estas classes ao seu arquivo de estilos */

.promo-section {
    padding: 60px 0;
    background-color: var(--background-secondary-color); /* Uma cor que destaque */
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Espaço entre o texto e a imagem */
}

.promo-text {
    flex: 1;
}

.promo-image {
    flex: 1;
    max-width: 450px; /* Limite o tamanho da imagem */
    text-align: center;
}

.promo-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.destaque-gratis {
    background-color: #e6f7ff; /* Um fundo claro para o destaque */
    border-left: 5px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.destaque-gratis h3 {
    color:black;
    margin-top: 0;
    font-size: 1.5em;
    
}
.destaque-gratis p {
    color:rgb(76, 76, 76);
    margin-top: 0;
    font-size: 1.5em;
    
}

.highlight {
    font-weight: bold;
    color: var(--secondary-color); /* Uma cor forte para chamar atenção */
}


#templetes{
    padding-top: 3.5rem;
}
 
/* Responsividade básica */
@media (max-width: 900px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-image {
        max-width: 100%;
        margin-top: 30px;
    }


    
}

/* --- 5. RESPONSIVIDADE --- */
@media (max-width: 1200px) {
    .elegant-name { font-size: 3.6em; letter-spacing: 3px; }
}

@media (max-width: 991px) {
    .elegant-name { font-size: 3em; }
    .elegant-role { font-size: 1.3em; }
}

@media (max-width: 767px) {
.btn-elegant-quote,.cta-button  {
    white-space: nowrap;          /* Não quebra linha */
    display: inline-block;        /* Garante comportamento correto */
    max-width: 100%;              /* Evita estourar no mobile */
    padding: 14px 32px;           /* Um pouco menor */
    background: linear-gradient(45deg, #00c6ff, #006eff);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.5);
}

.cta-button{
   gap: .5rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* --- MOBILE — otimiza ainda mais --- */
@media (max-width: 480px) {
    .btn-elegant-quote,.cta-button  {
        padding: 12px 24px;   /* Menor ainda */
        font-size: 1em;       /* Reduz um pouco */
        max-width: fit-content;
    }
}

    .elegant-name { font-size: 2.5em; letter-spacing: 1px; }
    .elegant-role { font-size: 1.1em; }
}
.cta-button{
   gap: .5rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

@media (max-width: 480px) {
    .elegant-name { 
        font-size: 2em; 
        white-space: normal; 
    }
    .elegant-role { font-size: 1em; }
}
