* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e91e63;
    --secondary-color: #c2185b;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --overlay-color: rgba(0, 0, 0, 0.6);
}

/* Fondo romántico */
body {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #ff9a9e 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Corazones flotantes (animación) */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.heart {
    position: fixed;
    font-size: 2rem;
    color: #e91e63;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.heart:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.heart:nth-child(2) { top: 20%; left: 30%; animation-delay: 2s; }
.heart:nth-child(3) { top: 30%; left: 50%; animation-delay: 4s; }
.heart:nth-child(4) { top: 40%; left: 70%; animation-delay: 6s; }
.heart:nth-child(5) { top: 50%; left: 90%; animation-delay: 8s; }

/* Mejoras en los colores */
.navbar {
    background: rgba(233, 30, 99, 0.95);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}

.hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Iconos de corazones */
.service-card i {
    color: #e91e63;
}

.service-card i.fa-wifi { color: #ff9a9e; }
.service-card i.fa-snowflake { color: #ff9a9e; }
.service-card i.fa-tv { color: #ff9a9e; }
.service-card i.fa-music { color: #ff9a9e; }
.service-card i.fa-glass-martini-alt { color: #ff9a9e; }
.service-card i.fa-utensils { color: #ff9a9e; }
.service-card i.fa-clock { color: #ff9a9e; }
.service-card i.fa-lock { color: #ff9a9e; }

/* Botón de contacto más romántico */
.btn-primary {
    background: linear-gradient(45deg, #e91e63, #c2185b);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

/* Añadir corazones flotantes */
.heart {
    position: fixed;
    font-size: 2rem;
    color: #e91e63;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.heart:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.heart:nth-child(2) { top: 20%; left: 30%; animation-delay: 2s; }
.heart:nth-child(3) { top: 30%; left: 50%; animation-delay: 4s; }
.heart:nth-child(4) { top: 40%; left: 70%; animation-delay: 6s; }
.heart:nth-child(5) { top: 50%; left: 90%; animation-delay: 8s; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--dark-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #ff9a9e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Corazones flotantes en el hero */
.hero::before {
    content: "❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    animation: floatHearts 25s infinite linear;
    line-height: 1.5;
}

@keyframes floatHearts {
    0% {
        transform: translateY(-100px) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(15deg);
    }
    100% {
        transform: translateY(100px) rotate(0deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-in;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #e91e63, #c2185b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 1.2s;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #c2185b, #a01545);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.6);

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 1.2s;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-color);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover

/* Precios */
.pricing {
    padding: 80px 0;
    background: #fff;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pricing-card {
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    margin: 0;
    text-align: center;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    padding: 10px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card ul li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card a {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: bold;
}

.pricing-card a:hover {
    background: var(--secondary-color);
}

/* Botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Animación de pulso para el botón */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive - Botón WhatsApp en móviles */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}