:root {
    --primary: #FF6B00;
    --primary-light: #FF8533;
    --primary-dark: #E65100;
    --secondary: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 107, 0, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cocktail-card-lite .q-btn:hover {
    border-radius: 50% !important;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}



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



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}



.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}


.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: white;
    transition: var(--transition);
}

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

.form-group input::placeholder {
    color: #94a3b8;
}

.required-asterisk {
    color: var(--primary);
}


.wizard-validation-error {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    color: #b91c1c;
    font-weight: 600;
    font-size: 0.95rem;
}

.wizard-validation-error i {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}



.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header .accent-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}



.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.step-card:hover .step-icon {
    animation: float 2s ease-in-out infinite;
    background: var(--primary-light);
    box-shadow: 0 0 20px var(--primary-light);
}



nav {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    transition: var(--transition);
    color: white;
}

nav.scrolled {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
    padding: 1rem 0;
    
}

nav .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    filter: invert(41%) sepia(93%) saturate(1637%) hue-rotate(1deg) brightness(101%) contrast(105%);
}

.footer-logo {
    height: 80px;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    background: var(--bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    align-items: flex-start;
    display: flex;
    
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    width: 100%;
    text-align: left;
    color: var(--text);
    
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links .btn {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    color: white;
}



.hero {
    height: 100vh;
    height: 100dvh;
    
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}




.steps {
    padding: 8rem 0;
    background: #fff7ed;
    overflow: hidden;
}

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

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step-card.with-image {
    cursor: pointer;
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}



@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.que-incluye-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto 2.5rem;
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.que-incluye-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}


.que-incluye-list li:nth-child(even) {
    animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.que-incluye-list li:nth-child(1) { animation-delay: 0.1s; }
.que-incluye-list li:nth-child(2) { animation-delay: 0.2s; }
.que-incluye-list li:nth-child(3) { animation-delay: 0.3s; }
.que-incluye-list li:nth-child(4) { animation-delay: 0.4s; }
.que-incluye-list li:nth-child(5) { animation-delay: 0.5s; }
.que-incluye-list li:nth-child(6) { animation-delay: 0.6s; }


.que-incluye-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.que-incluye-list li:hover i {
    animation: itemBounce 0.6s ease-in-out;
    color: var(--primary-light);
}

.que-incluye-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.que-incluye-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}


.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 95vw;
    max-height: 95vh;
}

.lightbox-img {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.lightbox-close:hover {
    opacity: 1;
}


.steps-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0 5rem;
    overflow: visible;
}

.steps-carousel-container {
    position: relative;
    height: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    width: 320px;
    height: 480px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0) scale(0.5) translateZ(-500px);
}

.carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transform: translateX(0) scale(1) translateZ(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.carousel-item.prev {
    opacity: 0.7;
    visibility: visible;
    z-index: 5;
    transform: translateX(-65%) scale(0.8) translateZ(-200px) rotateY(25deg);
}

.carousel-item.next {
    opacity: 0.7;
    visibility: visible;
    z-index: 5;
    transform: translateX(65%) scale(0.8) translateZ(-200px) rotateY(-25deg);
}

.carousel-item.far-prev {
    opacity: 0.3;
    visibility: visible;
    z-index: 1;
    transform: translateX(-110%) scale(0.6) translateZ(-400px) rotateY(45deg);
}

.carousel-item.far-next {
    opacity: 0.3;
    visibility: visible;
    z-index: 1;
    transform: translateX(110%) scale(0.6) translateZ(-400px) rotateY(-45deg);
}


.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

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

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}


.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

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

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

@media (max-width: 768px) {
    .steps-carousel-container {
        height: 420px;
    }

    .carousel-item {
        width: 260px;
        height: 400px;
    }

    .carousel-item.prev {
        transform: translateX(-55%) scale(0.75) translateZ(-200px) rotateY(20deg);
    }

    .carousel-item.next {
        transform: translateX(55%) scale(0.75) translateZ(-200px) rotateY(-20deg);
    }

    .carousel-nav {
        display: none;
    }

    

    .steps-carousel-wrapper {
        padding: 2rem 0 3rem;
    }
}

.step-card.with-image {
    padding: 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    border: none;
    overflow: hidden;
    border-radius: 20px;
}

.step-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.step-card.with-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 0;
    transition: var(--transition);
}

.step-card.with-image:hover .step-card-bg {
    transform: scale(1.1);
}

.step-card.with-image:hover::after {
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.9) 100%);
}

.step-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.step-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.step-card.with-image h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-card.with-image p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
}

.step-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

@media (max-width: 768px) {
    .steps {
        padding: 5rem 0;
    }

    .step-card.with-image {
        min-height: 350px;
    }
}



