/* ============================================
   RESET E VARIÁVEIS DE CORES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-rosa-nude-claro: #F7E7E9;
    --color-rosa-pastel: #EBC7CC;
    --color-rosa-antigo: #D8A5AD;
    --color-rosa-queimado: #C88F97;
    --color-bege-claro: #F3E6E8;
    --color-marrom-escuro: #6b4423;
    --color-text-cinza: #a8a8a8;
    --color-white: #ffffff;
    
    --font-logo: 'Great Vibes', cursive;
    --font-titulo: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--font-body);
    color: var(--color-marrom-escuro);
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background da Hero */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.95) saturate(1.1);
}

/* Overlay com gradiente */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(247, 231, 233, 0.4) 0%,
        rgba(243, 230, 232, 0.3) 50%,
        rgba(243, 230, 232, 0.2) 100%
    );
    z-index: 2;
}

/* ============================================
   BARRA DE NAVEGAÇÃO
   ============================================ */

.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.logo {
    font-family: var(--font-logo);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-marrom-escuro);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-marrom-escuro);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--color-rosa-queimado);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-rosa-antigo);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.btn-schedule-nav {
    background: var(--color-rosa-queimado);
    color: var(--color-white);
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-schedule-nav:hover {
    background: var(--color-rosa-antigo);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 143, 151, 0.3);
}

/* ============================================
   CONTEÚDO PRINCIPAL DO HERO
   ============================================ */

.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 3rem;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.hero-title {
    font-family: var(--font-titulo);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-marrom-escuro);
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-text-cinza);
    line-height: 1.6;
    max-width: 400px;
}

/* Botão de Agendamento Principal */
.btn-schedule-main {
    background: var(--color-rosa-queimado);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: var(--font-body);
}

.btn-schedule-main:hover {
    background: var(--color-rosa-antigo);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 143, 151, 0.4);
}

.btn-schedule-main:active {
    transform: translateY(-1px);
}

/* ============================================
   ÍCONES DE REDES SOCIAIS
   ============================================ */

.hero-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--color-marrom-escuro);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    color: var(--color-rosa-queimado);
    background: rgba(200, 143, 151, 0.1);
    border-color: var(--color-rosa-queimado);
    transform: scale(1.1);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.btn-schedule-main,
.hero-social {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.btn-schedule-main {
    animation-delay: 0.6s;
}

.hero-social {
    animation-delay: 0.8s;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1200px) {
    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .navbar {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        width: 100%;
        padding: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-item {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .btn-schedule-nav {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .navbar {
        flex-direction: row;
        gap: 0.5rem;
        padding: 1rem 1rem;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.2rem;
        flex: 0 0 auto;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        z-index: 100;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .btn-schedule-nav {
        order: auto;
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 1.5rem 1rem;
        min-height: 60vh;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-schedule-main {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        width: auto;
    }

    .hero-social {
        gap: 0.8rem;
    }

    .social-icon {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        gap: 0.3rem;
        padding: 0.7rem 0.8rem;
        justify-content: space-between;
    }

    .logo {
        font-size: 0.95rem;
        flex: 1 1 auto;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        z-index: 100;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        font-size: 0.65rem;
        text-align: left;
        padding: 0.4rem 0;
    }

    .btn-schedule-nav {
        font-size: 0.6rem;
        padding: 0.5rem 0.8rem;
        flex-shrink: 0;
    }

    .hero {
        background-image: linear-gradient(135deg, rgba(247, 231, 233, 0.4) 0%, rgba(243, 230, 232, 0.2) 100%);
    }

    .hero-content {
        min-height: 70vh;
        padding: 1rem 0.8rem;
    }

    .hero-text {
        max-width: 100%;
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .btn-schedule-main {
        padding: 0.7rem 1.3rem;
        font-size: 0.7rem;
        width: auto;
    }

    .hero-social {
        gap: 0.6rem;
    }

    .social-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
}
