* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0d2257;
    --accent: #f0ab73;
    --light-bg: #f8f9fa;
    --text: #293c50;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

.price-note {
    color: rgb(224, 102, 102);
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 5px;
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: 15px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0 50px 50px 0;
    z-index: 10;
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.badge.new {
    background: #2ecc71;
}

.badge.sale {
    background: #e74c3c;
}

.header {
    background: var(--primary);
    color: white;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;

    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    z-index: 101;
}

.logo-img {
    height: 100px;
    padding: 1rem 1rem;
    width: auto;
    vertical-align: middle;
}

.logo2-img {
    height: 57px;
    padding: 0.3rem 0.3rem;
    width: auto;
    vertical-align: middle;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}


.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    flex-basis: auto;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}


.hero {
    position: relative;
    color: white;
    padding: 8rem 5%;
    text-align: center;
    overflow: hidden;
    height: 600px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 62, 111, 0.463), rgba(48, 43, 38, 0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}


.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(240, 171, 115, 0.6);
}

.btn-secondary {
    background: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    cursor: pointer;
    font-family: inherit;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 6px 25px rgba(13, 34, 87, 0.6);
    transform: translateY(-3px);
}


.security-importance {
    background-color: white;
    padding: 4rem 5%;
    text-align: center;
}

.security-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}


.form-offers-section {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 34, 87, 0.95) 0%, rgba(41, 60, 80, 0.95) 100%);
    overflow: hidden;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: #667eea;
    bottom: -80px;
    right: -80px;
    animation-delay: 5s;
}

.shape3 {
    width: 200px;
    height: 200px;
    background: #f093fb;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.form-offers-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center;
}

.offer-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(240, 171, 115, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 171, 115, 0.2), transparent);
    transition: left 0.5s;
}

.offer-box:hover::before {
    left: 100%;
}

.offer-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.offer-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.offer-box h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-box p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.offer-box strong {
    color: var(--accent);
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
}

.price-tag {
    background: linear-gradient(135deg, var(--accent), #e09860);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(240, 171, 115, 0.4);
}


.formulario-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.formulario-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 171, 115, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.formulario-container h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.formulario-container h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(240, 171, 115, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230d2257' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), #e09860);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.submit-btn::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;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 171, 115, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.guarantee-badge {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}


.products-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.product-card.featured {
    border: 2px solid var(--accent);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.product-image img:not(.active-img) {
    opacity: 0;
}

.product-image img.active-img {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.btn-details {
    flex: 1;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-details:hover {
    background: var(--primary);
    color: white;
}

.btn-buy-shopify {
    flex: 1;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-buy-shopify:hover {
    background: var(--accent);
    color: var(--primary);
}


.details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem;
}

.details-modal.active {
    display: flex;
}

.details-content {
    background: white;
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.details-header {
    background: var(--primary);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.details-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.details-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 900;
}

.close-details {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-details:hover {
    background: rgba(255, 255, 255, 0.4);
}

.details-body {
    padding: 2rem;
}

.details-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.kit-description h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.kit-description p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.kit-contents {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.kit-contents h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.content-list {
    list-style: none;
}

.content-list li {
    padding: 0.5rem 0;
    color: var(--text);
}

.content-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    margin-right: 0.8rem;
}

.btn-buy-large {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.3rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-buy-large:hover {
    background: var(--accent);
    color: var(--primary);
}

.contact {
    background: var(--primary);
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.contact a {
    color: var(--accent);
    text-decoration: none;
}



@media (max-width: 1024px) {
    .form-offers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-box,
    .formulario-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .header {
        padding: 0.5rem 5%;
    }

    .header-content {

        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .logo-img {

        height: 70px;
        padding: 0.5rem 0.5rem;
    }

    .logo2-img {

        height: 40px;
    }


    .menu-toggle {
        display: block;
    }

    .nav {

        display: none;

        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        padding: 1rem 0;
        gap: 0;
    }


    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .benefits-grid {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .formulario-container {
        padding: 2rem 1.5rem;
    }

    .formulario-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .header {
        padding: 0.5rem 3%;
    }

    .logo-img {

        height: 55px;
        padding: 0.3rem;
    }

    .logo2-img {

        display: none;
    }


    .hero {
        height: 350px;
        padding: 3rem 3%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-details,
    .btn-buy-shopify {
        width: 100%;
        padding: 0.8rem;
    }

    .form-offers-section {
        padding: 2rem 3%;
    }

    .formulario-container h2 {
        font-size: 1.3rem;
    }

    .details-body {
        padding: 1rem;
    }

    .details-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .close-details {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    #mainNav {
        transform: translateX(100%);
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100vh;
        transition: transform 0.3s ease-out;
    }

    #mainNav.active {
        transform: translateX(0);
    }
}

/* ========================================================================
   AJAX FORM ENHANCEMENTS - Toast Notifications & Loading States
   ======================================================================== */

/* Screen Reader Only - Hidden visually but available to assistive tech */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Submit Button Loading State */
.submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn .btn-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn .btn-spinner {
    display: none;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .btn-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .submit-btn .btn-spinner i {
        animation: none;
    }

    .adt-toast {
        transition: none !important;
    }
}

/* Toast Notifications */
.adt-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    line-height: 1.5;
}

.adt-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.adt-toast i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Toast Types */
.adt-toast-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.adt-toast-success i {
    color: white;
}

.adt-toast-error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.adt-toast-error i {
    color: white;
}

.adt-toast-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #212529;
}

.adt-toast-warning i {
    color: #856404;
}

.adt-toast-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.adt-toast-info i {
    color: white;
}

/* Mobile Responsive Toast */
@media (max-width: 600px) {
    .adt-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        font-size: 0.9rem;
    }

    .adt-toast.show {
        transform: translateY(0);
    }

    .adt-toast {
        transform: translateY(100px);
    }
}

/* ========================================================================
   FORM HIGHLIGHT ANIMATION - When product "Comprar" is clicked
   ======================================================================== */

.formulario-container.highlighted {
    animation: formPulse 0.6s ease-in-out;
    box-shadow: 0 0 30px rgba(240, 171, 115, 0.6);
}

@keyframes formPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(240, 171, 115, 0.8);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .formulario-container.highlighted {
        animation: none;
    }
}