:root {
    --color-dark-blue: #001746;
    --color-vibrant-blue: #0155cb;
    --color-strong-orange: #e95d02;
    --color-highlight-orange: #fd7e01;
    --color-white: #ffffff;
    --color-gray-100: #f4f4f5;
    --color-gray-200: #e4e4e7;
    --color-gray-800: #27272a;
    --color-gray-900: #18181b;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-gray-100);
    color: var(--color-gray-900);
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    font-weight: 800;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight {
    color: var(--color-highlight-orange);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-dark-blue);
    text-transform: uppercase;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-highlight-orange), var(--color-strong-orange));
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 800;
    padding: 18px 32px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(233, 93, 2, 0.3);
    width: 100%;
    max-width: 400px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(233, 93, 2, 0.4);
    background: linear-gradient(135deg, #ff8c1a, var(--color-strong-orange));
}

.btn-large {
    font-size: 1.25rem;
    padding: 20px 40px;
    max-width: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 126, 1, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(253, 126, 1, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 126, 1, 0); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, #001233 100%);
    padding: 30px 0 50px;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.hero-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--color-vibrant-blue);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.speed-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 12px
    );
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 1; /* Mobile top */
    perspective: 1000px;
}

.mockup-main {
    max-width: 110%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4));
    transform: rotateZ(2deg) rotateY(-5deg) rotateX(5deg);
    animation: float-dynamic 4s ease-in-out infinite;
    z-index: 5;
    position: relative;
}

@keyframes float-dynamic {
    0% { transform: translateY(0) rotateZ(2deg) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-10px) rotateZ(1deg) rotateY(-3deg) rotateX(3deg); }
    100% { transform: translateY(0) rotateZ(2deg) rotateY(-5deg) rotateX(5deg); }
}

.hero-text {
    width: 100%;
    text-align: center;
    order: 2; /* Mobile bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-text .subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 90%;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

.cta-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-sub strong {
    color: var(--color-highlight-orange);
    font-size: 1.1rem;
}

/* Before & After Comparison */
.before-after-section {
    padding: 80px 0;
    background-color: var(--color-white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: -15px auto 40px auto;
    max-width: 600px;
}

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

@media (min-width: 768px) {
    .comparison-grid {
        gap: 30px;
    }
}

.comparison-card {
    position: relative;
    padding: 25px 12px 15px 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.comparison-card:hover {
    transform: translateY(-3px);
}

.card-badge {
    position: absolute;
    top: -10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-card.before {
    background-color: #fafafa;
    border: 1px solid #ffdddd;
    border-top: 4px solid #ff4d4d;
}

.comparison-card.before .card-badge {
    background-color: #ff4d4d;
    color: white;
}

.comparison-card.before .comp-icon i {
    color: #ff4d4d;
    font-size: 2rem;
    margin-bottom: 10px;
}

.comparison-card.before h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.comparison-card.before p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
}

.comparison-card.after {
    background-color: rgba(1, 85, 203, 0.03);
    border: 1px solid rgba(1, 85, 203, 0.1);
    border-top: 4px solid var(--color-vibrant-blue);
    box-shadow: 0 8px 20px rgba(1, 85, 203, 0.08);
}

.comparison-card.after .card-badge {
    background-color: var(--color-vibrant-blue);
    color: white;
}

.comparison-card.after .comp-icon i {
    color: var(--color-vibrant-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.comparison-card.after h3 {
    color: var(--color-dark-blue);
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.comparison-card.after p {
    color: #444;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-highlight-orange) 0%, var(--color-strong-orange) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    transform: skewY(-3deg);
    margin: 40px 0;
}

.solution-container {
    transform: skewY(3deg);
}

.solution-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.solution-text p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Deliverables Section Redesign */
.deliverables {
    padding: 80px 0;
    background-color: var(--color-white);
}

.deliverables-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.deliverables-content {
    width: 100%;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 2rem;
}

.clean-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.clean-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.clean-list i {
    color: var(--color-highlight-orange);
    font-size: 1.6rem;
}

.deliverables-support {
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
    padding-left: 10px;
    border-left: 3px solid var(--color-highlight-orange);
}

.deliverables-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--color-gray-100);
}

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

.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h3 {
    color: var(--color-dark-blue);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.user-info .stars {
    margin-bottom: 0;
    justify-content: flex-start;
}

.user-info .stars i {
    color: var(--color-highlight-orange);
    font-size: 1rem;
}

.testimonial-text {
    color: #444;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
}

/* Social Proof Block (Inside Testimonials) */
.social-proof-block {
    margin-top: 60px;
    text-align: center;
}

.stars {
    color: #FFB800;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.social-proof-block h2 {
    color: var(--color-dark-blue);
    margin-bottom: 10px;
}

.social-proof-block p {
    color: #555;
    font-weight: 500;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: var(--color-gray-100);
}

.offer-card {
    background-color: var(--color-white);
    border: 3px solid var(--color-highlight-orange);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.offer-card::before {
    content: 'OFERTA ESPECIAL';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-highlight-orange);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.offer-image {
    width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 20px auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: block;
}

.offer-card h2 {
    color: var(--color-dark-blue);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.price-box {
    margin-bottom: 20px;
    color: var(--color-dark-blue);
}

.old-price {
    display: block;
    color: #888;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.price-currency {
    font-size: 2rem;
    font-weight: 800;
    vertical-align: top;
    margin-right: 5px;
}

.price-value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-vibrant-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-terms {
    color: #666;
    font-weight: 600;
    margin-bottom: 30px;
}

.guarantee {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}

.guarantee i {
    color: #10b981;
    font-size: 1.5rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 40px 0;
    background-color: var(--color-dark-blue);
    color: var(--color-gray-100);
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shield-icon {
    font-size: 4rem;
    color: var(--color-highlight-orange);
    margin-bottom: 20px;
}

.guarantee-content h2 {
    color: var(--color-highlight-orange);
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.guarantee-content p {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #000f2e;
}

.faq-section .section-title {
    color: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default arrow */
}

/* Hide default marker in details summary */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: var(--color-highlight-orange);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--color-gray-200);
    font-size: 1.05rem;
    line-height: 1.6;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    background-color: #000f2e;
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-text .subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }

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

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

    .solution-text h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 60px 0;
        overflow: visible; /* To allow floating image */
    }
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .hero-text {
        width: 30%;
        order: 1;
        text-align: left;
        align-items: flex-start;
    }
    .hero-image {
        width: 70%;
        order: 2;
        justify-content: flex-end;
    }
    .mockup-main {
        max-width: 120%;
        transform-origin: center right;
        margin-right: -10%; /* Floats out of container slightly */
    }
    .cta-wrapper {
        align-items: flex-start;
    }

    .deliverables-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .deliverables-content {
        width: 45%;
    }
    
    .deliverables-image {
        width: 50%;
        justify-content: flex-end;
    }



    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
