/* Variables de Color */
:root {
    --pink-brand: #ff2a70;
    --pink-light: #ffeef3;
    --text-dark: #111111;
    --text-gray: #555555;
    --bg-gray: #f8f9fa;
    --bg-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Barra Superior */
.top-bar {
    background-color: var(--pink-light);
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

/* Navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-logo-img { height: 70px; object-fit: contain; }

.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--pink-brand); }

.nav-icons { display: flex; gap: 20px; font-size: 22px; }
.icon-link { color: var(--text-dark); text-decoration: none; }
.icon-link.pink-icon, .icon-link:hover { color: var(--pink-brand); }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 6%;
}

.hero-text h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-text .script-text { font-family: 'Dancing Script', cursive; color: var(--pink-brand); font-size: 4.8rem; }
.hero-text p { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 40px; }

.hero-buttons { display: flex; gap: 15px; }
.btn { padding: 14px 28px; border-radius: 30px; font-weight: 600; text-decoration: none; display: flex; gap: 10px; }
.btn-solid { background-color: var(--pink-brand); color: white; border: 2px solid var(--pink-brand); }
.btn-outline { background-color: white; color: var(--pink-brand); border: 2px solid var(--pink-brand); }

.hero-image img { width: 600px; max-width: 100%; object-fit: contain; }

/* Barra de Beneficios */
.features-wrapper { padding: 0 6%; margin-bottom: 60px; }
.features-bar {
    display: flex; justify-content: space-between; align-items: center;
    background-color: var(--bg-gray); padding: 30px 50px; border-radius: 15px;
}
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-item i { font-size: 32px; color: var(--pink-brand); }
.feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--text-gray); }

/* Botones Flotantes */
.floating-wa {
    position: fixed; bottom: 30px; left: 30px;
    background-color: #25d366; color: white; padding: 12px 22px;
    border-radius: 30px; text-decoration: none; font-weight: bold; display: flex; gap: 10px;
}
.floating-ig {
    position: fixed; bottom: 30px; right: 30px;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: white;
    width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 28px; text-decoration: none;
}