/* =========================
   NÉMESIS - MÓDULO OFENSIVO AZENIS
   ECOSISTEMA AZENIS
   COLOR: ROJO
   VERSIÓN: CSP COMPATIBLE
   ========================= */

/* ============================================
   FULL WIDTH RESET PARA NÉMESIS
   ============================================ */
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

.hero-nemesis,
.what-is,
.metodologia,
.casos,
.faq,
.final-cta,
.elite-divider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-content,
.what-is-container,
.metodologia .metodologia-grid,
.casos-grid,
.faq-grid,
.guarantee-panels {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.what-is-overlay,
.metodologia-overlay,
.faq-overlay,
.hero-nemesis .cyber-grid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section, div, article {
    max-width: none;
}

/* =========================
   VARIABLES GLOBALES
   ========================= */
:root {
    --red: #DC2626;
    --red-glow: rgba(220, 38, 38, 0.15);
    --red-border: rgba(220, 38, 38, 0.25);
    --orange: #F97316;
    --navy: #0A1F2E;
    --navy-dark: #05070A;
    --white: #FFFFFF;
    --black: #05070A;
    --gray: #9CA3AF;
    --gray-dark: #6B7280;
    --success: #10B981;
}

/* =========================
   RESET UNIVERSAL
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    cursor: default;
}

/* =========================
   HERO SECTION
   ========================= */
.hero-nemesis {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-nemesis::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://azenis.com.gt/assets/images/nemesis/hero-home.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

/* Línea divisoria roja al final del hero */
.hero-nemesis::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 5%,
        var(--red) 20%,
        #EF4444 40%,
        #EF4444 60%,
        var(--red) 80%,
        transparent 95%,
        transparent 100%
    );
    z-index: 3;
}

.hero-nemesis .cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--red-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--red-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left .badge {
    display: none;
}

.hero-left h1 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-left h1.red {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow);
}

.hero-left .subheadline {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-sla {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 20px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--red), #B91C1C);
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--red);
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid var(--red);
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    justify-content: center;
}