.benefits {
    padding: 8rem 0;
    background: #fff7ed;
    
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-item i {
    color: var(--primary);
    font-size: 2rem;
    flex-shrink: 0;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg);
    width: 95%;
    max-width: 1000px;
    height: 90vh;
    border-radius: var(--radius);
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-alt);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text);
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.quoter-section {
    padding: 2rem 0;
}

.quoter-container {
    max-width: 800px;
    margin: 0 auto;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}


@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
        transform: scale(1);
    }

    10% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
        transform: scale(1.05);
    }

    20% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
        transform: scale(1);
    }
}

.btn-pulse {
    animation: pulse-orange 3s infinite;
}

.floating-cta {
    
    position: relative;
    width: auto;
    height: auto;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.floating-cta:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

.whatsapp-float {
    
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}


.floating-wrapper {
    position: fixed;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.floating-wrapper.visible {
    opacity: 1;
    visibility: visible;
}

.pos-bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.pos-center-right {
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
}


.close-float-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    z-index: 2001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.close-float-btn:hover {
    transform: scale(1.1);
    background: #cc0000;
}




.yields-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .yields-grid {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
}

.yield-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.yield-item h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 700;
}

.yield-circle {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.12),
        inset 0 0 15px rgba(255, 107, 0, 0.05);
    border: 2px solid var(--glass-border);
    transition: var(--transition);
    animation: floatingCircles 4s ease-in-out infinite;
}

.yield-item:nth-child(even) .yield-circle {
    animation-delay: 1s;
}

.yield-circle:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.25),
        inset 0 0 30px rgba(255, 107, 0, 0.1);
}

.yield-liters {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.yield-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}

.yield-count {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.yield-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

@keyframes floatingCircles {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .yields-grid {
        gap: 0.75rem;
        padding: 1rem 0;
    }

    .yield-circle {
        width: 18vw;
        height: 18vw;
        min-width: 65px;
        min-height: 65px;
        max-width: 90px;
        max-height: 90px;
    }

    .yield-liters {
        font-size: 1.1rem;
    }

    .yield-count {
        font-size: 0.9rem;
    }

    .yield-text {
        font-size: 0.55rem;
    }
}


#dispensadores {
    background: #ffffff;
}

#dispensadores .step-card {
    background: var(--bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#dispensadores .step-icon {
    background: var(--text);
    
    color: var(--primary);
    border: 2px solid var(--primary);
}


.tabs-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1.5rem 0;
    justify-content: center;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

.tab-button {
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-button:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.tab-button.active {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
    transform: translateY(-3px);
}

.wizard-container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    padding: 2rem 0;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 10;
}

.wizard-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.wizard-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
}

.wizard-nav .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 140px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8fafc;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-size-select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1rem;
    cursor: pointer;
    background-color: white;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.price-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.original-price {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.btn-add-to-cart {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.btn-add-to-cart:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.3);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem;
    background-color: var(--bg-alt);
}

