* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: auto 100%;
    background-position: center top;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    background-color: #2a1f3d;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
    perspective: 1000px;
}

.logo {
    width: 200px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4),
                0 0 50px rgba(255, 182, 193, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.info {
    margin-bottom: 30px;
}

.info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(255, 182, 193, 0.3);
}

.subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery {
    margin: 40px 0;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #ffb6c1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(255, 182, 193, 0.2));
    pointer-events: none;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button .icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.whatsapp {
    background: linear-gradient(135deg, #e8b4b8 0%, #d4838f 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 131, 143, 0.4);
    border: none;
}

.whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 131, 143, 0.5);
}

.instagram {
    background: linear-gradient(135deg, #deb3a0 0%, #c9a18a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(201, 161, 138, 0.4);
    border: none;
}

.instagram:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(201, 161, 138, 0.5);
}

.location {
    background: linear-gradient(135deg, #c9b1d4 0%, #a88fbc 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(168, 143, 188, 0.4);
    border: none;
}

.location:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(168, 143, 188, 0.5);
}

.services {
    margin-top: 40px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.service-item {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.8) 0%, rgba(212, 131, 143, 0.8) 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 131, 143, 0.3);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 131, 143, 0.4);
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    body {
        background-size: auto 100%;
        background-position: center top;
        background-attachment: scroll;
    }

    .container {
        padding: 20px 15px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .logo {
        width: 120px;
        height: auto;
    }

    .info {
        margin-bottom: 25px;
    }

    .info h1 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .links {
        margin: 20px 0;
        gap: 12px;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 0.9rem;
        border-radius: 30px;
    }

    .link-button .icon {
        width: 20px;
        height: 20px;
    }

    footer {
        margin-top: 30px;
        padding-top: 15px;
    }

    footer p {
        font-size: 0.7rem;
    }

    .services {
        margin-top: 30px;
        padding: 20px 15px;
    }

    .services h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .service-item {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 60px 30px;
    }

    .logo {
        width: 200px;
        height: 200px;
    }

    .info h1 {
        font-size: 2.4rem;
    }
}
