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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #FFB627;
    --accent-color: #4ECDC4;
    --success-color: #48BB78;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Fredoka', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo-emoji {
    font-size: 32px;
}

.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.whatsapp-icon {
    font-size: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 245, 230, 0.88) 50%, rgba(230, 247, 255, 0.90) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    padding: 0 60px;
    margin: 0 auto;
}

.hero-content {
    z-index: 3;
    max-width: 900px;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-title-sub {
    display: block;
    font-size: 56px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0 24px 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-description {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    font-size: 24px;
}

.hero-phone {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 40px;
}

.hero-phone a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.hero-phone a:hover {
    color: var(--primary-color);
}

.phone-icon {
    font-size: 28px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-emoji {
    font-size: 56px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* Inflables Grid */
.inflables {
    background: var(--bg-light);
}

.inflables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.inflable-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.inflable-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-placeholder {
    text-align: center;
    color: var(--white);
}

.placeholder-emoji {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.placeholder-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 16px;
}

.carousel-btn-next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
}

/* Inflable Info */
.inflable-info {
    padding: 24px;
}

.inflable-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.inflable-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Como Trabajamos */
.como-trabajamos {
    background: var(--white);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.step {
    position: relative;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.step-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Testimonios */
.testimonios {
    background: var(--bg-light);
    overflow: hidden;
}

.testimonios-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonios-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 24px;
}

.testimonios-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonio-card {
    min-width: 400px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonio-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonio-text {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-date {
    font-size: 14px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    text-align: center;
}

.footer-cta {
    margin-bottom: 48px;
}

.footer-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer-phone {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
}

.footer-phone a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone a:hover {
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-icon {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container {
        padding: 0 40px;
    }

    .hero-title-main {
        font-size: 44px;
    }

    .hero-title-sub {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .step-arrow {
        display: none;
    }

    .steps {
        flex-direction: column;
    }

    .step {
        max-width: 100%;
    }

    .testimonio-card {
        min-width: 300px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 28px;
    }

    .logo-emoji {
        font-size: 36px;
    }

    .btn-whatsapp-header {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero .container {
        padding: 0 24px;
    }

    .hero-title-main {
        font-size: 32px;
    }

    .hero-title-sub {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn-cta {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-phone {
        padding: 16px 32px;
    }

    .section-title {
        font-size: 28px;
        flex-direction: column;
        gap: 8px;
    }

    .section-subtitle {
        font-size: 16px;
    }

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

    .footer-title {
        font-size: 28px;
    }

    .footer-subtitle {
        font-size: 16px;
    }
}
