/* =============================================
   MGENIA IA — Web Profesional Fusionada
   Fondo claro + acentos verde/azul/turquesa
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- UTILS & ANIMATIONS ---------- */
.blinking-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #BAFF29; /* Verde limón */
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #BAFF29;
    animation: blink 1.5s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 15px #BAFF29; }
    100% { opacity: 0.3; transform: scale(0.8); }
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background-color: currentColor;
    margin-left: 5px;
    vertical-align: middle;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

:root {
    /* Paleta principal — tonos claros con acentos vibrantes */
    --bg-white: #ffffff;
    --bg-light: #f7f9fc;
    --bg-soft: #eef3f8;
    --bg-card: #ffffff;
    --bg-dark: #0f1b2d;
    --bg-hero: #101c2e;
    --bg-footer: #0f1b2d;

    /* Acentos de marca */
    --green: #BAFF29; /* Verde limón */
    --green-light: #eeffcc;
    --teal: #00d4aa;
    --blue: #2563eb;
    --blue-light: #93c5fd;
    --gradient-brand: linear-gradient(135deg, #BAFF29 0%, #0ee668 100%);
    --gradient-hero: linear-gradient(135deg, #0f1b2d 0%, #162a45 50%, #1a3a5c 100%);
    --gradient-card: linear-gradient(135deg, rgba(186, 255, 41, 0.06), rgba(14, 230, 104, 0.06));

    /* Texto */
    --text-dark: #0f1b2d;
    --text-body: #3a4a5e;
    --text-muted: #6b7d93;
    --text-white: #ffffff;
    --text-green: #0cc75a;

    /* Bordes y sombras */
    --border: #e2e8f0;
    --border-hover: #4fd1c5;
    --shadow-sm: 0 1px 3px rgba(15, 27, 45, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 27, 45, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 27, 45, 0.12);
    --shadow-card: 0 2px 12px rgba(15, 27, 45, 0.06);
    --shadow-card-hover: 0 8px 32px rgba(14, 230, 104, 0.12);

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;

    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul,
ol {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Tipografía ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
}

h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
}

h4 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 600;
}

.subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
}

.text-center {
    text-align: center;
}

.text-center .subtitle {
    margin: 0 auto;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Botones ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #0f1b2d; /* Texto oscuro para contraste en verde limón */
    box-shadow: 0 4px 16px rgba(186, 255, 41, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(186, 255, 41, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    box-shadow: inset 0 0 0 2px var(--green);
    background: rgba(14, 230, 104, 0.1);
    color: var(--green-light);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.btn-dark:hover {
    background: #1a2d4a;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-green);
    box-shadow: inset 0 0 0 2px var(--green);
}

.btn-ghost:hover {
    background: rgba(14, 230, 104, 0.08);
}

/* ---------- HEADER ---------- */
.header {
    position: relative;
    z-index: 1000;
    min-height: 80px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    min-height: 60px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transform: scale(1.85);
    transform-origin: left center;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 70px;
    transform: scale(1.6);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dark);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--gradient-brand);
    color: var(--text-white) !important;
    border-radius: 999px;
    font-weight: 600 !important;
    font-size: 13.5px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 230, 104, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 0;
    background: #0a1628;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0f1b2d;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 45, 0.82);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 30px 24px;
    max-width: 900px;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.hero .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 2vw, 19px);
    margin: 0 auto 32px;
    max-width: 650px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-services-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-service-pill {
    padding: 20px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s;
}

.hero-service-pill:hover {
    background: rgba(14, 230, 104, 0.08);
}

.hero-service-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin: 0 auto 10px;
}

.hero-service-pill span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14.5px;
    font-weight: 500;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--bg-white);
}

.section-light {
    background: #f7faf9;
}

.section-soft {
    background: #f5f8fc;
}