.offensive-core {
    background: rgba(220, 38, 38, 0.03);
    border: 1px solid var(--red-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.icon-container {
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nemesis-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.offensive-core h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 10px;
}

.offensive-core p {
    font-size: 0.7rem;
    color: var(--gray);
    font-family: monospace;
}

/* =========================
   QUÉ ES NÉMESIS
   ========================= */
.what-is {
    padding: 100px 0;
    position: relative;
    background-image: url('https://azenis.com.gt/assets/images/nemesis/nemesis.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.what-is-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.what-is-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.what-is-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.what-is-text h2 span {
    color: var(--red);
}

.what-is-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.what-is-visual {
    background: rgba(220, 38, 38, 0.03);
    border: 1px solid var(--red-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(220, 38, 38, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.feature-text p {
    font-size: 0.75rem;
    color: var(--gray);
}

/* =========================
   METODOLOGÍA OFENSIVA
   ========================= */
.metodologia {
    padding: 100px 0;
    position: relative;
    background-image: url('https://azenis.com.gt/assets/images/nemesis/operaciones-controladas.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.metodologia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.metodologia .section-header,
.metodologia .metodologia-grid {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .tag {
    display: none;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-header h2 span {
    color: var(--red);
}

.header-description {
    font-size: 1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.metodologia-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.metodologia-card {
    background: rgba(10, 31, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--red-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
}

.metodologia-card:nth-child(1) { animation-delay: 0.05s; }
.metodologia-card:nth-child(2) { animation-delay: 0.1s; }
.metodologia-card:nth-child(3) { animation-delay: 0.15s; }

.metodologia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metodologia-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 25px 40px -15px rgba(220, 38, 38, 0.3);
}

.metodologia-card:hover::before {
    opacity: 1;
}

.operation-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    background: rgba(220, 38, 38, 0.2);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: monospace;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.metodologia-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.metodologia-card .card-icon i {
    font-size: 1.8rem;
    color: var(--red);
}

.metodologia-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--white);
}

.operation-details {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    text-align: right;
}

.operation-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 12px #10B981; }
}

.status-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #10B981;
    text-transform: uppercase;
}

/* =========================
   ESCENARIOS REALES
   ========================= */
.casos {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--black) 100%);
}

.casos-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.caso-card {
    background: rgba(10, 31, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid var(--red-border);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
}

.caso-card:nth-child(1) { animation-delay: 0.05s; }
.caso-card:nth-child(2) { animation-delay: 0.1s; }
.caso-card:nth-child(3) { animation-delay: 0.15s; }

.caso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.caso-card:hover::before {
    opacity: 1;
}

.caso-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--red);
    text-transform: uppercase;
    background: rgba(220, 38, 38, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.caso-icon {
    width: 55px;
    height: 55px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.caso-icon i {
    font-size: 1.8rem;
    color: var(--red);
}

.caso-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.caso-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.caso-meta {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    border-left: 3px solid var(--red);
}

.meta-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 6px;
}

.meta-value {
    font-size: 0.8rem;
    color: var(--white);
    line-height: 1.5;
}

/* =========================
   TRANSPARENCIA OPERACIONAL
   ========================= */
.faq {
    padding: 100px 0;
    position: relative;
    background-image: url('https://azenis.com.gt/assets/images/nemesis/transparencia-operacional.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.faq .section-header,
.faq-grid,
.guarantee-panels {
    position: relative;
    z-index: 2;
}

.faq-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.faq-card {
    background: rgba(10, 31, 46, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--red-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-icon i {
    font-size: 1.5rem;
    color: var(--red);
}

.faq-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.faq-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.guarantee-panels {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.guarantee-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--red-border);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.guarantee-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
}

.guarantee-check {
    width: 45px;
    height: 45px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.guarantee-check i {
    font-size: 1.3rem;
    color: var(--red);
}

.guarantee-card h4 {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

.guarantee-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* =========================
   FINAL CTA CON IMAGEN DE FONDO
   ========================= */
.final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: var(--black);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://azenis.com.gt/assets/images/nemesis/cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.25;
    z-index: 0;
}

.final-cta .container,
.final-cta h2,
.final-cta .cta-line,
.final-cta .cta-button {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta h2 span {
    color: var(--red);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--red);
    padding: 16px 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid var(--red);
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}
/* =========================
   TEXT SHADOW PARA LEGIBILIDAD
   ========================= */
.what-is-text p,
.what-is-text h2,
.feature-text h4,
.feature-text p,
.section-header h2,
.header-description,
.metodologia-card h3,
.detail-label,
.detail-value,
.status-text,
.caso-card h3,
.caso-card p,
.meta-label,
.meta-value,
.faq-card h3,
.faq-card p,
.guarantee-card h4,
.guarantee-card p,
.final-cta h2 {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* =========================
   ANIMACIONES
   ========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left .subheadline {
        max-width: 100%;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .what-is-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .casos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guarantee-panels {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .elite-divider {
        height: 3px;
    }
    
    .hero-content,
    .what-is-container,
    .metodologia .metodologia-grid,
    .casos-grid,
    .faq-grid,
    .guarantee-panels {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-nemesis {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 120px 20px 80px;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .metodologia-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .casos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .nemesis-icon {
        width: 70px;
        height: 70px;
    }
    
    .guarantee-panels {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-card h3 {
        font-size: 1rem;
    }
    
    .guarantee-card {
        padding: 18px;
    }
    
    .final-cta h2 {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 0.75rem;
    }
    
    .metodologia-card {
        padding: 24px;
    }
    
    .metodologia-card h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .operation-badge {
        font-size: 0.55rem;
    }
    
    .caso-card {
        padding: 24px;
    }
    
    .caso-card h3 {
        font-size: 1.2rem;
    }
    
    .caso-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .caso-icon {
        width: 45px;
        height: 45px;
    }
    
    .caso-icon i {
        font-size: 1.4rem;
    }
    
    .elite-divider {
        height: 2px;
    }
    
    .cta-line {
        width: 150px;
    }
    
    .hero-content,
    .what-is-container,
    .metodologia .metodologia-grid,
    .casos-grid,
    .faq-grid,
    .guarantee-panels {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .offensive-core {
        padding: 25px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .nemesis-icon {
        width: 50px;
        height: 50px;
    }
    
    .offensive-core h3 {
        font-size: 0.9rem;
    }
    
    .final-cta h2 {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 0.75rem;
    }
    
    .hero-content,
    .what-is-container,
    .metodologia .metodologia-grid,
    .casos-grid,
    .faq-grid,
    .guarantee-panels {
        padding: 0 15px;
    }
}