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

:root {
    --primary-pink: #ff6b9d;
    --primary-orange: #ff9a56;
    --primary-purple: #b85ac7;
    --primary-teal: #5eb3b3;
    --sky-blue: #5EB3D6;
    --light-purple: #e8d5f2;
    --light-pink: #ffb3d9;
    --dark-text: #2d2d2d;
    --light-bg: #f8f4ff;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #ff6b9d 0%, #ff9a56 50%, #ffb3d9 100%);
    --gradient-secondary: linear-gradient(135deg, #b85ac7 0%, #ff6b9d 100%);
    --gradient-instagram: linear-gradient(135deg, #5EB3D6 0%, #b85ac7 25%, #ff6b9d 50%, #ff9a56 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.lang-toggle {
    padding: 10px 20px;
    border: 2px solid var(--primary-pink);
    background: var(--white);
    color: var(--primary-pink);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.lang-toggle:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.lang-toggle.es {
    background: var(--gradient-main);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 70px;
    padding: 80px 0;
    background: var(--gradient-instagram);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.floating-ball {
    position: relative;
    width: 280px;
    height: 280px;
    animation: float 3s ease-in-out infinite;
}

.ball-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #ff9a56);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    position: relative;
}

.ball-inner::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(15px);
}

.ball-face {
    font-size: 150px;
    z-index: 2;
}

.ball-animation {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.7;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 20px;
    left: 30px;
    animation-delay: 0s;
    width: 15px;
    height: 15px;
}

.sparkle-2 {
    top: 80px;
    right: 50px;
    animation-delay: 0.7s;
    width: 12px;
    height: 12px;
}

.sparkle-3 {
    bottom: 40px;
    right: 20px;
    animation-delay: 1.4s;
    width: 18px;
    height: 18px;
}

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

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* ============================================
   CLEANING SERVICES SECTION
   ============================================ */
.cleaning-service {
    padding: 100px 0;
    background: var(--white);
}

.cleaning-service.deep-cleaning {
    background: linear-gradient(135deg, rgba(94, 179, 214, 0.05) 0%, rgba(184, 90, 199, 0.05) 100%);
}

.cleaning-service.premium-cleaning {
    background: linear-gradient(135deg, rgba(184, 90, 199, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
}

.cleaning-service.packing-moving {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 154, 86, 0.05) 100%);
}

.cleaning-service h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 50px;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.card-subtitle {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    color: var(--primary-pink);
}

.currency {
    font-size: 24px;
}

.plus {
    font-size: 20px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    min-height: auto;
}

.pricing-features li {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
}

.pricing-features i {
    color: var(--primary-pink);
    margin-right: 10px;
    font-weight: bold;
}

/* ============================================
   ADD-ON SERVICES SECTION
   ============================================ */
.addon-services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
}

.addon-services h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.addon-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
}

.addon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.addon-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.addon-price {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.addon-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.addon-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(94, 179, 214, 0.1) 0%, rgba(184, 90, 199, 0.1) 100%);
}

.trust-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 60px;
    font-size: 18px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.trust-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   FORMULARIO SECTION
   ============================================ */
.formulario-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(184, 90, 199, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
}

.formulario-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.formulario-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 50px;
    font-size: 18px;
}

.formulario {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 15px;
}

.form-group label i {
    color: var(--primary-pink);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.paquete-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-radio {
    position: relative;
}

.option-radio input {
    display: none;
}

.option-label {
    display: block;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background: var(--white);
}

.option-radio input:checked + .option-label {
    background: var(--gradient-main);
    color: var(--white);
    border-color: transparent;
}

.option-radio:hover .option-label {
    border-color: var(--primary-pink);
}

.servicios-checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.option-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.option-checkbox input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.option-checkbox input:checked {
    background: var(--gradient-main);
    border-color: transparent;
}

.option-checkbox input:checked::after {
    content: '✓';
    position: absolute;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    left: 5px;
}

.option-checkbox span {
    font-size: 14px;
    color: #666;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ============================================
   CONTACTO SECTION
   ============================================ */
.contacto {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 154, 86, 0.05) 100%);
}

.contacto h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacto-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contacto-left {
    display: contents;
}

