/* --- Hero Meta ADS (Facebook & Instagram) --- */
.hero-meta-ads {
    padding: 120px 5% 100px;
    background-color: #000000 !important; /* Mantenemos el fondo negro */
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container-hero-minimal {
    max-width: 950px; /* Un poco más ancho para el H1 largo */
    margin: 0 auto;
}

/* Badge Superior */
.badge-tech {
    color: #ffffff; /* Blanco para contraste inicial */
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

/* H1 Typografía Pesada (Forzada) */
.hero-text-block h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem) !important; /* Más grande, más agresivo */
    font-weight: 900 !important;
    line-height: 1 !important; /* Más compacto */
    margin-bottom: 25px !important;
    letter-spacing: -2.5px !important; /* Más apretado */
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: block !important;
}

/* Resaltado Cyan */
.hero-text-block h1 .highlight {
    color: #00f2ff !important;
}

/* Subtítulo de Dolor y Técnica */
.hero-text-block p {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem) !important;
    color: #aaaaaa !important; /* Gris claro */
    font-weight: 400 !important;
    margin-bottom: 60px !important;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6 !important;
}

.hero-text-block p strong {
    color: #ffffff;
    font-weight: 700;
}

/* Botón Cyan */
.btn-ads-impact {
    display: inline-block;
    background-color: #00f2ff !important;
    color: #000000 !important;
    padding: 22px 55px;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-ads-impact:hover {
    background-color: #ffffff !important;
    transform: translateY(-4px);
}

.btn-ads-impact i {
    margin-left: 10px;
    font-size: 0.9rem;
}



/* --- Sección Dolor Meta Ads (Ajustada) --- */
.meta-pain-section {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #111111;
}

.pain-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px; /* Reduje un poco el gap para que no se vea tan disperso */
    align-items: center;
}

/* Columna Texto */
.pain-text h2 {
    font-size: clamp(2rem, 3vw, 3rem); /* Corregido y con punto y coma */
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.pain-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* --- Estructura de Items (El cambio real) --- */
.pain-points {
    display: flex;
    flex-direction: column;
    gap: 35px; /* Espacio real entre bloques de dolor */
}

.pain-item {
    display: grid;
    grid-template-columns: 40px 1fr; /* Icono en carril fijo de 40px */
    gap: 15px;
    align-items: start;
}

.pain-item i {
    color: #00f2ff;
    font-size: 1.5rem; /* Un poco más grande para que tenga peso */
    margin-top: 3px; /* Alineación fina con la primera línea de texto */
    display: flex;
    justify-content: center;
}

.pain-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0; /* Quitamos márgenes que ensucian */
    color: #333;
}

.pain-item p strong {
    color: #000;
    font-weight: 800;
    border-bottom: 2px solid #00f2ff;
}

/* Responsive */
@media (max-width: 991px) {
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pain-visual {
        order: 2; /* Imagen abajo en móvil para dar prioridad al texto */
    }
}


/* --- Sección Creativa Meta --- */
.meta-creative-section {
    padding: 120px 5%;
    background-color: #0a0a0a; /* Negro muy oscuro */
    color: #ffffff;
}

.container-creative {
    max-width: 1300px;
    margin: 0 auto;
}

.creative-header {
    text-align: center;
    margin-bottom: 70px;
}

.badge-creative {
    color: #ff3c3c; /* Rojo para el "Pero..." agresivo */
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.creative-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.creative-header .highlight {
    color: #00f2ff; /* El Cyan estratégico */
}

/* Grid Principal */
.creative-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Más espacio para la galería */
    gap: 80px;
    align-items: center;
}

/* Columna Texto */
.creative-pain {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.creative-pain strong {
    color: #fff;
    font-weight: 700;
}

.competing-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.competing-items p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.competing-items p i {
    color: #ff3c3c; /* Iconos rojos de advertencia */
    font-size: 1rem;
}

.creative-solution {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #eee;
}

.creative-solution strong {
    color: #00f2ff; /* Resaltamos que somos estrategas visuales */
    font-weight: 800;
}

/* Columna Galería */
.creative-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.art-card {
    position: relative;
    border: 1px solid #333;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    aspect-ratio: 9 / 16; /* Formato vertical pro */
}

.art-card:hover {
    transform: translateY(-8px);
    border-color: #00f2ff; /* Borde Cyan al hover */
}

.art-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%); /* Efecto técnico inicial */
    transition: filter 0.4s ease;
}

.art-card:hover img {
    filter: grayscale(0%);
}

.art-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    padding: 20px;
}

.art-overlay h4 {
    color: #00f2ff;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* --- Sección Cómo Trabajamos --- */
.work-process-section {
    padding: 100px 5%;
    background-color: #ffffff;
    color: #111;
}

.container-process {
    max-width: 1100px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.badge-process {
    color: #00f2ff;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.process-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
}

/* Steps Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
}

.step-item {
    position: relative;
    padding: 30px;
    background: #fcfcfc;
    border-top: 4px solid #00f2ff; /* Color Meta/Cyan */
    transition: all 0.4s ease;
}

.step-item:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 242, 255, 0.1); /* Número fantasma detrás */
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    position: relative;
    z-index: 1;
}

.step-content p strong {
    color: #000;
}


/* --- Sección de Precio / Super Hero --- */
.pricing-cta-section {
    padding: 80px 5%;
    background-color: #00f2ff; /* El color de Meta Ads / Glitch */
    color: #000;
}

.container-pricing {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Texto del Precio */
.pricing-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.pricing-text p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.5;
    font-weight: 500;
}

.pricing-text strong {
    font-weight: 900;
    text-decoration: underline;
}

/* Botón y Call to Action */
.pricing-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-main-price {
    background-color: #000;
    color: #fff;
    padding: 25px 45px;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-main-price:hover {
    transform: scale(1.05);
    background-color: #111;
}

.sub-call {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-content {
        flex-direction: column;
        text-align: center;
    }
    .pricing-text p {
        margin: 0 auto 20px;
    }
}


/* --- Sección Tipos de Campaña --- */
.meta-types-section {
    padding: 100px 5%;
    background-color: #f4f4f4;
    color: #111;
}

.container-types {
    max-width: 1200px;
    margin: 0 auto;
}

.types-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge-types {
    color: #00f2ff;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.types-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
}

/* Grid de Cards */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.type-card {
    background: #ffffff;
    padding: 40px 30px;
    border-bottom: 3px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
}

.type-card:hover {
    border-bottom-color: #00f2ff;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.type-card i {
    font-size: 2.5rem;
    color: #00f2ff;
    margin-bottom: 25px;
    display: block;
}

.type-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.type-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.type-card p strong {
    color: #000;
}