.section-dark {
    background: #f0f4f1;
    color: var(--text-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
    color: var(--text-dark);
}

.section-dark .subtitle {
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .tag {
    display: inline-block;
    background: rgba(14, 230, 104, 0.1);
    color: var(--text-green);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header .subtitle {
    margin: 0 auto;
}

/* ---------- FEATURE CARDS (Qué es Mgenia) ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    background: var(--gradient-card);
}

.feature-card h5 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- TWO COL LAYOUT ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-text h2 {
    margin-bottom: 16px;
}

.two-col-text p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.two-col-img img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ---------- PROBLEM / SOLUTION ---------- */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.problem-box,
.solution-box {
    padding: 40px;
    border-radius: var(--radius);
}

.problem-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.problem-box h4 {
    color: #dc2626;
    margin-bottom: 20px;
}

.problem-box li {
    padding: 10px 0;
    font-size: 15px;
    color: #7f1d1d;
    border-bottom: 1px solid #fecaca;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-box li::before {
    content: '✕';
    color: #dc2626;
    font-weight: 700;
    font-size: 14.5px;
}

.solution-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.solution-box h4 {
    color: #16a34a;
    margin-bottom: 20px;
}

.solution-box li {
    padding: 10px 0;
    font-size: 15px;
    color: #14532d;
    border-bottom: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-box li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 700;
    font-size: 16px;
}

/* ---------- SERVICES GRID ---------- */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-main-card {
    background: radial-gradient(circle at top left, #ffffff 0%, #ecfdf5 30%, #d1fae5 70%, #a7f3d0 100%);
    border: 1px solid rgba(167, 243, 208, 0.6);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 12px 30px rgba(167, 243, 208, 0.3);
}

.service-main-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.service-main-card .service-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-brand);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
}

.service-main-card h4 {
    margin-bottom: 8px;
}

.service-main-card .service-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-main-card .service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-main-card .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-body);
}

.service-main-card .service-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 14.5px;
    flex-shrink: 0;
}

/* ---------- SERVICES PREMIUM GRID ---------- */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-premium-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4fd1c5, #0ee668, #2563eb);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 209, 197, 0.3);
    box-shadow:
        0 20px 60px rgba(79, 209, 197, 0.1),
        0 0 40px rgba(14, 230, 104, 0.05);
    background: rgba(255, 255, 255, 0.06);
}

.service-premium-card:hover::before {
    opacity: 1;
}

.service-premium-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(79, 209, 197, 0.08);
    line-height: 1;
    letter-spacing: -2px;
}

.service-premium-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(79, 209, 197, 0.3));
    transition: transform 0.3s ease;
}

.service-premium-card:hover .service-premium-icon {
    transform: scale(1.15) translateY(-4px);
}

.service-premium-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-premium-card .service-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-premium-card .service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-premium-card .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.service-premium-card .service-features li::before {
    content: '✓';
    color: #4fd1c5;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- PAQUETES ---------- */
.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.paquete-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.paquete-card.featured {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), var(--shadow-lg);
}

.paquete-card.featured::before {
    content: 'Más popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-brand);
    color: var(--text-white);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.paquete-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.paquete-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.paquete-card h4 {
    margin-bottom: 8px;
}

.paquete-card .paquete-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.paquete-pricing {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.paquete-pricing .price-item {
    text-align: center;
}

.paquete-pricing .price-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.paquete-pricing .price-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.paquete-pricing .price-value small {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted);
}

.paquete-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.paquete-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.5;
}

.paquete-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.paquete-ideal {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}

/* ---------- GIF GRID ---------- */
.gif-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gif-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.gif-grid img:hover {
    transform: scale(1.03);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    font-size: 18px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--gradient-card);
    flex-shrink: 0;
}

.contact-info-item h6 {
    margin-bottom: 2px;
    color: var(--text-dark);
}

.contact-info-item p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-footer);
    color: var(--text-white);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    margin-top: 12px;
    line-height: 1.7;
}

.footer h6 {
    color: var(--text-white);
    margin-bottom: 16px;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-instagram { color: #E4405F; }
.social-facebook { color: #1877F2; }
.social-linkedin { color: #0A66C2; }
.social-whatsapp { color: #25D366; }

.footer-social a:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: currentColor;
}

.social-instagram:hover {
    background: rgba(228, 64, 95, 0.15);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.3);
}

.social-facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}

.social-linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.3);
}

.social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
    border-top: none;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- SLIDE-IN ANIMATION ---------- */
.slide-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-services-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .header {
        height: 64px;
    }

    .logo img {
        height: 36px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        padding: 32px;
        transition: right 0.3s;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 24px;
    }

    .nav-links.active {
        right: 0;
    }

    .two-col,
    .problem-solution,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .paquetes-grid,
    .services-main-grid {
        grid-template-columns: 1fr;
    }

    .gif-grid {
        grid-template-columns: 1fr;
    }

    .hero-services-strip {
        grid-template-columns: 1fr 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .typing-problema-container {
        font-size: 18px !important;
        min-height: 90px !important;
        padding: 0 15px;
    }
}

/* Typing Problema Global */
.typing-problema-container {
    font-size: 24px;
    color: var(--text-dark);
    line-height: 1.4;
    max-width: 750px;
    margin: 0 auto;
    min-height: 70px;
    font-weight: 500;
}