.quantity-selector button {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.quantity-selector button:hover {
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
}

.qty-field {
    width: 44px;
    height: 30px;
    border: 1px solid var(--glass-border);
    background: white;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 4px;
    appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
}

.qty-field::-webkit-outer-spin-button,
.qty-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-field:focus {
    outline: none;
    border: 1px solid var(--primary);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tabs-container {
        margin: 1rem 0 0 0;
        padding: 0.75rem 0;
        border-radius: 0;
        gap: 0.5rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        white-space: nowrap;
        text-transform: capitalize;
        letter-spacing: 0px;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-description {
        display: -webkit-box;
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .original-price {
        font-size: 0.8rem;
    }

    .product-size-select {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 0.75rem;
    }
}

.cocktail-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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



.modern-footer {
    color: #f1f5f9;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.footer-main-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}


.footer-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main-content .container {
    position: relative;
    z-index: 1;
}


.instagram-feed-section {
    text-align: center;
    padding: 8rem 0;
    background: #ffffff;
    color: var(--text);
}

.instagram-feed-section h2 {
    color: var(--text);
}

.instagram-handle {
    display: none;
    
}


.footer-info-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 4rem;
    padding: 5rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}


.footer-brand-col .footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.brand-description {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 0.95rem;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}


.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
}

.contact-link i {
    font-size: 1.25rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.contact-link:hover {
    color: white;
    transform: translateX(5px);
}


.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 200px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}


.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-credits {
    margin-top: 0.5rem !important;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-credits a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

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


.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
    font-size: 1.05rem;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 39, 67, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .instagram-feed-section {
        padding: 4rem 0;
    }
}


@media (max-width: 1024px) {
    .footer-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-instagram-section {
        padding: 4rem 0 2.5rem;
    }

    .footer-instagram-section h2 {
        font-size: 2rem;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3.5rem 0 2.5rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-items {
        align-items: center;
    }

    .contact-link {
        max-width: 300px;
        justify-content: center;
    }

    .social-links-grid {
        margin: 0 auto;
    }

    .footer-brand-col .footer-logo {
        margin: 0 auto 1.5rem;
        display: block;
    }
}



.mobile-menu-toggle {
    display: flex;
    
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-size: 1.5rem;
    z-index: 2001;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 107, 0, 0.8);
    
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}




@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    
    nav.scrolled {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }

    

    

    .hero {
        height: 100vh;
        height: 100dvh;
        padding-top: 80px;
        padding-bottom: 2rem;
    }

    .hero-logo {
        max-width: 140px !important;
        margin-bottom: 1rem !important;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .steps,
    .benefits,
    .quoter-section {
        padding: 4rem 0;
    }

    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        width: 100%;
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
        padding: 0.5rem;
    }

    .close-modal {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .wizard-nav {
        flex-direction: row;
        gap: 1rem;
    }

    .wizard-nav .btn {
        width: auto;
        flex: 1;
    }

    .wizard-card {
        padding: 1.5rem;
    }

    .cocktail-menu {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 3rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .steps-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cocktail-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        width: 90%;
        max-width: 700px;
    }
}



.progress-container {
    height: 6px;
    background: var(--bg-alt);
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

@media (max-width: 600px) {
    .rec-metrics {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .rec-card {
        padding: 1.5rem 1rem;
    }

    .metric-item {
        padding: 1rem 0.5rem;
    }
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.option-card i {
    font-size: 1.75rem;
    color: var(--primary);
}

.option-card.selected {
    background: rgba(255, 107, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.1);
}

.option-card span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}


.rec-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    color: var(--text);
}

.rec-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.metric-item {
    padding: 1.25rem 1rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rec-final-recommendation {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px dashed rgba(255, 107, 0, 0.25);
    text-align: center;
}

.rec-final-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.rec-config-badge {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
    max-width: 100%;
    line-height: 1.2;
}

.rec-config-badge--highlight {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.18) 0%, rgba(255, 107, 0, 0.08) 100%);
    color: var(--primary);
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

.info-alert {
    background: rgba(255, 107, 0, 0.05);
    padding: 1.25rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
}


.category-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.category-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.category-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.cocktail-card-lite {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.cocktail-card-lite:hover {
    border-color: var(--primary);
}

.cocktail-card-lite.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.02);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.q-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
}

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

.cocktail-card-lite .quantity-control {
    border: none;
    background: transparent;
    padding: 0;
    gap: 0.5rem;
}

.cocktail-card-lite .q-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cocktail-card-lite .q-btn:hover {
    background: var(--primary);
    color: white;
}

.q-btn.plus {
    background: var(--primary);
    color: white;
}

.q-btn.plus:hover {
    background: var(--primary-dark);
}


.step-active {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.summary-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}


nav.nav-hidden {
    transform: translateY(-100%);
}


.scroll-down-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.scroll-down-btn:hover {
    opacity: 1;
    transform: translateY(5px);
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mouse-icon .wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll-wheel 1.5s infinite;
}

.arrow-down {
    font-size: 1.25rem;
    animation: arrow-bounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes arrow-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}



body.page-cotizar {
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0 0 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
    padding: 1rem 2rem;
}

.back-link:hover {
    transform: translateX(-5px);
    opacity: 0.8;
}

.cotizar-back-link-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem 0;
}

body.page-cotizar .back-link {
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.wizard-nav-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
    height: 70px;
}

.whatsapp-bar-fixed {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #25d366;
    color: white;
    padding: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    height: 45px;
}

.whatsapp-bar-fixed.visible {
    bottom: 0;
}

body:has(.whatsapp-bar-fixed.visible) .wizard-nav-fixed {
    bottom: 45px;
}

.whatsapp-bar-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    height: 100%;
}

