@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f5f0, #e9e2d8);
    color: #2d2d2d;
    scroll-behavior: smooth;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 600;
    letter-spacing: 2px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.navbar a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 400;
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: #c8b6a6;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* SECTIONS */

.section {
    padding: 120px 10%;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 60px;
    font-weight: 500;
}

/* HERO */

.hero {
    position: relative;
    height: 100vh;
    background: url('hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    color: white;
}
.hero-content .btn {
    margin-top: 40px;
}


/* GLASS EFFECT */

.glass {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

/* SERVICES */

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    width: 280px;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* FORM */

.form {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input {
    padding: 14px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.7);
}

input:focus {
    background: rgba(255,255,255,0.95);
}

/* BUTTON */

.btn {
    padding: 14px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #d6c6b8, #bfae9f);
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* SCROLL REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
}

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

/* MOBILE */

@media (max-width: 768px) {

    .navbar ul {
        gap: 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 80px 6%;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 320px;
    }

    .form {
        width: 100%;
    }
}
/* BRAND PREMIUM */

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    font-size: 1.6rem;
    letter-spacing: 2px;
    font-weight: 500;
}

/* LOGO */

.lotus {
    width: 70px;
    height: 45px;
    transition: 0.5s ease;
}

.lotus svg {
    width: 100%;
    height: 100%;
}

.petal {
    transition: transform 0.7s cubic-bezier(.4,0,.2,1), 
                filter 0.7s ease;
    filter: drop-shadow(0 0 5px rgba(212,175,55,0.4));
}

/* Micro apertura elegante */

.brand:hover .top {
    transform: translateY(-4px);
}

.brand:hover .left-top {
    transform: translateX(-6px);
}

.brand:hover .right-top {
    transform: translateX(6px);
}

.brand:hover .left-bottom {
    transform: translateX(-8px);
}

.brand:hover .right-bottom {
    transform: translateX(8px);
}

/* Glow premium */

.brand:hover .petal {
    filter: drop-shadow(0 0 14px rgba(212,175,55,0.95));
}
.hero-logo {
    width: 140px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-logo svg {
    width: 100%;
    height: auto;
}

.hero-logo .petal {
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
}
/* HERO LOGO GRANDE */

.hero-logo {
    width: 150px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

.hero-logo svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212,175,55,0.5));
}
