/* =========================
   VARIABLES DE TEMA
   ========================= */
:root {
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --secondary-gradient: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    --dark-gradient: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    --orange: #ff6b35;
    --orange-light: #ff8c42;
    --purple: #764ba2;
    --blue: #667eea;
    --gradient: linear-gradient(90deg, #7b2ff7, #f107a3);
}
* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    background: var(--dark-gradient);
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: floatCircle 20s infinite ease-in-out;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    background: var(--blue);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, 50px) scale(1.1);
    }

    50% {
        transform: translate(0, 100px) scale(1);
    }

    75% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(15, 15, 26, 0.9) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 10px;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-gradient);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--orange) !important;
    }

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-icon:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        transform: scale(1.1);
        color: white;
    }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffe0d0 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 550px;
}

/* Button Styles */
.btn-primary-custom {
    background: var(--primary-gradient);
    border: none;
    padding: 16px 45px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    position: relative;
    overflow: hidden;
}

    .btn-primary-custom::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary-custom:hover::before {
        left: 100%;
    }

    .btn-primary-custom:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.7);
        color: white;
    }

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 16px 45px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

    .btn-secondary-custom:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--orange);
        transform: translateY(-5px);
        color: white;
    }

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Stats Section */
.stats-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 90px;
    flex: 1;
}

    .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--orange);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Product Images */
.hero-images {
    position: relative;
    z-index: 5;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 500px;
}

.product-float {
    position: absolute;
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .product-float img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-float:hover {
        transform: scale(1.08) rotate(2deg);
        box-shadow: 0 40px 120px rgba(255, 107, 53, 0.4);
        z-index: 20;
        border-color: var(--orange);
    }

        .product-float:hover img {
            transform: scale(1.1);
        }

    .product-float:nth-child(1) {
        top: 5%;
        right: 0;
        width: 300px;
        height: 200px;
        animation: float1 6s ease-in-out infinite;
    }

    .product-float:nth-child(2) {
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 340px;
        height: 240px;
        animation: float2 6s ease-in-out infinite;
        z-index: 15;
    }

    .product-float:nth-child(3) {
        bottom: 5%;
        left: 0;
        width: 280px;
        height: 190px;
        animation: float3 6s ease-in-out infinite;
    }

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(-3deg);
    }
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.category-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

    .category-card:hover {
        transform: translateY(-15px);
        border-color: var(--orange);
        box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    }

    .category-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .category-card:hover img {
        transform: scale(1.1);
    }

    .category-card .card-body {
        padding: 2rem;
        text-align: center;
    }

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.category-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.8rem;
}

.category-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-category {
    margin-top: 1.5rem;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
}

    .btn-category:hover {
        background: var(--orange);
        color: white;
        transform: translateY(-3px);
    }

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.feature-box {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--orange);
        box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    }

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.feature-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Special Offer Banner */
.offer-banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.offer-card {
    background: var(--primary-gradient);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

    .offer-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }

    .offer-card::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

.offer-content {
    position: relative;
    z-index: 10;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.offer-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.offer-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-white {
    background: white;
    color: var(--orange);
    border: none;
    padding: 16px 45px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

    .btn-white:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        color: var(--orange);
    }

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        border-color: var(--orange);
        background: rgba(255, 255, 255, 0.12);
    }

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}

.testimonial-name {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .newsletter-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--primary-gradient);
    }

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .newsletter-input:focus {
        outline: none;
        border-color: var(--orange);
        background: rgba(255, 255, 255, 0.12);
    }

/* Footer */
.footer {
    background: rgba(15, 15, 26, 0.95);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.9rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--orange);
            padding-left: 8px;
        }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

    .social-link:hover {
        background: var(--primary-gradient);
        transform: translateY(-5px);
        color: white;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 60px 0;
    }

    .hero-images {
        margin-top: 3rem;
        min-height: 450px;
    }

    .product-showcase {
        height: 450px;
        max-width: 400px;
    }

    .product-float:nth-child(1) {
        width: 240px;
        height: 160px;
    }

    .product-float:nth-child(2) {
        width: 280px;
        height: 200px;
    }

    .product-float:nth-child(3) {
        width: 230px;
        height: 155px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .offer-title {
        font-size: 2.2rem;
    }

    .offer-card {
        padding: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .button-group {
        justify-content: center;
    }

    .stats-container {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-section {
        padding: 80px 0 40px 0;
    }

    .hero-images {
        min-height: 360px;
        margin-top: 2rem;
    }

    .product-showcase {
        height: 360px;
        max-width: 340px;
    }

    /* Mobile image positioning - moved UP for better visibility */
    .product-float:nth-child(1) {
        width: 180px;
        height: 125px;
        top: -5%;
        right: 5%;
    }

    .product-float:nth-child(2) {
        width: 220px;
        height: 155px;
        top: 42%;
        left: 50%;
    }

    .product-float:nth-child(3) {
        width: 170px;
        height: 115px;
        bottom: -2%;
        left: 5%;
    }

    /* Fixed stat items for mobile */
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stats-container {
        gap: 0.8rem;
    }

    .stat-item {
        padding: 12px 8px;
        min-width: 80px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .categories-section,
    .features-section,
    .testimonials-section,
    .newsletter-section {
        padding: 60px 0;
    }

    .offer-card {
        padding: 2rem;
    }

    .offer-title {
        font-size: 1.8rem;
    }

    .newsletter-card {
        padding: 2.5rem 1.5rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .category-card img {
        height: 240px;
    }

    .category-title {
        font-size: 1.3rem;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    border: none;
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(255, 107, 53, 0.7);
    }