.whatsapp-bar-content p {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-bar-btn {
    background: white;
    color: #25d366;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s;
}

.whatsapp-bar-btn:hover {
    transform: scale(1.05);
}

.whatsapp-bar-close {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

#wizard-content {
    padding: 1rem 1.5rem 150px !important;
}



.tabs-container-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cart-button {
    position: relative;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-button:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.3);
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cart-modal-content {
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: min(92vw, 860px);
    height: auto;
    max-height: min(85vh, 900px);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.cart-modal-header h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.close-button:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.cart-modal-body > .cart-items-list-simple {
    margin-bottom: 0;
    min-height: 0;
    overflow-y: visible;
    flex: 1 1 auto;
    border: none;
    border-radius: 0;
    gap: 0;
    padding: 0.5rem 0.75rem 0;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-items-list-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-items-list-simple {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: none;
    border-radius: 0;
    overflow-y: visible;
    overflow-x: hidden;
    animation: none;
    padding-right: 0;
}

.cart-item-simple {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    animation: none;
    background-color: white;
}

.cart-item-simple:last-child {
    border-bottom: 1px solid var(--glass-border);
}

.cart-item-simple:hover {
    background-color: #f8fafc;
}

.cart-item-line-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.1rem;
}

.cart-item-simple-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.cart-item-simple-name {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.cart-item-simple-price-inline {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    white-space: nowrap;
}

.cart-item-line-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.9rem;
}

.cart-item-simple-controls {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 0.25rem;
    background-color: white;
}

.qty-btn-simple {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.qty-btn-simple:hover {
    background-color: var(--primary);
    color: white;
    border-radius: 3px;
}

.qty-field-simple {
    width: 50px;
    height: 28px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 700;
    color: var(--text);
    font-size: 0.9rem;
    appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
}

.qty-field-simple::-webkit-outer-spin-button,
.qty-field-simple::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-field-simple:focus {
    outline: none;
    color: var(--primary);
}

.cart-item-simple-offer {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.cart-item-simple-size {
    font-size: 0.9rem;
    color: var(--text-muted);
    min-width: 70px;
}

.original-price-strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.btn-remove-simple {
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-remove-simple:hover {
    color: #c0392b;
    transform: scale(1.2);
}

.cart-item {
    padding: 1.5rem;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    animation: slideUp 0.4s ease forwards;
}

.cart-item:hover {
    border-color: var(--primary);
    background-color: var(--bg-alt);
}

.cart-item-compact {
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    animation: slideUp 0.4s ease forwards;
    background-color: var(--bg-alt);
}

.cart-item-compact:hover {
    border-color: var(--primary);
    background-color: white;
}

.cart-item-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.cart-item-row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cart-item-details {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.cart-item-size {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cart-item-price {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
}

.cart-item-price-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.cart-item-original-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.cart-item-current-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.cart-item-controls-compact {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.25rem;
    background-color: var(--bg-alt);
}

.quantity-control button {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.2s ease;
}

.quantity-control button:hover {
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
}

.qty-btn-compact {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.qty-btn-compact:hover {
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
}

.quantity-input {
    width: 40px;
    height: 32px;
    border: none;
    background: white;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    border-radius: 4px;
}

.quantity-input:focus {
    outline: none;
    border: 1px solid var(--primary);
}

.qty-field-compact {
    width: 75px;
    height: 28px;
    border: 1px solid var(--glass-border);
    background: white;
    text-align: center;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 3px;
}

.qty-field-compact:focus {
    outline: none;
    border: 1px solid var(--primary);
}

.btn-remove-compact {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-remove-compact:hover {
    color: #c0392b;
    transform: scale(1.2);
}

.btn-remove {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

.cart-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-summary {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text);
}

.summary-label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-value {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.summary-line.total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    border-top: 1px solid var(--glass-border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.summary-line.total span:first-child {
    color: var(--text);
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-compartir {
    width: 100%;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-compartir:hover {
    background-color: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.btn-continue-shopping {
    flex: 1;
    background-color: var(--bg-alt);
    color: var(--text);
    border: 2px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background-color: var(--glass-border);
}

.btn-checkout {
    flex: 1;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.3);
}


@media (max-width: 768px) {
    .cart-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .cart-modal-content {
        width: min(94vw, 640px);
        height: auto;
        max-height: 88vh;
    }

    .cart-modal-header {
        padding: 1.5rem;
    }

    .cart-modal-header h2 {
        font-size: 1.5rem;
    }

    .cart-modal-body {
        padding: 0 0.75rem 0.75rem;
        font-size: 0.85rem;
    }

    .cart-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item-controls {
        align-items: flex-start;
        width: 100%;
    }

    .cart-modal .quantity-control {
        width: 100%;
        justify-content: space-between;
    }

    .qty-btn-minus,
    .qty-btn-plus {
        flex: 1;
    }

    .btn-remove {
        width: 100%;
    }

    .cart-item-simple-name {
        font-size: 0.85rem;
    }

    .qty-btn-simple {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .qty-field-simple {
        width: 50px;
        height: 20px;
        font-size: 0.75rem;
    }

    .cart-item-simple-offer {
        font-size: 0.85rem;
    }

    .original-price-strikethrough {
        font-size: 0.75rem;
    }

    .btn-remove-simple {
        width: 18px;
        height: 18px;
        font-size: 0.85rem;
    }

    .cart-summary {
        padding: 0.9rem 0;
    }

    .summary-line {
        font-size: 0.9rem;
    }

    .summary-line.total {
        font-size: 1rem;
    }
    .whatsapp-bar-content {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .whatsapp-bar-content p {
        font-size: 0.75rem;
    }

    .whatsapp-bar-btn {
        padding: 4px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .whatsapp-bar-fixed {
        height: 50px;
    }

    body:has(.whatsapp-bar-fixed.visible) .wizard-nav-fixed {
        bottom: 50px;
    }
}