.contacto-grid {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contacto-right {
    grid-column: 2;
}

.contacto-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.contacto-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.contacto-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contacto-card p {
    margin-bottom: 10px;
}

.contacto-card a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contacto-card a:hover {
    color: var(--primary-orange);
}

.contacto-card small {
    color: #999;
    display: block;
}

/* ============================================
   GOOGLE MAPS & MAP BUTTONS
   ============================================ */
.maps-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    background: #e0e0e0;
}

.map-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

/* ============================================
   FLOATING BUBBLES
   ============================================ */
.floating-bubbles {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--white);
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.phone-btn {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
}

.instagram-btn {
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}

.whatsapp-btn {
    background: #25d366;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: var(--light-pink);
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: var(--white);
}

/* ============================================
   CARRUSEL SERVICIOS (SOLO MÓVIL)
   ============================================ */
.carousel-wrapper {
    position: relative;
}

.carousel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.carousel-controls {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    background: var(--white);
    color: var(--primary-pink);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
}

/* ============================================
   CALENDLY WIDGET
   ============================================ */
.calendly-widget-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.1);
}

.calendly-inline-widget {
    border-radius: 15px !important;
}

/* ============================================
   PAYMENT METHODS SECTION
   ============================================ */
.payment-methods {
    background: linear-gradient(135deg, #3d2854 0%, #2a1e40 100%);
    color: var(--white);
    padding: 80px 0;
}

.payment-methods h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.payment-methods-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.payment-icon i {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.2);
    border-radius: 50%;
    color: var(--light-pink);
}

.payment-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 600;
}

.payment-note i {
    font-size: 24px;
    color: var(--light-pink);
}

/* ============================================
   HOW WE WORK SECTION
   ============================================ */
.how-we-work {
    background: linear-gradient(135deg, #2a1e40 0%, #1a0f2e 100%);
    color: var(--white);
    padding: 80px 0;
}

.how-we-work h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.how-we-work-list {
    max-width: 600px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.work-item i {
    color: var(--primary-pink);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.work-tagline {
    text-align: center;
    background: rgba(255, 107, 157, 0.15);
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.work-tagline p {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-pink);
}

/* ============================================
   MENÚ TELÉFONO FLOTANTE
   ============================================ */
.phone-menu-container {
    position: relative;
}

.phone-menu {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 220px;
}

.phone-menu.active {
    display: flex;
    flex-direction: column;
}

.phone-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--primary-pink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.phone-option:last-child {
    border-bottom: none;
}

.phone-option:hover {
    background: var(--light-pink);
    padding-left: 24px;
}

.phone-option i {
    font-size: 16px;
}

/* ============================================
   MENÚ WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-menu-container {
    position: relative;
}

.whatsapp-menu {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 220px;
}

.whatsapp-menu.active {
    display: flex;
    flex-direction: column;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #25d366;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.whatsapp-option:last-child {
    border-bottom: none;
}

.whatsapp-option:hover {
    background: #e8f5e9;
    padding-left: 24px;
}

.whatsapp-option i {
    font-size: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    /* Hero responsive - GIF encima */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        flex-direction: column-reverse;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-graphic {
        height: 300px;
    }

    .floating-ball {
        width: 200px;
        height: 200px;
    }

    .ball-inner {
        font-size: 80px;
    }

    .ball-face {
        font-size: 100px;
    }

    /* Carrusel en móvil - Scroll horizontal */
    .carousel-container {
        display: flex;
        grid-template-columns: unset;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-container .pricing-card {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .carousel-controls {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .paquete-options {
        grid-template-columns: 1fr;
    }

    .servicios-checkbox {
        grid-template-columns: 1fr;
    }

    .formulario {
        padding: 30px 20px;
    }

    .hero-stats {
        flex-direction: column;
    }

    .floating-bubbles {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .contacto-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacto-grid {
        grid-column: 1;
    }

    .contacto-right {
        grid-column: 1;
    }

    .map-buttons {
        grid-template-columns: 1fr;
    }

    .addon-card,
    .trust-card,
    .pricing-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .cleaning-service h2,
    .addon-services h2,
    .trust-section h2,
    .formulario-section h2,
    .contacto h2 {
        font-size: 32px;
    }

    .servicio-card {
        padding: 25px 20px;
    }

    .formulario {
        padding: 20px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .lang-toggle {
        padding: 8px 16px;
        font-size: 12px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .addon-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}
