/* InfluCheap v2 — Premium Design System 2026 */

/* Base CSS Variables for the Brand Design System */
:root {
    --bg-color: #000000;                   /* Pure black background */
    --bg-secondary: #050505;               /* Very dark gray background for secondary sections */
    --bg-footer: #000000;                  /* Pure black footer */
    --primary-color: #e11d48;              /* Vibrant pink-red accent */
    --primary-glow: rgba(225, 29, 72, 0.12);
    --white: #ffffff;
    --text-color: #ffffff;                 /* Pure white text */
    --text-light: #cbd5e1;                 /* Slate 300 - significantly brighter */
    --text-dark: #94a3b8;                  /* Slate 400 */
    --border-color: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(255, 255, 255, 0.18);
    --font-family: 'Inter', 'Outfit', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    --bg-card: rgba(10, 15, 26, 0.65);
    --bg-input: rgba(10, 15, 26, 0.85);
    --bg-hover: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(225, 29, 72, 0.08);

    /* Spacing system */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 100px;
    --space-3xl: 140px;

    /* Radius system */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 100px;
}

body {
    background-color: var(--bg-color) !important;
    background-image: none !important;
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.7;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Header Styling */
.site-header {
    background-color: #080b11;
    border-bottom: 1.5px solid #e11d48; /* Línea roja delgada en la parte inferior */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    height: 84px; /* Altura premium */
    display: flex;
    align-items: center;
}

/* Scroll blur effect */
.site-header.header-scrolled {
    background-color: rgba(8, 11, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

@media (min-width: 1025px) {
    .header-container {
        display: grid;
        grid-template-columns: 240px 1fr auto;
        align-items: center;
    }
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 42px;
    max-height: 48px;
    width: auto;
    display: block;
}

.header-navigation-wrapper {
    display: contents; /* splits main-navigation and header-actions into grid cells on desktop */
}

.main-navigation {
    display: flex;
    justify-content: center;
}

/* Desktop Navigation */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    transition: var(--transition);
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px; /* Espaciado amplio */
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.75); /* Slate 300 / gris claro */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    transition: all 0.25s ease;
    padding: 10px 0;
    display: inline-block;
}

.nav-menu a:hover {
    color: #e11d48 !important; /* Hover rojo */
}

.nav-menu .current-menu-item > a {
    color: #e11d48 !important; /* Active state rojo */
    font-weight: 600 !important;
}

/* Underline active indicator */
.nav-menu .current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e11d48; /* Underline rojo */
    box-shadow: 0 0 8px rgba(225, 29, 72, 0.6);
    border-radius: 2px;
}

/* Header Actions & Divider */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.15); /* Separador sutil */
    display: inline-block;
}

/* WooCommerce Cart Icon */
.influcheap-cart-link {
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    transition: all 0.25s ease;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
}

.influcheap-cart-link:hover {
    color: #e11d48 !important;
    background-color: rgba(225, 29, 72, 0.08);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #e11d48; /* Badge rojo */
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #080b11; /* separador del fondo */
    box-shadow: 0 0 5px rgba(225, 29, 72, 0.4);
}

/* CTA Button Desktop */
.header-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #e11d48; /* Botón rojo */
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 100px; /* border-radius amplio */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.2);
}

.header-cta-button:hover {
    transform: translateY(-2px); /* hover lift */
    background-color: #f43f5e;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35), 0 0 10px rgba(225, 29, 72, 0.15); /* hover glow suave */
}

.header-cta-button .cta-arrow {
    transition: transform 0.25s ease;
}

.header-cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.mobile-cta-wrapper {
    display: none !important;
}

/* Homepage Styling */
.site-main {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    padding: 120px 20px;
    background-color: var(--bg-color);
    background-image: url('../images/hero_bg.webp?v=2026.07.01.1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* PNG fallback for browsers without WebP support */
@supports not (background-image: url('data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ//73v/+BiOh/AAA=')) {
    .hero-section {
        background-image: url('../images/hero_bg.png?v=2026.06.22.1');
    }
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.15; /* subtle background visibility */
    pointer-events: none;
}

.svg-btn-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    transition: var(--transition);
}

.svg-inline-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 6px;
    display: inline-block;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(225, 29, 72, 0.06);
    border: 1px solid rgba(225, 29, 72, 0.15);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-color) 40%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subdescription {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn-anchor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.hero-btn-anchor:hover {
    border-color: var(--border-hover);
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Section Common */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

/* Services Intro Section */
.services-intro-section {
    padding: var(--space-2xl) 24px var(--space-md);
    border-top: 1px solid var(--border-color);
}

/* Category Grid Section */
.services-grid-section {
    padding: var(--space-xl) 24px var(--space-3xl);
}

.grid-main-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 16px;
}

.grid-main-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* Bento Grid Layout styles for Desktop */
@media (min-width: 1025px) {
    .services-grid.bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: dense;
    }
    
    .service-card.bento-large {
        grid-column: span 2;
    }
    
    .service-card.bento-small {
        grid-column: span 1;
    }
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    color: var(--text-light);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px var(--primary-glow);
    color: var(--white);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    min-height: 60px;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Modern Service Link Item */
.service-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    background-color: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link-item:hover {
    background-color: rgba(225, 29, 72, 0.04);
    border-color: rgba(225, 29, 72, 0.2);
    color: var(--text-color) !important;
    transform: translateX(4px);
}

.service-link-item .arrow {
    transition: var(--transition);
}

.service-link-item:hover .arrow {
    transform: translateX(4px);
}



/* Custom Social Platform Hover Effects */
#instagram:hover {
    border-color: #e1306c;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(225, 48, 108, 0.08);
}
#instagram:hover .service-icon {
    background: linear-gradient(135deg, #e1306c 0%, #f77737 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}
#instagram .service-links a:hover {
    background-color: rgba(225, 48, 108, 0.05);
    border-color: #e1306c;
    color: #e1306c !important;
}

#tiktok:hover {
    border-color: #00f2fe;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(254, 40, 88, 0.08);
}
#tiktok:hover .service-icon {
    background: linear-gradient(135deg, #ff0050 0%, #00f2fe 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(254, 40, 88, 0.2);
}
#tiktok .service-links a:hover {
    background-color: rgba(254, 40, 88, 0.05);
    border-color: #ff0050;
    color: #ff0050 !important;
}

#facebook:hover {
    border-color: #1877f2;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(24, 119, 242, 0.08);
}
#facebook:hover .service-icon {
    background: linear-gradient(135deg, #1877f2 0%, #00c6ff 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.2);
}
#facebook .service-links a:hover {
    background-color: rgba(24, 119, 242, 0.05);
    border-color: #1877f2;
    color: #1877f2 !important;
}

#spotify:hover {
    border-color: #1db954;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(29, 185, 84, 0.08);
}
#spotify:hover .service-icon {
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.2);
}
#spotify .service-links a:hover {
    background-color: rgba(29, 185, 84, 0.05);
    border-color: #1db954;
    color: #1db954 !important;
}

#twitter:hover {
    border-color: #14171a;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.08);
}
#twitter:hover .service-icon {
    background: linear-gradient(135deg, #14171a 0%, #000000 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#twitter .service-links a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: #14171a;
    color: #14171a !important;
}

#youtube:hover {
    border-color: #ff0000;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(255, 0, 0, 0.08);
}
#youtube:hover .service-icon {
    background: linear-gradient(135deg, #ff0000 0%, #ff4b4b 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}
#youtube .service-links a:hover {
    background-color: rgba(255, 0, 0, 0.05);
    border-color: #ff0000;
    color: #ff0000 !important;
}

#threads:hover {
    border-color: #000000;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.08);
}
#threads:hover .service-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#threads .service-links a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: #000000;
    color: #000000 !important;
}

#twitch:hover {
    border-color: #9146ff;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(145, 70, 255, 0.08);
}
#twitch:hover .service-icon {
    background: linear-gradient(135deg, #9146ff 0%, #b19ffb 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.2);
}
#twitch .service-links a:hover {
    background-color: rgba(145, 70, 255, 0.05);
    border-color: #9146ff;
    color: #9146ff !important;
}

/* Trajectory / Trust counter section */
.trajectory-section {
    padding: var(--space-3xl) 24px;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.counters-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    flex: 1;
    min-width: 240px;
    transition: var(--transition);
}

.counter-item:hover {
    border-color: var(--border-hover);
    border-left-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.counter-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.counter-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.trust-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.bullet-item {
    display: flex;
    gap: 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: var(--transition);
    align-items: flex-start;
}

.bullet-item:hover {
    border-color: var(--border-hover);
}

.bullet-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(225, 29, 72, 0.05);
    border: 1px solid rgba(225, 29, 72, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.bullet-item:hover .bullet-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    border-color: transparent;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.bullet-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    color: var(--primary-color);
    transition: var(--transition);
}

.bullet-item:hover .bullet-icon-wrapper svg {
    color: var(--white);
}

.bullet-item p {
    margin: 0;
    line-height: 1.7;
    font-size: 0.9rem;
    color: var(--text-light);
}/* Contact Section */
.contact-section {
    padding: var(--space-3xl) 24px;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-footer) 100%) !important;
    position: relative;
}

.contact-wrapper {
    max-width: 760px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #25d366 0%, var(--primary-color) 100%);
    opacity: 0.8;
}

.contact-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.contact-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

/* Footer Styling */
.site-footer {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 40px;
    color: #94a3b8;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Red top-left artistic glow */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 0% 0%, rgba(225, 29, 72, 0.22) 0%, rgba(225, 29, 72, 0.06) 45%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Red bottom-left border arc curve */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1.5px solid rgba(225, 29, 72, 0.35);
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.12);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3.2fr 4.2fr 3.2fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-link {
    display: inline-block;
    z-index: 3;
    position: relative;
}

.footer-logo {
    height: 42px;
    max-height: 48px;
    width: auto;
    display: block;
}

.footer-desc {
    line-height: 1.75;
    margin: 0;
    color: #94a3b8;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
}

.footer-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.feature-icon {
    color: #e11d48;
    flex-shrink: 0;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.title-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(225, 29, 72, 0.06);
    border: 1px solid rgba(225, 29, 72, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e11d48;
    box-shadow: 0 0 8px rgba(225, 29, 72, 0.1);
    flex-shrink: 0;
}

/* Links Columns grid */
.footer-links-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.footer-links-grid li {
    display: block;
}

.footer-links-grid a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.platform-link-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-platform-icon {
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Platform icons official colors */
.link-platform-icon.icon-instagram {
    color: #e1306c;
}
.link-platform-icon.icon-threads {
    color: #ffffff;
}
.link-platform-icon.icon-facebook {
    color: #1877f2;
}
.link-platform-icon.icon-tiktok {
    color: #00f2fe;
}
.link-platform-icon.icon-twitter {
    color: #cbd5e1;
}
.link-platform-icon.icon-spotify {
    color: #1db954;
}
.link-platform-icon.icon-youtube {
    color: #ff0000;
}
.link-platform-icon.icon-twitch {
    color: #9146ff;
}

.link-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links-grid a:hover {
    color: #ffffff;
    border-bottom-color: rgba(225, 29, 72, 0.3);
}

.footer-links-grid a:hover .link-platform-icon {
    filter: brightness(1.2) drop-shadow(0 0 3px currentColor);
    transform: scale(1.08);
}

.footer-links-grid a:hover .link-arrow {
    color: #e11d48;
    transform: translateX(3px);
}

/* Contact List and Boxes */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.contact-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background-color: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e11d48;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card-text {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.contact-card-link:hover {
    border-color: rgba(225, 29, 72, 0.25);
    background-color: rgba(225, 29, 72, 0.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-card-link:hover .contact-card-icon {
    background-color: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
    box-shadow: 0 0 8px rgba(225, 29, 72, 0.3);
}

.social-follow-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.social-follow-title {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Social icons official brand coloring */
.footer-social-icons {
    display: flex;
    gap: 16px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.social-icon-link svg {
    display: block;
    z-index: 2;
}

/* Instagram Branding */
.social-icon-link.ig-social {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.25);
}
.social-icon-link.ig-social:hover {
    box-shadow: 0 0 18px rgba(225, 48, 108, 0.55), 0 4px 10px rgba(225, 48, 108, 0.3);
    transform: translateY(-3px) scale(1.08);
}

/* Facebook Branding */
.social-icon-link.fb-social {
    background-color: #1877f2;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.25);
}
.social-icon-link.fb-social:hover {
    background-color: #166fe5;
    box-shadow: 0 0 18px rgba(24, 119, 242, 0.55), 0 4px 10px rgba(24, 119, 242, 0.3);
    transform: translateY(-3px) scale(1.08);
}

/* TikTok Branding */
.social-icon-link.tt-social {
    background-color: #010101;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: -2px -2px 6px rgba(255, 0, 80, 0.35), 2px 2px 6px rgba(0, 242, 254, 0.35);
}
.social-icon-link.tt-social:hover {
    border-color: #00f2fe;
    box-shadow: -3px -3px 12px rgba(255, 0, 80, 0.6), 3px 3px 12px rgba(0, 242, 254, 0.6);
    transform: translateY(-3px) scale(1.08);
}

/* Footer bottom franja - Restructured for symmetry and clean alignment */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
    position: relative;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.12);
}


.footer-payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 4px 0;
}

.payment-logo {
    display: block;
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.payment-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.flow-logo {
    height: 32px;
    width: auto;
}

.paypal-logo {
    height: 32px;
    width: auto;
}

.copyright {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-bottom-disclosure {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
    margin-top: 4px;
}

.footer-legal-mention {
    font-size: 0.74rem;
    color: #64748b;
    opacity: 0.65;
    margin: 0;
    line-height: 1.55;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

/* Responsive Styling (Mobile) */
@media (max-width: 1024px) {
    .site-header {
        height: 72px; /* shorter on mobile */
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 72px;
        padding: 0 20px;
    }
    
    .header-navigation-wrapper {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .header-actions {
        order: 1;
        gap: 0;
    }
    
    .header-actions .header-cta-button,
    .header-actions .header-divider {
        display: none !important;
    }
    
    .main-navigation {
        order: 2;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1010;
    }
    
    .menu-toggle .bar {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #ffffff; /* Hamburger claro */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .menu-main-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #06090e; /* Menú desplegable oscuro */
        border-bottom: 2px solid #e11d48; /* Línea roja fina */
        padding: 30px 24px 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
        box-sizing: border-box;
    }
    
    .menu-main-container.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Espaciado amplio */
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 0; /* Links grandes y fáciles de tocar */
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.05rem;
        font-weight: 500;
        font-family: 'Inter', sans-serif;
        transition: all 0.25s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu .current-menu-item > a {
        color: #e11d48 !important;
        padding-left: 6px;
    }
    
    /* Mobile CTA Button inside Menu */
    .mobile-cta-wrapper {
        display: block !important;
        width: 100%;
        padding-top: 24px;
        margin-top: 10px;
    }
    
    .mobile-cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px;
        background-color: #e11d48;
        color: #ffffff !important;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        border-radius: 100px;
        text-decoration: none;
        text-align: center;
        box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .mobile-cta-button:hover {
        background-color: #f43f5e;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    }
    
    /* Disable desktop sub-menu-toggle */
    .sub-menu-toggle {
        display: none !important;
    }
    
    /* Homepage Responsive */
    .hero-title {
        font-size: 2.3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-bullets {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-bottom-divider {
        display: none;
    }

    .footer-payment-logos {
        gap: 24px;
        justify-content: center;
        padding-bottom: 8px;
    }

    .payment-logo {
        height: 28px;
    }

    .yape-logo {
        height: 30px;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .footer-bottom-disclosure {
        text-align: center;
    }

    .footer-legal-mention {
        text-align: center;
    }
}

/* ==========================================
   Product Page Custom Native Layout Styles
   ========================================== */
.product-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.product-essence {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.product-gallery-column {
    flex: 1;
    max-width: 350px;
    min-width: 260px;
}

.product-summary-column {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Product gallery styling */
.woocommerce-product-gallery {
    position: relative;
    width: 100% !important;
    float: none !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* WooCommerce Product Elements */
.product_title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.woocommerce-product-details__short-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Add to Cart / Variations Form */
.variations_form {
    background-color: var(--bg-card); box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.variations {
    width: 100%;
    border-collapse: collapse;
}

.variations td {
    padding: 10px 0;
    vertical-align: middle;
}

.variations td.label label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
}

.variations td.value select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-weight: 600;
    outline: none;
    transition: var(--transition);
}

.variations td.value select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Advanced Product Fields custom styling */
.wapf-wrapper, .wapf-field-container {
    margin-top: 15px;
}

.wapf-field-label {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
}

.wapf-field-input input[type="text"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: var(--font-family);
    transition: var(--transition);
}

.wapf-field-input input[type="text"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.wapf-errors, .wapf-error {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Quantity and Add to Cart Buttons */
.quantity {
    display: inline-block;
    margin-right: 15px;
}

.quantity input.qty {
    width: 70px;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    text-align: center;
    font-family: var(--font-family);
    font-weight: 700;
}

.single_add_to_cart_button {
    flex: 1;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 150px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 33, 33, 0.2);
}

.single_add_to_cart_button:hover {
    box-shadow: 0 0 25px var(--primary-color);
    transform: scale(1.02);
}

/* FAQs and carousel styles */
.product-extra-content {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.reviews-carousel-section {
    margin-bottom: 60px;
}

.reviews-carousel-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
}

.reviews-carousel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.review-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-image-item img:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.03);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
    color: var(--text-color);
}

.faq-accordion details {
    background-color: var(--bg-card); box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion details:hover {
    border-color: var(--primary-color);
}

.faq-accordion summary {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 20px;
    cursor: pointer;
    color: var(--text-color);
    list-style: none;
    outline: none;
}

.faq-accordion details[open] summary {
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
}

.faq-accordion p {
    padding: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Mobile responsive for product page */
@media (max-width: 768px) {
    .product-essence {
        flex-direction: column;
        gap: 30px;
    }
    
    .reviews-carousel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product_title {
        font-size: 1.8rem;
    }
}

/* Cart Responsive (Mobile) */
@media (max-width: 768px) {
    .woocommerce-cart-form {
        padding: 15px;
    }
    
    .woocommerce-cart-form table.shop_table_responsive thead {
        display: none;
    }
    
    .woocommerce-cart-form table.shop_table_responsive tr {
        display: block;
        margin-bottom: 20px;
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 15px;
    }
    
    .woocommerce-cart-form table.shop_table_responsive tr:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .woocommerce-cart-form table.shop_table_responsive tr td {
        display: block;
        text-align: right;
        padding: 8px 0;
        border-bottom: none;
    }
    
    .woocommerce-cart-form table.shop_table_responsive tr td::before {
        content: attr(data-title) ": ";
        float: left;
        font-weight: 700;
        color: var(--text-color);
    }
    
    .woocommerce-cart-form table.shop_table_responsive tr td.product-remove::before,
    .woocommerce-cart-form table.shop_table_responsive tr td.product-thumbnail::before {
        content: "";
    }
    
    .woocommerce-cart-form table.shop_table_responsive tr td.product-remove {
        text-align: right;
    }
    
    .woocommerce-cart-form table.shop_table_responsive tr td.product-thumbnail {
        text-align: center;
    }
    
    .woocommerce-cart-form .coupon {
        float: none;
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .woocommerce-cart-form .coupon input.input-text {
        width: 100%;
    }
    
    .woocommerce-cart-form button[name="update_cart"] {
        width: 100%;
    }
    
    .cart-collaterals {
        justify-content: center;
    }
    
    .cart_totals {
        width: 100%;
    }
}

.checkout-columns {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.checkout-column-left {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

.checkout-column-right {
    width: 450px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper,
    .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }
    .woocommerce-billing-fields__field-wrapper .form-row-wide,
    .woocommerce-shipping-fields__field-wrapper .form-row-wide,
    .woocommerce-additional-fields__field-wrapper .form-row-wide {
        grid-column: span 1 !important;
    }
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .checkout-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .checkout-column-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout-review-order {
        padding: 20px;
    }
}

/* Customer Addresses Card */
.woocommerce-customer-details {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
}

.woocommerce-customer-details address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- My Account Page --- */
.influcheap-myaccount-container {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.rememberme-lost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.woocommerce-LostPassword.lost_password {
    margin-top: 10px;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .influcheap-myaccount-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .myaccount-navigation-wrapper {
        width: 100%;
    }
    
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .woocommerce-MyAccount-navigation ul li {
        flex: 1 1 auto;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .woocommerce-MyAccount-navigation ul li:last-child {
        border-right: none;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
        padding: 12px 10px;
    }
    
    .woocommerce-MyAccount-navigation ul li a:hover,
    .woocommerce-MyAccount-navigation ul li.is-active a {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }
    
    .customer-login-columns {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .woocommerce-order-overview.order_details {
        flex-direction: column;
        gap: 15px;
    }
    
    .woocommerce-order-overview.order_details li {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 10px;
        width: 100%;
    }
    
    .woocommerce-order-overview.order_details li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .myaccount-content-wrapper {
        padding: 20px;
    }
    
    .login-column,
    .register-column {
        padding: 20px;
    }
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .influcheap-myaccount-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .myaccount-navigation-wrapper {
        width: 100%;
    }
    
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .woocommerce-MyAccount-navigation ul li {
        flex: 1 1 auto;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .woocommerce-MyAccount-navigation ul li:last-child {
        border-right: none;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
        padding: 12px 10px;
    }
    
    .woocommerce-MyAccount-navigation ul li a:hover,
    .woocommerce-MyAccount-navigation ul li.is-active a {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }
    
    .customer-login-columns {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .woocommerce-order-overview.order_details {
        flex-direction: column;
        gap: 15px;
    }
    
    .woocommerce-order-overview.order_details li {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 10px;
        width: 100%;
    }
    
    .woocommerce-order-overview.order_details li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .myaccount-content-wrapper {
        padding: 20px;
    }
    
    .login-column,
    .register-column {
        padding: 20px;
    }
}

.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
    accent-color: var(--primary-color);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .influcheap-myaccount-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .myaccount-navigation-wrapper {
        width: 100%;
    }
    
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .woocommerce-MyAccount-navigation ul li {
        flex: 1 1 auto;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .woocommerce-MyAccount-navigation ul li:last-child {
        border-right: none;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
        padding: 12px 10px;
    }
    
    .woocommerce-MyAccount-navigation ul li a:hover,
    .woocommerce-MyAccount-navigation ul li.is-active a {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }
    
    .customer-login-columns {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .woocommerce-order-overview.order_details {
        flex-direction: column;
        gap: 15px;
    }
    
    .woocommerce-order-overview.order_details li {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 10px;
        width: 100%;
    }
    
    .woocommerce-order-overview.order_details li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .myaccount-content-wrapper {
        padding: 20px;
    }
    
    .login-column,
    .register-column {
        padding: 20px;
    }
}

.woocommerce-account .form-row input.input-text,
.woocommerce-account .form-row textarea,
.woocommerce-account .form-row select,
.woocommerce-account .form-row input[type="text"],
.woocommerce-account .form-row input[type="email"],
.woocommerce-account .form-row input[type="password"],
.woocommerce-account .form-row input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: var(--transition);
}

.woocommerce-account .form-row input.input-text:focus,
.woocommerce-account .form-row textarea:focus,
.woocommerce-account .form-row select:focus,
.woocommerce-account .form-row input[type="text"]:focus,
.woocommerce-account .form-row input[type="email"]:focus,
.woocommerce-account .form-row input[type="password"]:focus,
.woocommerce-account .form-row input[type="tel"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
    outline: none;
}

.woocommerce-account button[type="submit"],
.woocommerce-account button.button,
.woocommerce-account .woocommerce-Button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 150px;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(214, 33, 33, 0.2);
}

.woocommerce-account button[type="submit"]:hover,
.woocommerce-account button.button:hover,
.woocommerce-account .woocommerce-Button:hover {
    box-shadow: 0 0 25px var(--primary-color);
    transform: scale(1.02);
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.woocommerce-account .form-row label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ==========================================================
   Contacto Page Custom Styles (Fase 9.5)
   ========================================================== */
.influcheap-contacto-page-wrapper {
    background-color: var(--bg-color);
    padding: 80px 0;
    color: var(--text-color);
    font-family: var(--font-family);
}

.influcheap-contacto-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.contacto-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacto-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.contacto-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.contacto-card {
    background-color: var(--bg-card); box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacto-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contacto-icon {
    font-size: 1.8rem;
    line-height: 1;
    background-color: var(--bg-hover);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contacto-detail h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-color);
}

.contacto-detail p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contacto-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contacto-faq h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: var(--text-color);
}

.faq-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-color);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contacto-footer-notes {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.contacto-footer-notes a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contacto-footer-notes a:hover {
    text-decoration: underline;
}

/* Right Column: Form Card */
.contacto-form-column {
    position: sticky;
    top: 100px;
}

.contacto-form-card {
    background-color: var(--bg-card); box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.contacto-form-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px var(--primary-glow);
}

.contacto-form-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.contacto-form-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 0 30px 0;
}

/* Contact Form 7 Styling inside Card */
.contacto-form-card form p {
    margin-bottom: 20px;
}

.contacto-form-card label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacto-form-card input[type="text"],
.contacto-form-card input[type="email"],
.contacto-form-card input[type="tel"],
.contacto-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.contacto-form-card input[type="text"]:focus,
.contacto-form-card input[type="email"]:focus,
.contacto-form-card input[type="tel"]:focus,
.contacto-form-card textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
    outline: none;
}

.contacto-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

.contacto-form-card input[type="submit"] {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 150px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.15);
    transition: var(--transition);
    margin-top: 10px;
}

.contacto-form-card input[type="submit"]:hover {
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px) scale(1.02);
}

/* CF7 Ajax Loader and notices */
.wpcf7 .wpcf7-spinner {
    display: block;
    margin: 15px auto 0;
}

.wpcf7 .wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 15px !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--bg-input); !important;
    color: var(--text-color) !important;
}

.wpcf7-mail-sent-ok {
    border-color: #22c55e !important;
    color: #22c55e !important;
}

.wpcf7-validation-errors, .wpcf7-acceptance-missing {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

@media (max-width: 1024px) {
    .influcheap-contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacto-form-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .contacto-main-title {
        font-size: 2rem;
    }
    .contacto-card {
        padding: 20px;
    }
    .contacto-form-card {
        padding: 30px 20px;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .influcheap-gracias-card {
        padding: 40px 25px;
    }
    .influcheap-gracias-card .gracias-title {
        font-size: 2rem;
    }
    .influcheap-gracias-card .gracias-text {
        font-size: 1rem;
    }
    .influcheap-gracias-card .gracias-actions {
        flex-direction: column;
        gap: 12px;
    }
    .influcheap-gracias-card .gracias-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================
   Legal Pages Custom Styles (Fase 11)
   ========================================================== */
.legal-page-main {
    background-color: var(--bg-color);
    padding: 60px 0;
    color: var(--text-color);
    font-family: var(--font-family);
    min-height: 70vh;
}

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-page-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.legal-page-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-page-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.legal-page-breadcrumb a:hover {
    color: var(--primary-color);
}

.legal-breadcrumb-sep {
    margin: 0 8px;
    color: var(--text-light);
    opacity: 0.5;
}

.legal-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: var(--text-color);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.legal-page-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.legal-update-icon {
    font-size: 1.1rem;
}

.legal-page-body {
    background-color: var(--bg-card); box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 35px 0 15px 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 25px 0 12px 0;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content p strong.privacy-policy-tutorial {
    color: var(--primary-color);
}

.legal-content ul, .legal-content ol {
    margin: 0 0 20px 25px;
    padding: 0;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-content a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--primary-glow);
}

@media (max-width: 768px) {
    .legal-page-main {
        padding: 40px 0;
    }
    .legal-page-title {
        font-size: 1.8rem;
    }
    .legal-page-body {
        padding: 25px 20px;
    }
}


/* ==========================================================
   Mega Menú y Reorganización del Header (Fase 11)
   ========================================================== */
@media (min-width: 1025px) {
    .sub-menu-toggle {
        display: none !important;
    }

    .header-container {
        position: relative;
    }
    
    .services-dropdown {
        position: static !important;
    }
    
    .nav-menu ul.services-mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 20px !important;
        right: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 1160px !important;
        transform: translateX(0) translateY(15px) !important;
        background-color: var(--bg-card) !important;
        box-shadow: var(--shadow-lg), var(--shadow-glow) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 16px !important;
        padding: 35px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 25px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: var(--transition) !important;
        box-sizing: border-box !important;
        z-index: 1100 !important;
    }
    
    .services-dropdown:hover ul.services-mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) translateY(0) !important;
    }
    
    /* Columnas del Mega Menú */
    .nav-menu ul.services-mega-menu > li.menu-item-has-children {
        flex: 1 !important;
        min-width: 180px !important;
        list-style: none !important;
        position: relative !important;
    }
    
    /* Títulos de Redes Sociales */
    .nav-menu ul.services-mega-menu > li.menu-item-has-children > a {
        display: block !important;
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        color: var(--text-color) !important;
        border-bottom: 2px solid var(--border-color) !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        pointer-events: none !important; /* Desactivar clics en desktop */
    }
    
    /* Submenú de Servicios */
    .nav-menu ul.services-mega-menu > li.menu-item-has-children > ul.sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        display: block !important;
        min-width: auto !important;
    }
    
    .nav-menu ul.services-mega-menu > li.menu-item-has-children > ul.sub-menu li {
        margin-bottom: 8px !important;
    }
    
    .nav-menu ul.services-mega-menu > li.menu-item-has-children > ul.sub-menu a {
        padding: 5px 0 !important;
        font-size: 0.9rem !important;
        color: var(--text-light) !important;
        transition: var(--transition) !important;
    }
    
    .nav-menu ul.services-mega-menu > li.menu-item-has-children > ul.sub-menu a:hover {
        color: var(--primary-color) !important;
        background: transparent !important;
        padding-left: 6px !important;
    }
    
    /* Ajustes generales del header */
    .nav-menu > li > a {
        position: relative;
    }
    
    .nav-menu > li > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: var(--transition);
    }
    
    .nav-menu > li:hover > a::after {
        width: 100%;
    }
}

/* Estilo para los botones de toggle de submenu en móvil */
@media (max-width: 1024px) {
    .sub-menu-toggle {
        background: none;
        border: none;
        color: var(--text-light);
        padding: 10px;
        position: absolute;
        right: 0;
        top: 0;
        font-size: 0.8rem;
        cursor: pointer;
        transition: var(--transition);
        z-index: 10;
    }
    
    .sub-menu-toggle.active {
        transform: rotate(180deg);
        color: var(--primary-color);
    }
}

/* ==========================================================
   Páginas de Soporte Técnico (Fase 11)
   ========================================================== */

/* --- Cómo Funciona --- */
.como-funciona-main {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.como-funciona-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.como-funciona-header {
    text-align: center;
    margin-bottom: 60px;
}

.como-funciona-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.como-funciona-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.como-funciona-breadcrumb a:hover {
    color: var(--primary-color);
}

.como-funciona-breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.como-funciona-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: var(--text-color);
}

.como-funciona-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.como-funciona-timeline {
    position: relative;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Línea de fondo del timeline */
.como-funciona-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--border-color) 100%);
}

.timeline-step {
    display: flex;
    gap: 30px;
    position: relative;
}

.step-number-wrapper {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 3px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.step-content-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-content-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
}

.step-icon {
    font-size: 2.2rem;
    display: inline-block;
    margin-bottom: 15px;
}

.step-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--text-color);
}

.step-card-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.como-funciona-footer-cta {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.como-funciona-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #b91c1c 100%);
}

.cf-cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 12px 0;
}

.cf-cta-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0 0 30px 0;
}

.cf-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 150px;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
    transition: var(--transition);
}

.cf-cta-btn:hover {
    box-shadow: 0 0 25px var(--primary-color);
    transform: translateY(-2px) scale(1.02);
}

/* --- Sobre Nosotros --- */
.sobre-nosotros-main {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.sobre-nosotros-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sobre-nosotros-header {
    text-align: center;
    margin-bottom: 50px;
}

.sobre-nosotros-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.sobre-nosotros-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.sobre-nosotros-breadcrumb a:hover {
    color: var(--primary-color);
}

.sobre-nosotros-breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.sobre-nosotros-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: var(--text-color);
}

.sobre-nosotros-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Stats */
.sobre-nosotros-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.stat-lbl {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Nosotros Content & Values */
.sobre-nosotros-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.nosotros-text-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.nosotros-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.nosotros-text-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 20px 0;
}

.nosotros-text-card p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: start;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.value-icon {
    font-size: 2rem;
    line-height: 1;
}

.value-text-wrapper h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 8px 0;
}

.value-text-wrapper p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

/* Responsividad General */
@media (max-width: 768px) {
    .como-funciona-title, .sobre-nosotros-title {
        font-size: 2.2rem;
    }
    
    .como-funciona-timeline::before {
        left: 15px;
    }
    
    .timeline-step {
        gap: 15px;
    }
    
    .step-number-wrapper {
        width: 36px;
        height: 36px;
        border-width: 2px;
    }
    
    .step-number {
        font-size: 1rem;
    }
    
    .step-content-card {
        padding: 20px;
    }
    
    .sobre-nosotros-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nosotros-text-card {
        padding: 25px;
    }
}

.contact-icon svg {
    color: var(--primary-color);
}

.step-icon svg {
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    margin-bottom: 0;
}

.value-icon svg {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
}

.contacto-icon svg {
    color: var(--primary-color);
    width: 26px;
    height: 26px;
}

.legal-update-icon svg {
    color: var(--primary-color);
    width: 14px;
    height: 14px;
    margin-right: 6px;
}

.step-content-card:hover,
.value-item:hover,
.contacto-form-card:hover {
    border-color: rgba(225, 29, 72, 0.35) !important;
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(225, 29, 72, 0.18) !important;
    transform: translateY(-4px) !important;
}

/* Modern contact icon background wrapper */
.contacto-icon {
    background-color: rgba(225, 29, 72, 0.05) !important;
    border: 1px solid rgba(225, 29, 72, 0.1) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px !important;
    border-radius: 10px;
}

/* FAQ Accordion Styling inside content-single-product */
.faq-accordion {
    margin-top: 60px;
    background: rgba(15, 23, 42, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 20px !important;
    padding: 45px !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.3) !important;
}

.faq-accordion h2 {
    font-size: 1.9rem !important;
    font-weight: 800 !important;
    margin-bottom: 35px !important;
    color: var(--text-color) !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.faq-accordion details {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 12px !important;
    margin-bottom: 14px !important;
    overflow: hidden;
    transition: var(--transition) !important;
}

.faq-accordion details[open] {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(225, 29, 72, 0.25) !important;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.06) !important;
}

.faq-accordion summary {
    padding: 20px 26px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--text-color) !important;
    cursor: pointer;
    user-select: none;
    outline: none;
    transition: var(--transition) !important;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion summary::-webkit-details-marker {
    display: none !important;
}

.faq-accordion summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-accordion details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-accordion summary:hover {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.faq-accordion details p {
    padding: 0 26px 22px 26px !important;
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: var(--text-light) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
    padding-top: 18px !important;
}

/* Cyberbrutalism Badges — HIDDEN (debug elements, not for production) */
.bento-badge-container,
.cyber-badge {
    display: none !important;
}

/* ==========================================================================
   2026 Visual Fixes: Contrast, Notices, Buttons and Font Normalization
   ========================================================================== */

/* Universal font family normalization for body and form elements */
body, input, select, textarea, button {
    font-family: var(--font-family) !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display) !important;
}

/* WooCommerce Notices and Alerts styling overrides */
.woocommerce-info,
.woocommerce-message,
.woocommerce-notice {
    background-color: var(--bg-card) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color) !important;
    border-left: 4px solid var(--primary-color) !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    margin: 0 0 30px 0 !important;
    box-shadow: var(--shadow-md) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.woocommerce-error {
    background-color: var(--bg-card) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color) !important;
    border-left: 4px solid #ef4444 !important; /* Red color for error alert */
    border-radius: 12px !important;
    padding: 20px 24px 20px 40px !important;
    margin: 0 0 30px 0 !important;
    box-shadow: var(--shadow-md) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    list-style: disc !important;
}

.woocommerce-error li {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    line-height: 1.4 !important;
}

/* Ensure notice group container doesn't duplicate styling */
.woocommerce-NoticeGroup {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    display: block !important;
}


.woocommerce-info a,
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-notice a {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
}

/* Price text color and styling (no text-shadow) */
.price,
.price .amount,
.price ins,
.price ins .amount,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-price-amount,
.amount {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

/* ==========================================================================
   2026 Visual Layout Modernization: Split and Two-Column Tech Grids
   ========================================================================== */

/* Hero two-column layout */
.hero-columns-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.hero-left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 0 25px rgba(225, 29, 72, 0.08);
    transition: var(--transition);
    overflow: hidden;
}

.hero-image-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 35px rgba(225, 29, 72, 0.15);
    transform: scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 1024px) {
    .hero-columns-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-left-column {
        align-items: center;
    }
    .hero-right-column {
        margin-top: 20px;
    }
}

/* Cómo funciona page layout fixes */
.como-funciona-header.split-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
    margin-bottom: 50px;
}

.header-text-column {
    display: flex;
    flex-direction: column;
}

.header-graphic-wrapper {
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    padding: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.header-graphic-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.header-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .como-funciona-header.split-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .header-image-column {
        margin-top: 20px;
    }
}

/* Sobre nosotros split content layout */
.sobre-nosotros-content.split-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.nosotros-graphic-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    padding: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.nosotros-graphic-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.nosotros-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

@media (max-width: 900px) {
    .sobre-nosotros-content.split-content {
        grid-template-columns: 1fr;
    }
    .content-right-column {
        margin-top: 20px;
    }
}


/* ==========================================================
   Header Mega Menu Dropdown Modernization
   ========================================================== */
@media (min-width: 1025px) {
    .nav-menu li.menu-item-has-children.services-dropdown {
        position: static !important; /* Center the mega menu relative to header container */
    }

    .nav-menu li.services-dropdown:hover > ul.services-mega-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition-delay: 0s !important;
    }
    
    .nav-menu ul.services-mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 24px !important;
        right: 24px !important;
        width: calc(100% - 48px) !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        transform: translateY(15px) !important;
        background-color: #050508 !important; /* Fondo negro premium */
        border: 1px solid rgba(225, 29, 72, 0.15) !important; /* Borde fucsia sutil */
        border-radius: 20px !important;
        padding: 40px !important;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important; /* Grilla de 4 columnas x 2 filas */
        gap: 24px !important;
        list-style: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.25s !important;
        transition-delay: 0.25s !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(225, 29, 72, 0.05) !important;
        z-index: 1100 !important;
        box-sizing: border-box !important;
    }

    .nav-menu ul.services-mega-menu::before {
        content: '' !important;
        position: absolute !important;
        top: -30px !important;
        left: 0 !important;
        right: 0 !important;
        height: 30px !important;
        background: transparent !important;
        z-index: 1200 !important;
    }

    /* Tarjetas del Mega Menú */
    .services-mega-menu .ic-mega-card {
        background-color: #0b0b0f !important; /* Fondo tarjeta */
        border: 1px solid rgba(225, 29, 72, 0.12) !important; /* Borde fucsia baja opacidad */
        border-radius: 14px !important;
        padding: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        height: 100% !important;
        box-sizing: border-box !important;
        list-style: none !important;
    }

    /* Hover en Tarjetas */
    .services-mega-menu .ic-mega-card:hover {
        transform: translateY(-4px) !important;
        border-color: rgba(255, 46, 147, 0.4) !important; /* Borde fucsia más visible */
        box-shadow: 0 10px 25px rgba(255, 46, 147, 0.1), 0 0 15px rgba(255, 46, 147, 0.05) !important; /* Glow fucsia */
    }

    /* Cabecera de Tarjeta */
    .services-mega-menu .ic-card-header {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        margin-bottom: 12px !important;
    }

    /* Caja de Icono */
    .services-mega-menu .ic-icon-box {
        width: 38px !important;
        height: 38px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
    
    .services-mega-menu .ic-icon-box.instagram {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.tiktok {
        background: #000000 !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    .services-mega-menu .ic-icon-box.facebook {
        background: #1877f2 !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.youtube {
        background: #ff0000 !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.spotify {
        background: #1db954 !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.twitch {
        background: #9146ff !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.twitter {
        background: #000000 !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    .services-mega-menu .ic-icon-box.threads {
        background: #000000 !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    /* Nombre de Red Social */
    .services-mega-menu .ic-card-title {
        font-family: var(--font-display) !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    /* Descripción corta */
    .services-mega-menu .ic-card-desc {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        color: #cbd5e1 !important; /* Slate 300 (brillante) */
        margin: 0 0 16px 0 !important;
    }

    /* Lista de Productos */
    .services-mega-menu .ic-card-products {
        list-style: none !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        flex-grow: 1 !important;
    }

    .services-mega-menu .ic-card-products li {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 0.82rem !important;
        color: #cbd5e1 !important;
        list-style: none !important;
    }

    .services-mega-menu .ic-card-products a {
        color: #cbd5e1 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .services-mega-menu .ic-card-products a:hover {
        color: #ffffff !important;
        transform: translateX(2px) !important;
    }

    .services-mega-menu .ic-check {
        color: #ff2e93 !important; /* Check fucsia */
        flex-shrink: 0 !important;
    }

    /* Botón "Ver productos" */
    .services-mega-menu .ic-card-cta {
        display: inline-flex !important;
        align-items: center !important;
        font-family: var(--font-display) !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #ff2e93 !important; /* Fucsia */
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        margin-top: auto !important;
    }

    .services-mega-menu .ic-card-cta:hover {
        color: #ffffff !important;
        transform: translateX(4px) !important;
    }

    /* Barra de Confianza */
    .services-mega-menu .ic-mega-trust-bar {
        grid-column: span 4 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin-top: 16px !important;
        padding-top: 24px !important;
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: 20px !important;
        list-style: none !important;
    }

    .services-mega-menu .ic-trust-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .services-mega-menu .ic-trust-icon-wrap {
        color: #ff2e93 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .services-mega-menu .ic-trust-text-wrap {
        display: flex !important;
        flex-direction: column !important;
    }

    .services-mega-menu .ic-trust-title {
        font-size: 0.88rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    .services-mega-menu .ic-trust-sub {
        font-size: 0.78rem !important;
        color: #94a3b8 !important;
        margin-top: 1px !important;
    }
}

/* ==========================================================
   Header Mega Menu Dropdown Modernization (Tablet & Mobile)
   ========================================================== */
@media (max-width: 1024px) {
    .nav-menu ul.services-mega-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 15px 0 !important;
        margin: 0 !important;
        z-index: auto !important;
        list-style: none !important;
    }

    .nav-menu ul.services-mega-menu.active {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columnas en tablet */
        gap: 16px !important;
    }

    .services-mega-menu .ic-mega-card {
        background-color: #0b0b0f !important;
        border: 1px solid rgba(225, 29, 72, 0.12) !important;
        border-radius: 12px !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        list-style: none !important;
    }

    .services-mega-menu .ic-card-header {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 10px !important;
    }

    .services-mega-menu .ic-icon-box {
        width: 32px !important;
        height: 32px !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .services-mega-menu .ic-icon-box svg {
        width: 18px !important;
        height: 18px !important;
    }

    .services-mega-menu .ic-icon-box.instagram {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.tiktok {
        background: #000000 !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    .services-mega-menu .ic-icon-box.facebook {
        background: #1877f2 !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.youtube {
        background: #ff0000 !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.spotify {
        background: #1db954 !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.twitch {
        background: #9146ff !important;
        color: #ffffff !important;
    }
    .services-mega-menu .ic-icon-box.twitter {
        background: #000000 !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    .services-mega-menu .ic-icon-box.threads {
        background: #000000 !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .services-mega-menu .ic-card-title {
        font-family: var(--font-display) !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    .services-mega-menu .ic-card-desc {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
        color: #cbd5e1 !important;
        margin: 0 0 12px 0 !important;
    }

    .services-mega-menu .ic-card-products {
        list-style: none !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
    }

    .services-mega-menu .ic-card-products li {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 0.8rem !important;
        color: #cbd5e1 !important;
        list-style: none !important;
    }

    .services-mega-menu .ic-card-products a {
        color: #cbd5e1 !important;
        text-decoration: none !important;
    }

    .services-mega-menu .ic-check {
        color: #ff2e93 !important;
        flex-shrink: 0 !important;
    }

    .services-mega-menu .ic-card-cta {
        display: inline-flex !important;
        align-items: center !important;
        font-family: var(--font-display) !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        color: #ff2e93 !important;
        text-decoration: none !important;
        margin-top: auto !important;
    }

    .services-mega-menu .ic-mega-trust-bar {
        grid-column: span 2 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin-top: 12px !important;
        padding-top: 16px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px !important;
        list-style: none !important;
    }

    .services-mega-menu .ic-trust-item {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .services-mega-menu .ic-trust-icon-wrap {
        color: #ff2e93 !important;
    }

    .services-mega-menu .ic-trust-text-wrap {
        display: flex !important;
        flex-direction: column !important;
    }

    .services-mega-menu .ic-trust-title {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    .services-mega-menu .ic-trust-sub {
        font-size: 0.72rem !important;
        color: #94a3b8 !important;
    }
}

@media (max-width: 768px) {
    .nav-menu ul.services-mega-menu.active {
        grid-template-columns: 1fr !important;
        max-height: 65vh !important;
        overflow-y: auto !important;
        padding-right: 8px !important;
    }

    .services-mega-menu .ic-mega-trust-bar {
        grid-column: span 1 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
}

/* ==========================================================
   Single Product Form Symmetry & Fields
   ========================================================== */
.single-product div.product form.cart .variations {
    width: 100% !important;
    margin-bottom: 20px !important;
    border: none !important;
    background: transparent !important;
}

.single-product div.product form.cart .variations tr {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 15px !important;
    border: none !important;
}

.single-product div.product form.cart .variations td {
    display: block !important;
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
    background: transparent !important;
}

.single-product div.product form.cart .variations td.label {
    margin-bottom: 8px !important;
    font-family: var(--font-family) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    color: var(--text-color) !important;
    text-align: left !important;
}

/* Symmetrical styles for select & text fields */
.single-product div.product form.cart select,
.single-product div.product form.cart input[type="text"],
.single-product div.product form.cart input[type="number"],
.single-product div.product form.cart input[type="email"],
.single-product div.product form.cart input[type="url"],
.single-product div.product form.cart textarea {
    width: 100% !important;
    height: 50px !important;
    background-color: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    color: var(--text-color) !important;
    font-family: var(--font-family) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: var(--transition) !important;
    outline: none !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.single-product div.product form.cart select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 40px !important;
}

.single-product div.product form.cart select:focus,
.single-product div.product form.cart input:focus,
.single-product div.product form.cart textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.25) !important;
}

.single-product div.product form.cart textarea {
    height: 120px !important;
}

/* ==========================================================
   My Account Page Layout Symmetrical Polishing
   ========================================================== */
.influcheap-myaccount-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start;
}

/* ==========================================================
   Sobre Nosotros Page Design & Layout (México 2026 Theme)
   ========================================================== */
.sobre-nosotros-main {
    background-color: var(--bg-color);
    padding: 80px 0;
    font-family: var(--font-family);
}

.sobre-nosotros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sobre-nosotros-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-nosotros-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.sobre-nosotros-breadcrumb-sep {
    margin: 0 8px;
    color: var(--text-dark);
}

.sobre-nosotros-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--text-color) 30%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sobre-nosotros-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
}

.sobre-nosotros-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about-hero-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.primary-about-btn {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.primary-about-btn:hover {
    box-shadow: 0 0 25px var(--primary-color);
    transform: translateY(-2px);
}

.secondary-about-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.secondary-about-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(225, 29, 72, 0.1);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

/* Stats Section */
.sobre-nosotros-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-4px);
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(225, 29, 72, 0.3);
}

.stat-lbl {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Split Section */
.sobre-nosotros-content.split-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.nosotros-text-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nosotros-section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.nosotros-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-color);
}

.nosotros-text-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.nosotros-text-card p.lead-p {
    font-size: 1.20rem;
    color: var(--text-color);
    font-weight: 500;
}

.nosotros-graphic-card {
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    padding: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

/* Core Pillars Grid */
.about-pillars-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 80px;
}

.about-section-subtitle-tag {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 40px;
    display: block;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    transition: var(--transition);
}

.pillar-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md), 0 0 15px rgba(225, 29, 72, 0.08);
}

.pillar-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(225, 29, 72, 0.15);
    position: absolute;
    top: 20px;
    right: 25px;
}

.pillar-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pillar-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Proposition List */
.prop-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin-top: 15px;
}

.prop-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.prop-num {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    background-color: rgba(225, 29, 72, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.2);
}

.prop-details h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 6px;
}

.prop-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Benefits Card Visual (Compact Table) */
.nosotros-card-visual {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.glow-border-card {
    border-color: rgba(225, 29, 72, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(225, 29, 72, 0.05);
}

.visual-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 10px;
}

.visual-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.benefits-compact-table {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.1fr;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    padding: 12px 15px;
    color: var(--text-light);
}

.benefit-row:last-child {
    border-bottom: none;
}

.benefit-row.header-row {
    background-color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: var(--text-color);
}

.benefit-row .b-title {
    font-weight: 700;
    color: var(--white);
}

/* How Steps Flow */
.about-how-it-works-section {
    background-color: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px 40px;
    margin-bottom: 80px;
    box-shadow: var(--shadow-md);
}

.about-section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how-steps-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.flow-step {
    text-align: center;
    position: relative;
}

.flow-step::after {
    content: '→';
    font-size: 1.5rem;
    color: var(--text-dark);
    position: absolute;
    top: 25px;
    right: -15px;
}

.flow-step:last-child::after {
    display: none;
}

.step-badge {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    background-color: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.2);
}

.flow-step h5 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 10px;
}

.flow-step p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

.step-warning-note {
    margin-top: 40px;
    padding: 15px 30px;
    background-color: rgba(251, 191, 36, 0.04);
    border: 1px dashed rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: #fbbf24;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    font-size: 1.1rem;
}

/* Corporate Legal Section */
.about-legal-section {
    margin-bottom: 80px;
}

.legal-table-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.legal-grid-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 24px;
    align-items: center;
}

.legal-grid-row:last-child {
    border-bottom: none;
}

.legal-grid-label {
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.legal-grid-value {
    font-size: 1.05rem;
    color: var(--text-color);
}

.font-highlight {
    color: var(--white);
    font-weight: 700;
}

.font-mono {
    font-family: monospace;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.legal-link:hover {
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Presence Section & Pills */
.about-presence-section {
    margin-bottom: 80px;
}

.cities-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 30px auto 0;
}

.city-pill {
    padding: 10px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.city-pill:hover {
    border-color: var(--primary-color);
    background-color: rgba(225, 29, 72, 0.08);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.15);
    transform: scale(1.05);
}

/* About CTA Bottom */
.about-footer-cta {
    background: radial-gradient(circle at center, rgba(225, 29, 72, 0.1) 0%, transparent 80%), var(--bg-card);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(225, 29, 72, 0.03);
    margin-bottom: 20px;
}

.about-cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.about-cta-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Green whatsapp theme */
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    transition: var(--transition);
}

.about-cta-btn:hover {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsiveness for About Us page */
@media (max-width: 1024px) {
    .sobre-nosotros-stats {
        gap: 15px;
    }
    .sobre-nosotros-content.split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-right-column {
        display: flex;
        justify-content: center;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .how-steps-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .flow-step::after {
        content: '↓';
        top: auto;
        bottom: -25px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .sobre-nosotros-title {
        font-size: 2.5rem;
    }
    .sobre-nosotros-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .legal-grid-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .about-cta-title {
        font-size: 1.7rem;
    }
}

    font-size: 1.1rem;
}

/* Corporate Legal Section */
.about-legal-section {
    margin-bottom: 80px;
}

.legal-table-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.legal-grid-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 24px;
    align-items: center;
}

.legal-grid-row:last-child {
    border-bottom: none;
}

.legal-grid-label {
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.legal-grid-value {
    font-size: 1.05rem;
    color: var(--text-color);
}

.font-highlight {
    color: var(--white);
    font-weight: 700;
}

.font-mono {
    font-family: monospace;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.legal-link:hover {
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Presence Section & Pills */
.about-presence-section {
    margin-bottom: 80px;
}

.cities-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 30px auto 0;
}

.city-pill {
    padding: 10px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.city-pill:hover {
    border-color: var(--primary-color);
    background-color: rgba(225, 29, 72, 0.08);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.15);
    transform: scale(1.05);
}

/* About CTA Bottom */
.about-footer-cta {
    background: radial-gradient(circle at center, rgba(225, 29, 72, 0.1) 0%, transparent 80%), var(--bg-card);
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(225, 29, 72, 0.03);
    margin-bottom: 20px;
}

.about-cta-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.about-cta-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Green whatsapp theme */
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    transition: var(--transition);
}

.about-cta-btn:hover {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsiveness for About Us page */
@media (max-width: 1024px) {
    .sobre-nosotros-stats {
        gap: 15px;
    }
    .sobre-nosotros-content.split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-right-column {
        display: flex;
        justify-content: center;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .how-steps-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .flow-step::after {
        content: '↓';
        top: auto;
        bottom: -25px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .sobre-nosotros-title {
        font-size: 2.5rem;
    }
    .sobre-nosotros-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .legal-grid-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .about-cta-title {
        font-size: 1.7rem;
    }
}

/* ==========================================================
   Product Description Direct Container Styles
   ========================================================== */
.product-description-direct {
    background-color: #030303 !important;
    border: 1px solid rgba(225, 29, 72, 0.2) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    margin-top: 50px !important;
    margin-bottom: 30px !important;
    color: var(--text-light) !important;
    font-family: var(--font-family) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(225, 29, 72, 0.04) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Glow Effect */
.product-description-direct::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.03) 0%, transparent 60%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.details-main-grid {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: 1.2fr 2fr 1.1fr !important;
    gap: 30px !important;
    align-items: stretch !important;
    margin-bottom: 35px !important;
}

/* Col Left */
.details-col-left {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-right: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.details-cta-title {
    font-family: var(--font-display) !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin: 0 0 15px 0 !important;
    letter-spacing: -0.02em !important;
}

.details-cta-title .text-highlight-word {
    color: #ffffff !important;
}

.details-cta-title .text-gradient-words {
    background: linear-gradient(90deg, #ff2e93, #ff5e62) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: block !important;
    margin-top: 5px !important;
}

.details-title-line {
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ff2e93, #ff5e62) !important;
    margin-bottom: 20px !important;
    border-radius: 2px !important;
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.5) !important;
}

.details-persuasive-text {
    font-size: 0.95rem !important;
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Col Center (Benefits) */
.details-col-center {
    display: flex !important;
    align-items: stretch !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-right: 10px !important;
    gap: 0 !important;
}

.benefit-card {
    flex: 1 !important;
    padding: 0 10px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.benefit-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.benefit-icon-wrapper {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 46, 147, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    background: rgba(255, 46, 147, 0.04) !important;
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.1) !important;
    transition: all 0.3s ease !important;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: translateY(-3px) scale(1.05) !important;
    border-color: rgba(255, 46, 147, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 46, 147, 0.3) !important;
    background: rgba(255, 46, 147, 0.08) !important;
}

.benefit-icon {
    width: 26px !important;
    height: 26px !important;
    color: #ff2e93 !important;
}

.benefit-title {
    font-family: var(--font-display) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;
}

.benefit-desc {
    font-size: 0.8rem !important;
    color: #94a3b8 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* Col Right (CTA & Trust) */
.details-col-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 10px !important;
}

.trust-badge-row {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    max-width: 220px !important;
}

.trust-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 1.5px solid #ff2e93 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 46, 147, 0.03) !important;
    box-shadow: 0 0 12px rgba(255, 46, 147, 0.15) !important;
    flex-shrink: 0 !important;
}

.trust-icon {
    width: 22px !important;
    height: 22px !important;
    color: #ff2e93 !important;
}

.trust-list-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
}

.trust-list-text span {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
    letter-spacing: -0.01em !important;
}

.details-primary-cta {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    background: linear-gradient(135deg, #ff2e93 0%, #ff5e62 100%) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 46, 147, 0.3) !important;
    border: none !important;
    margin-bottom: 18px !important;
}

.details-primary-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 46, 147, 0.5) !important;
    filter: brightness(1.1) !important;
}

.details-social-proof {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    justify-content: center !important;
}

.avatar-group {
    display: flex !important;
    align-items: center !important;
}

.avatar-simulated {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    border: 2px solid #030303 !important;
    margin-left: -10px !important;
    background-size: cover !important;
    background-position: center !important;
    display: inline-block !important;
}

.avatar-1 {
    margin-left: 0 !important;
}

.avatar-2 {
}

.avatar-3 {
}

.avatar-4 {
}

.stars-and-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
}

.stars-row {
    display: flex !important;
    gap: 2px !important;
}

.star-icon {
    width: 14px !important;
    height: 14px !important;
    color: #ffb800 !important;
}

.proof-count-text {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

/* Steps Section (Barra Inferior) */
.details-bottom-steps {
    position: relative !important;
    z-index: 2 !important;
    background: rgba(255, 255, 255, 0.015) !important;
    border: 1px solid rgba(255, 46, 147, 0.08) !important;
    border-radius: 14px !important;
    padding: 16px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin-top: 10px !important;
}

.steps-intro-title {
    font-family: var(--font-display) !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    color: #ff2e93 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.steps-flow-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 1 !important;
    gap: 10px !important;
}

.step-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 1 !important;
}

.step-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.02) !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.step-item:hover .step-icon-wrapper {
    border-color: rgba(255, 46, 147, 0.3) !important;
    background: rgba(255, 46, 147, 0.05) !important;
    box-shadow: 0 0 8px rgba(255, 46, 147, 0.1) !important;
}

.step-icon {
    width: 16px !important;
    height: 16px !important;
    color: #cbd5e1 !important;
}

.step-text-content {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.step-title {
    font-family: var(--font-display) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 2px 0 !important;
}

.step-desc {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.step-separator {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 5px !important;
}

.step-arrow {
    width: 14px !important;
    height: 14px !important;
    color: #ff2e93 !important;
    opacity: 0.6 !important;
}

/* ==========================================================
   Responsive Breakpoints for Option 3 Redesign
   ========================================================== */

/* Tablet Layout (max-width: 1024px) */
@media (max-width: 1024px) {
    .details-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .details-col-left {
        border-right: none !important;
        padding-right: 0 !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .details-title-line {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .details-col-center {
        border-right: none !important;
        padding-right: 0 !important;
    }
    
    .details-col-right {
        padding-left: 0 !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-top: 25px !important;
    }
    
    .trust-badge-row {
        margin-bottom: 0 !important;
        max-width: 250px !important;
    }
    
    .details-primary-cta {
        margin-bottom: 0 !important;
        max-width: 300px !important;
    }
    
    .details-social-proof {
        width: auto !important;
    }
}

/* Smaller Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .product-description-direct {
        padding: 30px 20px !important;
    }
    
    .details-col-center {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .benefit-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-bottom: 20px !important;
        width: 100% !important;
    }
    
    .benefit-card:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .details-col-right {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
    }
    
    .trust-badge-row {
        justify-content: center !important;
    }
    
    .details-primary-cta {
        max-width: 100% !important;
    }
    
    .details-bottom-steps {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }
    
    .steps-flow-container {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 15px !important;
    }
    
    .step-separator {
        display: none !important;
    }
    
    .step-item {
        width: 100% !important;
    }
}

/* Mobile Layout (max-width: 480px) */
@media (max-width: 480px) {
    .details-cta-title {
        font-size: 1.8rem !important;
    }
    
    .product-description-direct {
        padding: 20px 15px !important;
    }
}

/* ==========================================================
   Preguntas Frecuentes Page Redesign (Ultra-Modern 2026/2030)
   ========================================================== */
.faq-page-main {
    background-color: var(--bg-color);
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.faq-page-main::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.faq-page-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.faq-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-page-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-page-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.faq-page-breadcrumb a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.faq-page-breadcrumb-sep {
    color: var(--text-dark);
}

.faq-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 30%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.faq-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.faq-accordion-wrapper details {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-accordion-wrapper details[open] {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(225, 29, 72, 0.25);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(225, 29, 72, 0.04);
}

.faq-accordion-wrapper details:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-accordion-wrapper details[open]:hover {
    border-color: rgba(225, 29, 72, 0.4);
}

.faq-accordion-wrapper summary {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    list-style: none; /* Hide standard marker */
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    user-select: none;
}

/* Hide standard triangle marker in Safari */
.faq-accordion-wrapper summary::-webkit-details-marker {
    display: none;
}

.faq-accordion-wrapper summary::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 200;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion-wrapper details:hover summary::after {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-accordion-wrapper details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
    color: var(--primary-color);
    background: rgba(225, 29, 72, 0.08);
    border-color: rgba(225, 29, 72, 0.25);
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.15);
}

.faq-accordion-wrapper details p {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.faq-page-footer-cta {
    background: radial-gradient(circle at 100% 100%, rgba(225, 29, 72, 0.06) 0%, transparent 65%), rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(225, 29, 72, 0.12);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-page-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.3), transparent);
}

.faq-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.faq-cta-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);
}

.faq-cta-btn:active {
    transform: translateY(0);
}

/* ============================================================
   Fase 15 — Pulido Visual Premium y Corrección de Overrides
   ============================================================ */

/* Normalización de headings para prevenir overrides de italic de Elementor/plugins */
h1, h2, h3, h4, h5, h6 {
    font-style: normal !important;
}

/* Corrección de contraste del link de Reset de Variaciones de WooCommerce */
.reset_variations {
    color: var(--text-light) !important;
    font-size: 0.85rem !important;
    text-decoration: underline !important;
    margin-left: 10px !important;
    transition: var(--transition) !important;
}

.reset_variations:hover {
    color: var(--primary-color) !important;
}

/* Rediseño con Glassmorphism del Widget Lateral de Multidivisas */
.woocommerce-multi-currency.wmc-sidebar {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px 0 0 12px !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 10px !important;
    transition: var(--transition) !important;
}

.woocommerce-multi-currency.wmc-sidebar .wmc-currency {
    border-radius: 8px !important;
    margin: 4px 0 !important;
    transition: var(--transition) !important;
}

.woocommerce-multi-currency.wmc-sidebar .wmc-currency a {
    color: var(--text-color) !important;
    font-family: var(--font-family) !important;
    font-weight: 500 !important;
}

.woocommerce-multi-currency.wmc-sidebar .wmc-currency:hover {
    background: var(--bg-hover) !important;
}

.woocommerce-multi-currency.wmc-sidebar .wmc-currency.wmc-active {
    background: var(--primary-color) !important;
}

.woocommerce-multi-currency.wmc-sidebar .wmc-currency.wmc-active a {
    color: var(--white) !important;
}

.woocommerce-multi-currency.wmc-sidebar .wmc-currency-content-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ============================================================
   Fase 16 — Pulido Visual Premium y Productos Relacionados
   ============================================================ */

/* Hide inline multi-currency switcher flags on product pages */
.single-product .woocommerce-multi-currency:not(.wmc-sidebar),
.single-product .wmc-shortcode,
.single-product .woocommerce-multi-currency-list,
.single-product .woocommerce-multi-currency-list-container {
    display: none !important;
}

/* Force multi-currency sidebar toggle button to be visible */
.wmc-sidebar-open {
    display: flex !important;
}

/* Compact single product title and price */
.single-product .product_title {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
}

@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 1.5rem !important;
    }
}

.single-product p.price {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    text-shadow: none !important;
    margin-bottom: 8px !important;
}

/* Compact layout for order form inputs */
.single-product .variations_form {
    padding: 20px !important;
    gap: 15px !important;
}

.single-product .variations td.label {
    padding-bottom: 5px !important;
}

.single-product .wapf-wrapper, 
.single-product .wapf-field-container {
    margin-top: 10px !important;
}

/* Style related products titles and cards */
.related.products {
    margin-top: var(--space-xl) !important;
    border-top: 1px solid var(--border-color) !important;
    padding-top: var(--space-lg) !important;
}

.related.products h2 {
    font-family: var(--font-display) !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin-bottom: var(--space-md) !important;
    color: var(--text-color) !important;
    text-align: center !important; /* Centered related products title */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1) !important;
}

.related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px)) !important; /* Symmetric centering */
    justify-content: center !important; /* Center the grid items horizontally */
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 1200px !important;
}

.related.products ul.products li.product {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    padding: 20px !important;
    transition: var(--transition) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    position: relative !important;
    width: 100% !important;
    margin: 0 !important;
}

.related.products ul.products li.product:hover {
    border-color: rgba(225, 29, 72, 0.35) !important;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.08) !important;
    transform: translateY(-4px) !important;
}

.related.products ul.products li.product img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 6px !important;
    margin-bottom: 12px !important;
}

.related.products ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: var(--text-color) !important;
    margin: 8px 0 12px 0 !important;
    line-height: 1.4 !important;
    min-height: auto !important;
}

.related.products ul.products li.product .woocommerce-loop-product__title:hover {
    color: var(--primary-color) !important;
}

.related.products ul.products li.product a {
    text-decoration: none !important;
    color: inherit !important;
}

.related.products ul.products li.product .price {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    margin-bottom: 16px !important;
    text-shadow: none !important;
}

.related.products ul.products li.product .button {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
    color: var(--white) !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full) !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 10px rgba(214, 33, 33, 0.15) !important;
    margin-top: auto !important;
}

.related.products ul.products li.product .button:hover {
    box-shadow: 0 0 15px var(--primary-color) !important;
    transform: scale(1.02) !important;
}

/* Fix layout asymmetry in related products grid */
.related.products ul.products::before,
.related.products ul.products::after {
    content: none !important;
    display: none !important;
}

/* Fix squished letter spacing on titles and headings inherited from Elementor */
.related.products h2,
.related.products ul.products li.product .woocommerce-loop-product__title {
    letter-spacing: normal !important;
}

/* Fix font-family and legibility of buttons inside related products */

.single-product .variations td.label {
    padding-bottom: 2px !important;
}

.single-product .variations td.value select,
.single-product div.product form.cart select {
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    height: 42px !important;
    line-height: 1.2 !important;
    background-position: right 10px center !important;
}

.single-product .wapf-wrapper,
.single-product .wapf-field-container {
    margin-top: 6px !important;
}

.single-product .wapf-field-label {
    margin-bottom: 4px !important;
    font-size: 0.85rem !important;
}

.single-product .wapf-field-input input[type="text"],
.single-product div.product form.cart input[type="text"] {
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    height: 42px !important;
    box-sizing: border-box !important;
}

.single-product .wmc-shortcode,
.single-product .woocommerce-multi-currency-list,
.single-product .woocommerce-multi-currency-list-container {
    display: none !important;
}

/* Force multi-currency sidebar toggle button to be visible */
.wmc-sidebar-open {
    display: flex !important;
}

/* Compact single product title and price */
.single-product .product_title {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
}

@media (max-width: 768px) {
    .single-product .product_title {
        font-size: 1.5rem !important;
    }
}

.single-product p.price {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    text-shadow: none !important;
    margin-bottom: 8px !important;
}

/* Compact layout for order form inputs */
.single-product .variations_form {
    padding: 20px !important;
    gap: 15px !important;
}

.single-product .variations td.label {
    padding-bottom: 5px !important;
}

.single-product .wapf-wrapper, 
.single-product .wapf-field-container {
    margin-top: 10px !important;
}



/* Fix font-family and legibility of buttons inside related products */

.single-product .variations td.label {
    padding-bottom: 2px !important;
}

.single-product .variations td.value select,
.single-product div.product form.cart select {
    padding: 8px 12px !important;
    font-size: 0.9rem !important;
    height: 42px !important;
    line-height: 1.2 !important;
    background-position: right 10px center !important;
}

.single-product .wapf-wrapper,
.woocommerce.single-product div.product form.cart .wapf-wrapper {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
    padding: 0 !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-container {
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-row {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce.single-product div.product form.cart .wapf-field {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-label {
    margin-bottom: 2px !important;
    font-size: 0.8rem !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-input input[type="text"],
.woocommerce.single-product div.product form.cart input[type="text"] {
    width: 100% !important;
    max-width: 100% !important;
    height: 38px !important; /* Premium unified height */
    font-size: 0.875rem !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    border-radius: 8px !important; /* Premium rounded border */
    margin: 0 !important;
    background-color: #0b0b0b !important; /* Solid dark black input */
    border: 1px solid rgba(225, 29, 72, 0.4) !important; /* Subtle neon border */
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.15) !important;
    transition: all 0.25s ease !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-input input[type="text"]:focus,
.woocommerce.single-product div.product form.cart .wapf-field-input input[type="text"]:hover,
.woocommerce.single-product div.product form.cart input[type="text"]:focus,
.woocommerce.single-product div.product form.cart input[type="text"]:hover {
    border-color: #ff2e63 !important;
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.55), inset 0 0 8px rgba(255, 46, 99, 0.15) !important;
    outline: none !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    width: 100% !important;
    margin-bottom: 8px !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-label {
    margin-bottom: 6px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #f8fafc !important; /* Premium bright label */
    text-align: left !important;
    display: inline-block !important;
}

.woocommerce.single-product div.product form.cart .wapf-field-input {
    width: 100% !important;
}

/* Compact single product quantity - Hidden */
.woocommerce.single-product .quantity,
.woocommerce.single-product div.product form.cart .quantity {
    display: none !important;
}

/* ============================================================
   Fase 17+ — Formulario Compacto y Reordenamiento Visual
   ============================================================ */

/* ============================================================
   Fase 17+ — Formulario Compacto, Reordenamiento Visual y Alineación
   ============================================================ */

.single-product .product-summary-column,
.single-product div.product .summary.entry-summary {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    row-gap: 8px !important;
}

/* 1 — Product title: Left aligned on col 1, row 1 */
.single-product .product-summary-column .product_title,
.single-product .summary .product_title {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-align: left !important;
    justify-self: start !important;
}

/* 2 — Static price ("Desde $19 MXN"): Right aligned on col 2, row 1 (side-by-side with title) */
.single-product .product-summary-column p.price,
.single-product .summary p.price {
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #e11d48 !important; /* Theme red */
    white-space: nowrap !important;
    text-align: right !important;
    justify-self: end !important;
    align-self: center !important;
}

/* 3 — Short description: Left aligned on row 2 */
.single-product .product-summary-column .woocommerce-product-details__short-description,
.single-product .summary .woocommerce-product-details__short-description {
    grid-column: span 2 !important;
    grid-row: 2 !important;
    margin-top: 4px !important;
    margin-bottom: 12px !important;
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
    color: var(--text-light) !important;
    text-align: left !important;
}

/* 4 — Order form: compressed 40% on desktop (max-width: 60%) on row 3 */
.single-product .product-summary-column form.cart,
.single-product .product-summary-column .variations_form,
.single-product .summary form.cart {
    grid-column: span 2 !important;
    grid-row: 3 !important;
    width: 100% !important;
}

@media (min-width: 769px) {
    .single-product .product-summary-column form.cart,
    .single-product .product-summary-column .variations_form,
    .single-product .summary form.cart {
        max-width: 60% !important; /* 40% reduction from 100% */
        margin: 0 auto !important;
        padding: 15px !important; /* Tight padding */
        gap: 12px !important;
    }
}

/* 5 — Product meta (SKU, category, tags) - Hidden */
.single-product .product-summary-column .product_meta,
.single-product .summary .product_meta,
.single-product .quantity,
.single-product form.cart .quantity,
.single-product div.product form.cart .quantity {
    grid-column: span 2 !important;
    grid-row: 4 !important;
    display: none !important;
}

/* Display the dynamic price when a variation is selected */
.woocommerce.single-product div.product form.cart .woocommerce-variation {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce.single-product div.product form.cart .single_variation_wrap {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce.single-product div.product form.cart .woocommerce-variation-price {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 4px !important;
    margin-bottom: 6px !important;
    padding: 0 !important;
}

.woocommerce.single-product div.product form.cart .woocommerce-variation-price span.price,
.woocommerce.single-product div.product form.cart .woocommerce-variation-price .amount {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #ff2e63 !important; /* Brighter neon red */
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.6) !important;
}

/* Custom Add to Cart and Buy Now side-by-side layouts */
.custom-add-to-cart-wrap {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
}

.buy_now_button {
    flex: none !important;
    width: 60% !important;
    height: 44px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    outline: none !important;
}

.buy_now_button:hover {
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.55) !important;
    transform: translateY(-2px) !important;
}

.single_add_to_cart_button.secondary-add-to-cart {
    flex: none !important;
    width: 37% !important;
    height: 44px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    text-align: center !important;
    outline: none !important;
}

.single_add_to_cart_button.secondary-add-to-cart:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* WAPF dynamic calculated total price high contrast dark theme styles */
.wapf-grand-total,
.wapf-grand-total-markup,
.wapf-total-price,
.wapf-pricing-markup {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    margin: 10px auto !important;
    padding: 8px 16px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    width: fit-content !important;
}

.wapf-grand-total,
.wapf-grand-total *,
.wapf-grand-total-markup,
.wapf-grand-total-markup * {
    color: #cbd5e1 !important; /* Soft white text */
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.wapf-grand-total .wapf-grand-total-price,
.wapf-grand-total .amount,
.wapf-grand-total .wapf-price,
.wapf-grand-total-markup .wapf-grand-total-price,
.wapf-grand-total-markup .amount,
.wapf-grand-total-markup .wapf-price {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #ff2e63 !important; /* Neon red */
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.6) !important;
    margin-left: 6px !important;
    display: inline-block !important;
}

/* Tighten the add-to-cart row spacing and layout */
.woocommerce.single-product div.product form.cart .woocommerce-variation-add-to-cart {
    margin-top: 6px !important;
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
}

/* Variations table side-by-side layout (Fase 17+ optimizations) */
.woocommerce.single-product div.product form.cart table.variations {
    width: 100% !important;
    margin-bottom: 0px !important;
    border: none !important;
}

.woocommerce.single-product div.product form.cart table.variations tbody {
    display: block !important;
    width: 100% !important;
}

.woocommerce.single-product div.product form.cart table.variations tr {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin-bottom: 8px !important;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce.single-product div.product form.cart table.variations th {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 4px 0 !important;
    text-align: left !important;
    align-self: flex-start !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce.single-product div.product form.cart table.variations th label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #f8fafc !important; /* Premium bright label */
    margin: 0 !important;
    display: inline-block !important;
}

.woocommerce.single-product div.product form.cart table.variations td {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

.woocommerce.single-product div.product form.cart table.variations select {
    width: 100% !important;
    max-width: 100% !important;
    height: 38px !important; /* Premium unified height */
    padding: 0 40px 0 12px !important; /* Space for arrow */
    font-size: 0.875rem !important;
    border-radius: 8px !important; /* Premium rounded border */
    margin: 0 !important;
    background-color: #0b0b0b !important; /* Solid dark black input */
    border: 1px solid rgba(225, 29, 72, 0.4) !important; /* Subtle neon border */
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.15) !important;
    transition: all 0.25s ease !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff2e63' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 16px !important;
}

.woocommerce.single-product div.product form.cart table.variations select:focus,
.woocommerce.single-product div.product form.cart table.variations select:hover {
    border-color: #ff2e63 !important;
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.55), inset 0 0 8px rgba(255, 46, 99, 0.15) !important;
}

.woocommerce.single-product div.product form.cart table.variations select option {
    background-color: #0b0b0b !important;
    color: #ffffff !important;
}

.woocommerce.single-product div.product form.cart .reset_variations {
    display: none !important;
}

/* Overall form card: integrated flat black layout */
.single-product div.product form.cart {
    background: transparent !important; /* Blends with pure black page background */
    border: none !important; /* No box border */
    box-shadow: none !important; /* No container shadow */
    border-radius: 0 !important;
    padding: 0 !important; /* Flush margin spacing */
    gap: 12px !important;
    margin-top: 8px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
}

.single-product div.product form.cart:hover {
    border-color: rgba(225, 29, 72, 0.45) !important;
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.25) !important;
}

/* Make add to cart button a small square icon button (38px tall) and place it on the right */
.woocommerce.single-product div.product form.cart .single_add_to_cart_button,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button {
    order: 2 !important;
    height: 38px !important; /* Unified 38px height */
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    flex: 0 0 42px !important;
    padding: 0 !important;
    font-size: 0 !important; /* Hides text */
    color: transparent !important;
    text-indent: -9999px !important;
    position: relative !important;
    background: #0b0b0b !important; /* Symmetrical dark input background */
    border: 1px solid rgba(225, 29, 72, 0.4) !important; /* Subtle neon border */
    border-radius: 8px !important; /* Rounded 8px */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    overflow: hidden !important;
    margin: 0 !important;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.15) !important;
}

.woocommerce.single-product div.product form.cart .single_add_to_cart_button::before,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
}

.woocommerce.single-product div.product form.cart .single_add_to_cart_button:hover,
.woocommerce.single-product div.product form.cart button.single_add_to_cart_button:hover {
    background: #111111 !important;
    border-color: #ff2e63 !important;
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.55), inset 0 0 8px rgba(255, 46, 99, 0.15) !important;
}

/* Main primary button: "Hacer pedido" (38px tall) placed on the left */
.woocommerce.single-product div.product form.cart .buy_now_button,
.woocommerce.single-product div.product form.cart button.buy_now_button {
    order: 1 !important;
    flex-grow: 1 !important;
    height: 38px !important; /* Unified 38px height */
    padding: 4px 12px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    font-family: var(--font-family) !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
    border: none !important;
    border-radius: 8px !important; /* Rounded 8px */
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25) !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

.woocommerce.single-product div.product form.cart .buy_now_button:hover,
.woocommerce.single-product div.product form.cart button.buy_now_button:hover {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%) !important;
    box-shadow: 0 6px 16px rgba(225, 29, 72, 0.35) !important;
    transform: translateY(-1px) !important;
}

/* Related products button font fix */
.related.products ul.products li.product .button {
    font-family: var(--font-family) !important;
    letter-spacing: 0.05em !important;
}

/* ============================================================
   Fase 17+ — Optimización de Imagen de Galería y Efecto Neón
   ============================================================ */

/* Expand the left column and display the graphic integrated as a background */
@media (min-width: 769px) {
    .single-product .product-essence {
        align-items: center !important; /* Center vertically for perfect symmetry */
        gap: 32px !important;
    }

    .single-product .product-gallery-column {
        max-width: 480px !important; /* Expand max-width from 350px */
        flex: 1.2 !important;
    }
    
    .single-product .product-summary-column {
        flex: 1.5 !important;
    }
}

.single-product .product-gallery-column {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* Keep square ratio dynamically */
    margin: 0 auto !important;
}

/* Hide WooCommerce default gallery to show the graphic integrated with the background */
.single-product .product-gallery-column .woocommerce-product-gallery {
    display: none !important;
}

/* Container outline and glow are removed to let the form blend seamlessly with the pure black background */
.woocommerce.single-product div.product form.cart {
    border: none !important;
    box-shadow: none !important;
    animation: none !important;
}

/* ==========================================================
   Neon Dual-Option Selector (Likes / Reproducciones)
   ========================================================== */
.ic-dual-selector {
    margin-bottom: 24px !important;
    padding: 20px 22px !important;
    background: rgba(255, 46, 147, 0.03) !important;
    border: 1px solid rgba(255, 46, 147, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: 0 0 20px rgba(255, 46, 147, 0.04) !important;
}

.ic-dual-label {
    font-family: var(--font-display) !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #cbd5e1 !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
}

.ic-dual-options {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.ic-dual-btn {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 18px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #94a3b8 !important;
    font-family: var(--font-display) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.ic-dual-btn::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(255, 46, 147, 0.08) 0%, transparent 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.25s ease !important;
}

.ic-dual-btn:hover {
    border-color: rgba(255, 46, 147, 0.4) !important;
    color: #e2e8f0 !important;
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.1) !important;
}

.ic-dual-btn:hover::before {
    opacity: 1 !important;
}

.ic-dual-btn.active {
    background: linear-gradient(135deg, rgba(255, 46, 147, 0.12) 0%, rgba(255, 94, 98, 0.06) 100%) !important;
    border-color: #ff2e93 !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 46, 147, 0.2), inset 0 0 10px rgba(255, 46, 147, 0.05) !important;
    text-shadow: 0 0 12px rgba(255, 46, 147, 0.5) !important;
}

.ic-dual-btn.active::before {
    opacity: 1 !important;
}

.ic-dual-btn svg {
    flex-shrink: 0 !important;
    transition: transform 0.25s ease !important;
}

.ic-dual-btn.active svg {
    filter: drop-shadow(0 0 4px rgba(255, 46, 147, 0.7)) !important;
}

.ic-dual-btn:hover svg {
    transform: scale(1.1) !important;
}

.ic-dual-hint {
    font-size: 0.73rem !important;
    color: #475569 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

@media (max-width: 480px) {
    .ic-dual-options {
        flex-direction: column !important;
    }
}

/* ==========================================================
   Mega Menu Hover Bridge & Compact Header Menu Styles (2026)
   ========================================================== */
.nav-menu ul.services-mega-menu::before {
    content: "" !important;
    position: absolute !important;
    top: -30px !important;
    left: 0 !important;
    right: 0 !important;
    height: 30px !important;
    background: transparent !important;
    pointer-events: auto !important;
    z-index: 1000 !important;
}

/* Compact Header Mega Menu Cards */
.nav-menu .services-mega-menu .ic-mega-card {
    padding: 0 !important;
    overflow: hidden !important;
    height: auto !important;
}

.nav-menu .services-mega-menu .ic-mega-card .ic-card-link {
    display: flex !important;
    align-items: center !important;
    padding: 16px 20px !important;
    text-decoration: none !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    border-radius: 14px !important;
}

.nav-menu .services-mega-menu .ic-card-header {
    margin-bottom: 0 !important;
    width: 100% !important;
}

.nav-menu .services-mega-menu .ic-card-title {
    transition: color 0.3s ease !important;
}

.nav-menu .services-mega-menu .ic-mega-card:hover .ic-card-title {
    color: #ff2e93 !important; /* Glow/Highlight card title on hover */
}

/* ==========================================================
   Products Dedicated Landing Page (/productos/)
   ========================================================== */
.products-page-main {
    background-color: #000000 !important;
    padding: 60px 24px 120px 24px !important;
}

.products-page-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.products-page-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.products-page-breadcrumb {
    font-size: 0.85rem !important;
    color: #94a3b8 !important;
    margin-bottom: 16px !important;
}

.products-page-breadcrumb a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.products-page-breadcrumb a:hover {
    color: #ff2e93 !important;
}

.products-breadcrumb-sep {
    margin: 0 8px !important;
    color: rgba(255, 255, 255, 0.2) !important;
}

.products-page-title {
    font-family: var(--font-display) !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em !important;
}

.products-page-subtitle {
    font-size: 1.05rem !important;
    color: #cbd5e1 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin: 40px 0 !important;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }
    .about-proposition-section.split-content .content-right-column {
        margin-top: 20px !important;
    }
}

/* 4. Mobile Layout Left/Right Offset Alignment (no 4px shift) */
@media (max-width: 768px) {
    /* Prevent padding accumulation by clearing horizontal padding on outer section wrappers */
    .hero-section,
    .trajectory-section,
    .contact-section,
    .site-footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Standardize all inner container content left/right paddings to exactly 20px */
    .header-container,
    .hero-container,
    .section-container,
    .contact-wrapper,
    .footer-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Optimize contact wrapper padding for mobile viewports */
    .contact-wrapper {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        border-radius: var(--radius-lg) !important;
    }
}

/* 5. Mobile Counters Stack Alignment */
@media (max-width: 768px) {
    .counters-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .counter-item {
        width: 100% !important;
        flex: none !important;
    }
}

/* =========================================================================
   LANDING PAGE REDESIGN 2026 STYLES
   ========================================================================= */
.landing-redesign {
    background-color: #000000;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Typography Overrides */
.landing-redesign h1, 
.landing-redesign h2, 
.landing-redesign h3, 
.landing-redesign h4 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-weight: 700;
}

.landing-redesign .highlight-red {
    color: #e11d48;
    text-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
}

.landing-redesign .eyebrow {
    display: block;
    color: #e11d48;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.landing-redesign .redesign-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HERO SECTION --- */
.redesign-hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    background-color: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.hero-badge span {
    color: #e11d48;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(225, 29, 72, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-svg,
.btn-secondary:hover .btn-svg {
    transform: scale(1.1);
}

.hero-trust-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 480px;
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.trust-chip svg {
    color: #e11d48;
}

/* --- HERO VISUAL --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

/* Glow Spheres */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.main-glow {
    width: 300px;
    height: 300px;
    background: rgba(225, 29, 72, 0.18);
    top: 25%;
    left: 25%;
}

.orbit-glow-1 {
    width: 200px;
    height: 200px;
    background: rgba(225, 29, 72, 0.08);
    top: 10%;
    right: 10%;
}

.orbit-glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(225, 29, 72, 0.05);
    bottom: 10%;
    left: 10%;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: float-icon 6s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.icon-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285aeb 90%);
    color: #ffffff;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-tt {
    background-color: #010101;
    color: #ffffff;
    top: 20%;
    right: 5%;
    animation-delay: 1.5s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.icon-fb {
    background-color: #1877f2;
    color: #ffffff;
    bottom: 30%;
    right: 8%;
    animation-delay: 3s;
}

/* Floating Chip Card */
.floating-chip-card {
    position: absolute;
    bottom: 15%;
    left: 2%;
    z-index: 11;
    background: rgba(19, 25, 38, 0.85);
    border: 1px solid rgba(225, 29, 72, 0.35);
    border-radius: 20px;
    padding: 16px;
    width: 170px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(225, 29, 72, 0.15);
    animation: float-chip 8s ease-in-out infinite;
}

@keyframes float-chip {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

.chip-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2px;
}

.chip-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.chip-avatars {
    display: flex;
    margin-bottom: 8px;
}

.avatar-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1.5px solid #131926;
}

.avatar-sm:not(:first-child) {
    margin-left: -8px;
}

.chip-stars {
    font-size: 0.85rem;
    color: #fbbf24;
}

/* Smartphone Mockup */
.phone-mockup {
    width: 290px;
    height: 570px;
    background-color: #090c15;
    border: 10px solid #e11d48;
    border-radius: 40px;
    padding: 10px;
    position: relative;
    z-index: 5;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(225, 29, 72, 0.35), inset 0 0 15px rgba(225, 29, 72, 0.15);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0b0f19;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.phone-header {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.phone-time {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.phone-notch {
    width: 110px;
    height: 20px;
    background-color: #1e293b;
    border-radius: 0 0 15px 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.phone-icons {
    color: #ffffff;
    display: flex;
    gap: 4px;
    opacity: 0.8;
}

.phone-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-title {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Stats Card */
.stat-card {
    background-color: #131926;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.02);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.stat-pct {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 700;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.stat-chart-container {
    height: 45px;
    margin-top: 4px;
}

.stat-chart-svg {
    width: 100%;
    height: 100%;
}

/* Network list */
.network-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.network-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 8px 12px;
    gap: 10px;
}

.net-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-color { background: linear-gradient(135deg, #e1306c 0%, #f77737 100%); color: #fff; }
.tt-color { background-color: #000; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.fb-color { background-color: #1877f2; color: #fff; }
.sp-color { background-color: #1db954; color: #fff; }
.yt-color { background-color: #ff0000; color: #fff; }

.net-name {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
}

.net-val {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.net-val .up {
    color: #10b981;
    font-size: 0.7rem;
    margin-left: 4px;
}

/* --- 2. SERVICIOS DISPONIBLES --- */
.redesign-services {
    padding: 120px 0;
    background-color: #000000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.redesign-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.redesign-services .service-card {
    background-color: #111622;
    border: 1px solid rgba(225, 29, 72, 0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    color: #94a3b8;
}

.card-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.redesign-services .service-card:hover .card-icon-wrapper {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-description {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.5;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.arrow-icon {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.redesign-services .service-card:hover {
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(225, 29, 72, 0.15);
    transform: translateY(-5px);
}

.redesign-services .service-card:hover .arrow-icon {
    transform: translateX(6px);
    color: #e11d48;
}

.redesign-services .service-card:hover .price-label {
    color: #ffffff;
}

/* Card Platforms Colors hover */
#card-instagram:hover .card-icon-wrapper {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
    color: #e1306c;
}
#card-tiktok:hover .card-icon-wrapper {
    background: rgba(254, 40, 88, 0.1);
    border-color: rgba(254, 40, 88, 0.3);
    color: #ff0050;
}
#card-facebook:hover .card-icon-wrapper {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
    color: #1877f2;
}
#card-spotify:hover .card-icon-wrapper {
    background: rgba(29, 185, 84, 0.1);
    border-color: rgba(29, 185, 84, 0.3);
    color: #1db954;
}
#card-youtube:hover .card-icon-wrapper {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}
#card-more:hover .card-icon-wrapper {
    background: rgba(225, 29, 72, 0.1);
    border-color: rgba(225, 29, 72, 0.3);
    color: #e11d48;
}

/* --- 3. FRANJA DE CONFIANZA / METRICAS --- */
.redesign-metrics {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 0;
}

.metrics-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.metric-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 20px;
}

.metric-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(225, 29, 72, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e11d48;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.1);
    flex-shrink: 0;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.metric-label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* --- 4. COMO FUNCIONA --- */
.redesign-process {
    padding: 120px 0 140px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.redesign-process .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.redesign-process .section-title .title-highlight {
    color: #e11d48;
    text-shadow: 0 0 15px rgba(225, 29, 72, 0.4);
    position: relative;
    display: inline-block;
}

.redesign-process .section-title .title-highlight::after {
    display: none;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto 0 auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.title-glow-divider {
    width: 60px;
    height: 3px;
    background-color: #e11d48;
    margin: 25px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.8), 0 0 20px rgba(225, 29, 72, 0.4);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    position: relative;
    z-index: 1;
}

.step-connector::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: rgba(225, 29, 72, 0.35);
    box-shadow: 0 0 6px rgba(225, 29, 72, 0.2);
}

.connector-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e11d48;
    border-radius: 50%;
    box-shadow: 0 0 8px #e11d48, 0 0 16px rgba(225, 29, 72, 0.6);
}

.process-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 52px;
    height: 52px;
    background-color: #040508;
    border: 2px solid #e11d48;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.5), inset 0 0 10px rgba(225, 29, 72, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    position: relative;
}

.step-card {
    background-color: #090c14;
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: 20px;
    padding: 55px 24px 35px 24px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(225, 29, 72, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin-top: -26px;
    z-index: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #e11d48;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 10px rgba(225, 29, 72, 0.8);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-icon-box {
    color: #e11d48;
    margin-bottom: 24px;
    background-color: rgba(225, 29, 72, 0.04);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(225, 29, 72, 0.25);
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: #e11d48;
    filter: drop-shadow(0 0 3px rgba(225, 29, 72, 0.4));
}

.step-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 0.88rem;
    color: #a0aec0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

/* Hover micro-interactions */
.process-step:hover .step-num {
    background-color: #e11d48;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(225, 29, 72, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.3);
    transform: scale(1.06);
}

.process-step:hover .step-card {
    border-color: rgba(225, 29, 72, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(225, 29, 72, 0.08);
    transform: translateY(-6px);
}

.process-step:hover .step-card::after {
    width: 80px;
}

.process-step:hover .step-icon-box {
    background-color: rgba(225, 29, 72, 0.12);
    border-color: #e11d48;
    box-shadow: 0 0 18px rgba(225, 29, 72, 0.3);
    transform: scale(1.05);
}

/* Trust Bar */
.process-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #07090f;
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: 20px;
    padding: 30px 40px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(225, 29, 72, 0.04);
    box-sizing: border-box;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 5px 30px;
    position: relative;
    box-sizing: border-box;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08) 50%, transparent);
}

.trust-icon {
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(225, 29, 72, 0.05);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid rgba(225, 29, 72, 0.25);
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.08);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: #e11d48;
    filter: drop-shadow(0 0 3px rgba(225, 29, 72, 0.4));
}

.trust-item:hover .trust-icon {
    background-color: rgba(225, 29, 72, 0.15);
    border-color: #e11d48;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.3);
    transform: scale(1.05) rotate(5deg);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.trust-desc {
    font-size: 0.85rem;
    color: #a0aec0;
    margin: 4px 0 0 0;
    font-family: 'Inter', sans-serif;
}

/* Responsiveness (Como Funciona) */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
        max-width: 800px;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-trust-bar {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .redesign-process {
        padding: 80px 0 100px 0;
    }
    
    .redesign-process .section-title {
        font-size: 2.1rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 450px;
    }
    
    .process-trust-bar {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
        margin-top: 60px;
    }
    
    .trust-item {
        justify-content: flex-start;
        padding: 12px 10px;
    }
    
    .trust-item:not(:last-child)::after {
        display: none;
    }
    
    .trust-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding-bottom: 20px;
    }
}

/* --- 5. TESTIMONIOS --- */
.redesign-testimonials {
    padding: 120px 0;
    background-color: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #111622;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.user-handle {
    font-size: 0.78rem;
    color: #94a3b8;
    display: block;
}

.platform-icon {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
}

.ig-brand { background: rgba(225, 48, 108, 0.15); color: #e1306c; }
.tt-brand { background: rgba(255, 255, 255, 0.08); color: #ffffff; }
.yt-brand { background: rgba(255, 0, 0, 0.15); color: #ff0000; }

.testimonial-stars {
    color: #e11d48;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-style: italic;
    margin: 0;
}

/* --- 6. CTA FINAL --- */
.redesign-cta {
    padding: 100px 0 120px;
    background-color: #080b11;
}

.cta-card-wrapper {
    background: linear-gradient(135deg, #111622 0%, #1e1b29 100%);
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: 24px;
    padding: 60px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(225, 29, 72, 0.05);
}

.cta-card-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.cta-rocket-container {
    width: 72px;
    height: 72px;
    background-color: rgba(225, 29, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e11d48;
    animation: bounce-rocket 3s ease-in-out infinite;
    flex-shrink: 0;
    z-index: 2;
}

@keyframes bounce-rocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.cta-rocket-svg {
    width: 36px;
    height: 36px;
}

.cta-content {
    flex: 1;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cta-subtext {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.4);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(225, 29, 72, 0.6);
}

/* =========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================= */

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-trust-chips {
        justify-content: center;
        max-width: 100%;
    }
    
    .redesign-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .redesign-hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .redesign-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric-item {
        width: 100%;
    }
    
    .metric-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 520px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

/* --- Redesign Premium Visual additions --- */

/* Instagram Profile Widget Mockup */
.ig-profile-widget {
    background-color: #131926;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.02);
}

.ig-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ig-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #e11d48;
    padding: 2px;
    background-clip: content-box;
    flex-shrink: 0;
}

.ig-profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.ig-username-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ig-username {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.verified-badge {
    flex-shrink: 0;
}

.ig-follow-btn {
    background-color: #0095f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.ig-follow-btn:hover {
    background-color: #1877f2;
}

.ig-stats-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ig-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.ig-stat-item .num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.ig-stat-item .lbl {
    font-size: 0.65rem;
    color: #94a3b8;
}

.ig-bio {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ig-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.ig-bio-text {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.3;
    margin: 0;
}

/* Neon Trust Chips Override */
.hero-trust-chips {
    margin-top: 8px;
}

.landing-redesign .trust-chip {
    background: rgba(19, 25, 38, 0.7) !important;
    border: 1.5px solid rgba(225, 29, 72, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(225, 29, 72, 0.08), inset 0 0 8px rgba(225, 29, 72, 0.03);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-redesign .trust-chip svg {
    color: #e11d48;
    filter: drop-shadow(0 0 3px rgba(225, 29, 72, 0.6));
    flex-shrink: 0;
}

.landing-redesign .trust-chip:hover {
    border-color: #e11d48 !important;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.25), 0 0 15px rgba(225, 29, 72, 0.15), inset 0 0 10px rgba(225, 29, 72, 0.08);
    transform: translateY(-2px);
}

/* Product available cards background watermark and defaults */
.redesign-services .service-card {
    position: relative;
    overflow: hidden;
    z-index: 2;
    background-color: #111622;
    border: 1px solid rgba(225, 29, 72, 0.08);
}

.card-bg-watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 140px;
    height: 140px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, color 0.4s ease;
}

.redesign-services .service-card:hover .card-bg-watermark {
    transform: scale(1.15) rotate(-5deg);
    opacity: 0.12 !important;
}

/* Specific platform default backgrounds and borders */
#card-instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.22) 0%, rgba(225, 48, 108, 0.22) 50%, rgba(253, 110, 29, 0.18) 100%) !important;
    border: 1px solid rgba(225, 48, 108, 0.4) !important;
}
#card-tiktok {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, #111622 50%, rgba(254, 40, 88, 0.15) 100%) !important;
    border: 1px solid rgba(0, 242, 254, 0.3) !important;
}
#card-facebook {
    background: linear-gradient(135deg, #111622 0%, rgba(24, 119, 242, 0.22) 100%) !important;
    border: 1px solid rgba(24, 119, 242, 0.4) !important;
}
#card-spotify {
    background: linear-gradient(135deg, #111622 0%, rgba(29, 185, 84, 0.2) 100%) !important;
    border: 1px solid rgba(29, 185, 84, 0.4) !important;
}
#card-youtube {
    background: linear-gradient(135deg, #111622 0%, rgba(255, 0, 0, 0.18) 100%) !important;
    border: 1px solid rgba(255, 0, 0, 0.4) !important;
}
#card-more {
    background: linear-gradient(135deg, #111622 0%, rgba(225, 29, 72, 0.18) 100%) !important;
    border: 1px solid rgba(225, 29, 72, 0.4) !important;
}

/* Specific platform hover backgrounds and borders */
#card-instagram:hover {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.35) 0%, rgba(225, 48, 108, 0.35) 50%, rgba(252, 176, 69, 0.3) 100%) !important;
    border-color: rgba(225, 48, 108, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(225, 48, 108, 0.45);
}
#card-tiktok:hover {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, #111622 40%, rgba(254, 40, 88, 0.25) 100%) !important;
    border-color: rgba(0, 242, 254, 0.7) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.4);
}
#card-facebook:hover {
    background: linear-gradient(135deg, #111622 0%, rgba(24, 119, 242, 0.35) 100%) !important;
    border-color: rgba(24, 119, 242, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(24, 119, 242, 0.45);
}
#card-spotify:hover {
    background: linear-gradient(135deg, #111622 0%, rgba(29, 185, 84, 0.35) 100%) !important;
    border-color: rgba(29, 185, 84, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(29, 185, 84, 0.4);
}
#card-youtube:hover {
    background: linear-gradient(135deg, #111622 0%, rgba(255, 0, 0, 0.32) 100%) !important;
    border-color: rgba(255, 0, 0, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 0, 0, 0.4);
}
#card-more:hover {
    background: linear-gradient(135deg, #111622 0%, rgba(225, 29, 72, 0.3) 100%) !important;
    border-color: rgba(225, 29, 72, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(225, 29, 72, 0.25);
}

/* Default and hover platform watermark color adjustments */
#card-instagram .card-bg-watermark { color: #e1306c; opacity: 0.12; }
#card-tiktok .card-bg-watermark { color: #fe2858; opacity: 0.12; }
#card-facebook .card-bg-watermark { color: #1877f2; opacity: 0.12; }
#card-spotify .card-bg-watermark { color: #1db954; opacity: 0.12; }
#card-youtube .card-bg-watermark { color: #ff0000; opacity: 0.12; }
#card-more .card-bg-watermark { color: #e11d48; opacity: 0.12; }

#card-instagram:hover .card-bg-watermark { opacity: 0.22 !important; }
#card-tiktok:hover .card-bg-watermark { opacity: 0.22 !important; }
#card-facebook:hover .card-bg-watermark { opacity: 0.22 !important; }
#card-spotify:hover .card-bg-watermark { opacity: 0.22 !important; }
#card-youtube:hover .card-bg-watermark { opacity: 0.22 !important; }
#card-more:hover .card-bg-watermark { opacity: 0.22 !important; }

/* Default and hover icon wrapper color adjustments */
#card-instagram .card-icon-wrapper {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.45);
    color: #ff5e97;
}
#card-tiktok .card-icon-wrapper {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.4);
    color: #00f2fe;
}
#card-facebook .card-icon-wrapper {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.45);
    color: #4395ff;
}
#card-spotify .card-icon-wrapper {
    background: rgba(29, 185, 84, 0.15);
    border-color: rgba(29, 185, 84, 0.45);
    color: #1db954;
}
#card-youtube .card-icon-wrapper {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.45);
    color: #ff3333;
}
#card-more .card-icon-wrapper {
    background: rgba(225, 29, 72, 0.15);
    border-color: rgba(225, 29, 72, 0.45);
    color: #f43f5e;
}

#card-instagram:hover .card-icon-wrapper {
    background: rgba(225, 48, 108, 0.3);
    border-color: rgba(225, 48, 108, 0.7);
    color: #ffffff;
}
#card-tiktok:hover .card-icon-wrapper {
    background: rgba(0, 242, 254, 0.25);
    border-color: rgba(0, 242, 254, 0.8);
    color: #ffffff;
}
#card-facebook:hover .card-icon-wrapper {
    background: rgba(24, 119, 242, 0.3);
    border-color: rgba(24, 119, 242, 0.7);
    color: #ffffff;
}
#card-spotify:hover .card-icon-wrapper {
    background: rgba(29, 185, 84, 0.3);
    border-color: rgba(29, 185, 84, 0.7);
    color: #ffffff;
}
#card-youtube:hover .card-icon-wrapper {
    background: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.7);
    color: #ffffff;
}
#card-more:hover .card-icon-wrapper {
    background: rgba(225, 29, 72, 0.3);
    border-color: rgba(225, 29, 72, 0.7);
    color: #ffffff;
}

/* Ensure card text is layered correctly and readable */
.service-card .card-icon-wrapper,
.service-card .card-title,
.service-card .card-description,
.service-card .card-footer {
    position: relative;
    z-index: 2;
}

.service-card .card-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-card .card-description {
    color: #94a3b8;
}

/* Testimonials Infinite Marquee */
.testimonials-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Linear edge gradients to fade review cards at boundaries */
.redesign-testimonials .redesign-container {
    max-width: 100% !important;
    padding: 0 !important;
}

.redesign-testimonials .section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 3;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #06090e 0%, transparent 100%);
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #06090e 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.marquee-track.track-2 {
    animation-direction: reverse;
    animation-duration: 50s; /* slightly different speed for visual parallax */
}

/* Pause scroll animation when user hovers */
.testimonials-marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-marquee-wrapper .testimonial-card {
    width: 320px;
    flex-shrink: 0;
    background-color: #111622;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonials-marquee-wrapper .testimonial-card:hover {
    border-color: rgba(225, 29, 72, 0.25);
    transform: translateY(-2px);
}

.testimonials-marquee-wrapper .user-email {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.testimonials-marquee-wrapper .review-status {
    font-size: 0.7rem;
    color: #10b981;
    display: block;
    margin-top: 2px;
}

.testimonials-marquee-wrapper .platform-svg-icon {
    display: inline-flex;
    padding: 6px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-marquee-wrapper .platform-svg-icon svg {
    display: block;
}

/* Initial Avatar Circles style */
.initial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    background: #e11d48;
}

.av-color-1 { background: linear-gradient(135deg, #e11d48 0%, #be123c 100%); }
.av-color-2 { background: linear-gradient(135deg, #0095f6 0%, #0056b3 100%); }
.av-color-3 { background: linear-gradient(135deg, #1db954 0%, #11682f 100%); }
.av-color-4 { background: linear-gradient(135deg, #ff0000 0%, #b30000 100%); }
.av-color-5 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }

/* ==========================================================
   Rediseño Premium de la Página "Sobre Nosotros" (México 2026)
   ========================================================== */

/* Contenedor Principal (Light Mode Override) */
.sobre-nosotros-main {
    background-color: #f8fafc !important;
    color: #475569 !important;
    padding: 0 !important;
    font-family: 'Inter', 'Outfit', sans-serif !important;
}

.sobre-nosotros-page-wrapper {
    width: 100%;
}

/* Contenedor de Secciones */
.about-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Estilos de Sección */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section-light {
    background-color: #ffffff !important;
}

.about-section-slate {
    background-color: #f8fafc !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* Grillas Responsivas */
.about-grid {
    display: grid;
    gap: 40px;
}

.about-grid-2col {
    grid-template-columns: 1.1fr 0.9fr;
}

.about-grid-4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.align-center {
    align-items: center;
}

.card-block-margin {
    margin-top: 60px;
}

.text-center {
    text-align: center;
}

.max-w-650 {
    max-width: 650px;
}

.margin-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Tipografía de Sección */
.about-section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #e11d48;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a !important;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -0.5px;
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569 !important;
    margin-bottom: 20px;
}

.about-paragraph.lead {
    font-size: 1.2rem;
    color: #1e293b !important;
    font-weight: 500;
    line-height: 1.6;
}

/* Tarjetas Generales */
.about-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 72, 0.3) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05), 0 0 15px rgba(225, 29, 72, 0.05);
}

.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.about-card-icon {
    margin-bottom: 20px;
}

.about-card-icon.red-accent {
    color: #e11d48;
}

.about-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.about-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b !important;
    margin: 0;
}

/* Rediseño de Sección de Tarjetas Inferiores */
.about-cards-container {
    max-width: 1180px;
    margin: 45px auto 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.about-card-redesign {
    background: #f4f6fa !important;
    border: 1px solid #dbe2ee !important;
    border-radius: 18px !important;
    padding: 28px 26px !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 290px;
    min-width: 0 !important;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card-redesign:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1) !important;
}

.about-card-title-redesign {
    font-size: 1.15rem;
    font-weight: 700;
    color: #071225 !important;
    margin: 0 0 10px 0;
    font-family: 'Outfit', sans-serif !important;
}

.about-card-desc-redesign {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #5f6f89 !important;
    margin: 0;
    font-family: 'Inter', sans-serif !important;
}

/* Card 1 Widget: Mini Metric Box */
.mini-metric-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.metric-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
}
.metric-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: #071225;
    font-family: 'Outfit', sans-serif;
}
.metric-arrow {
    color: #cbd5e1;
    margin: 0 4px;
}
.metric-highlight {
    color: #f72557;
}
.metric-progress-wrapper {
    width: 100%;
    height: 5px;
    background-color: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}
.metric-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #f72557, #ff5b7f);
    border-radius: 3px;
    animation: progressLoop 3.5s ease-in-out infinite alternate;
}
@keyframes progressLoop {
    0% { width: 20%; }
    100% { width: 100%; }
}

/* Card 2 Widget: Social Marquee Capsule */
.social-marquee-wrapper {
    position: relative;
    width: 100%;
    height: 54px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 15px;
    padding: 0 8px;
    box-sizing: border-box;
}
.social-marquee-wrapper::before,
.social-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 25px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.social-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.social-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.social-marquee-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: scrollRightMarquee 15s linear infinite;
}
.social-marquee-wrapper:hover .social-marquee-track {
    animation-play-state: paused;
}
.social-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #e5eaf3;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.social-logo-item svg {
    display: block;
}
@keyframes scrollRightMarquee {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Card 3 Widget: Chips */
.about-card-chips {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.custom-chip-item {
    font-size: 0.72rem;
    font-weight: 700;
    color: #f72557;
    background-color: #fff0f3;
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid #ffe3e8;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Card 4 Widget: Horizontal Flow Steps */
.mini-flow-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.mini-flow-step {
    display: flex;
    align-items: center;
    gap: 5px;
}
.mini-flow-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #f72557;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 50%;
}
.mini-flow-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: #071225;
}
.mini-flow-line {
    flex-grow: 1;
    height: 1px;
    border-top: 1px dashed #cbd5e1;
    margin: 0 8px;
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .about-card-redesign {
        min-height: 270px;
    }
}
@media (max-width: 640px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-card-redesign {
        min-height: auto;
        padding: 24px 22px !important;
    }
    .about-cards-container {
        margin-top: 40px;
        padding: 0 16px;
    }
}

/* Botones Generales */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}

.about-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.about-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    backdrop-filter: blur(10px);
}

.about-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.about-hero-section {
    position: relative;
    padding: 140px 0 100px;
    background-image: url('../images/about_hero_bg_new.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    min-height: 520px;
}

/* Fallback PNG para navegadores sin WebP (< 3% global) */
@supports not (background-image: url('data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ//73v/+BiOh/AAA=')) {
    .about-hero-section {
        background-image: url('../images/about_hero_bg_new.png');
    }
}

.about-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

@media (min-width: 769px) {
    .about-hero-bg-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.12) 100%);
    }
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    max-width: 680px;
    text-align: left;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 100px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
}

.about-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff !important;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -1.5px;
}

.about-hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #cbd5e1 !important;
    margin-bottom: 35px;
}

.about-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats Bar */
.about-stats-bar {
    background-color: #000000 !important;
    border-bottom: 1px solid #1e293b;
    padding: 40px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.about-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: #e11d48;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 15px rgba(225, 29, 72, 0.2);
}

.about-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Imágenes Lifestyle */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 8px;
    transition: all 0.3s ease;
}

.about-image-wrapper:hover {
    border-color: rgba(225, 29, 72, 0.2);
}

.about-lifestyle-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-lifestyle-img {
    transform: scale(1.02);
}

/* Propuesta Lista */
.about-propuestas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-prop-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-prop-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: #e11d48;
    background-color: rgba(225, 29, 72, 0.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 0 8px rgba(225, 29, 72, 0.1);
}

.about-prop-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0 0 4px 0;
    font-family: 'Outfit', sans-serif;
}

.about-prop-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b !important;
    margin: 0;
}

/* Beneficios */
.benefit-item-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 72, 0.3) !important;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(225, 29, 72, 0.08);
    color: #e11d48;
    margin-bottom: 20px;
}

.benefit-item-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0 0 10px 0;
    font-family: 'Outfit', sans-serif;
}

.benefit-item-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64748b !important;
    margin: 0;
}

/* Timeline / Cómo funciona */
.about-timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.about-timeline-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.about-timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #e2e8f0, #e2e8f0 4px, transparent 4px, transparent 8px);
    z-index: 1;
}

.about-timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-step-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.about-timeline-step:hover .timeline-step-badge {
    border-color: #e11d48;
    background-color: #e11d48;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(225, 29, 72, 0.3);
}

.timeline-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.timeline-step-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #64748b !important;
    margin: 0;
    padding: 0 10px;
}

.about-timeline-note {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(225, 29, 72, 0.02) !important;
    border: 1px solid rgba(225, 29, 72, 0.15) !important;
    border-radius: 12px;
    padding: 16px 24px;
    margin-top: 40px;
    color: #0f172a !important;
    font-size: 0.95rem;
}

.note-icon {
    color: #e11d48;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Principios */
.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-principle-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.about-principle-card:hover {
    border-color: rgba(225, 29, 72, 0.2) !important;
}

.principle-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(225, 29, 72, 0.08);
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
}

.about-principle-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0 0 8px 0;
    padding-right: 30px;
    font-family: 'Outfit', sans-serif;
}

.about-principle-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #64748b !important;
    margin: 0;
}

/* Información Legal */
.about-legal-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    overflow: hidden;
}

.about-legal-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 24px;
    align-items: center;
}

.about-legal-row:last-child {
    border-bottom: none;
}

.legal-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
}

.legal-value {
    font-size: 1rem;
    color: #0f172a !important;
}

.legal-value a {
    color: #e11d48 !important;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-value a:hover {
    color: #be123c !important;
    text-decoration: underline;
}

.legal-value.highlight {
    font-weight: 700;
    color: #e11d48 !important;
}

.legal-value.monospace {
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.legal-value a {
    color: #e11d48;
    text-decoration: none;
    font-weight: 600;
}

.legal-value a:hover {
    text-decoration: underline;
}

.about-transparency-block {
    display: flex;
    gap: 20px;
    padding: 28px;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    margin-top: 30px;
    align-items: flex-start;
}

.transparency-icon {
    color: #e11d48;
    flex-shrink: 0;
    margin-top: 2px;
}

.transparency-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0 0 6px 0;
    font-family: 'Outfit', sans-serif;
}

.transparency-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #64748b !important;
    margin: 0;
}

/* Presencia en México */
.about-cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.city-pill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a !important;
    transition: all 0.3s ease;
}

.city-pill-card:hover {
    border-color: #e11d48 !important;
    background-color: rgba(225, 29, 72, 0.02) !important;
    transform: scale(1.02);
}

.city-pill-card.active-pill {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.city-pill-card.active-pill .city-dot {
    background-color: #ffffff;
}

.city-dot {
    width: 8px;
    height: 8px;
    background-color: #e11d48;
    border-radius: 50%;
}

.about-map-column {
    display: flex;
    justify-content: center;
}

.about-map-container {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
}

.map-outline-visual {
    position: relative;
    width: 100%;
    height: auto;
}

.mexico-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Map pins positioning */
.map-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #e11d48;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.2);
    transform: translate(-50%, -50%);
    animation: mapPinPulse 2s infinite;
}

@keyframes mapPinPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(225, 29, 72, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

/* CTA Final */
.about-bottom-cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('/wp-content/themes/influcheap-v2/assets/images/hero_bg.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

/* PNG fallback for .about-bottom-cta-section */
@supports not (background-image: url('data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ//73v/+BiOh/AAA=')) {
    .about-bottom-cta-section {
        background-image: url('/wp-content/themes/influcheap-v2/assets/images/hero_bg.png');
    }
}

.about-cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.about-cta-card {
    background-color: rgba(10, 15, 26, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(15px);
}

.about-cta-card .about-cta-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.about-cta-card .about-cta-desc {
    font-size: 1.15rem;
    color: #cbd5e1 !important;
    margin-bottom: 12px;
}

.about-cta-card .about-cta-secondary-text {
    font-size: 0.95rem;
    color: #94a3b8 !important;
    margin-bottom: 35px;
    line-height: 1.6;
}

.mega-cta-btn {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Responsividad General */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }
    .about-grid-2col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-timeline-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-timeline-steps::before {
        display: none;
    }
    .mobile-order-1 {
        order: 1;
    }
    .mobile-order-2 {
        order: 2;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.4rem;
    }
    .about-section {
        padding: 60px 0;
    }
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-grid-4col {
        grid-template-columns: 1fr;
    }
    .about-principles-grid {
        grid-template-columns: 1fr;
    }
    .about-legal-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .about-cities-grid {
        grid-template-columns: 1fr;
    }
    .about-cta-card {
        padding: 40px 20px;
    }
    .about-cta-card .about-cta-title {
        font-size: 1.8rem;
    }
}

/* Rediseño Sección Nuestra Propuesta */
.about-propuesta-section {
    background-color: #f8fafc !important;
    padding: 100px 0;
}

.propuesta-image-container {
    position: relative;
    padding-left: 20px;
}

.propuesta-main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.propuesta-floating-card {
    position: absolute;
    bottom: 24px;
    left: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    z-index: 10;
    transition: transform 0.3s ease;
}

.propuesta-floating-card:hover {
    transform: translateY(-2px);
}

.floating-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #e11d48;
    color: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-card-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.floating-card-text span {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.3;
}

.propuesta-title-line {
    width: 45px;
    height: 4px;
    background-color: #e11d48;
    border-radius: 2px;
    margin-bottom: 16px;
}

.about-propuesta-section .about-section-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a !important;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-propuesta-section .about-paragraph.lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569 !important;
    margin-bottom: 32px;
}

.propuesta-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.propuesta-list-item {
    background-color: #ffffff !important;
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.propuesta-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    border-color: rgba(225, 29, 72, 0.15);
}

.propuesta-item-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #e11d48;
    font-family: 'Outfit', sans-serif;
    min-width: 24px;
}

.propuesta-item-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(225, 29, 72, 0.06);
    color: #e11d48;
    border-radius: 50%;
    flex-shrink: 0;
}

.propuesta-item-icon {
    stroke-width: 2.2px;
}

.propuesta-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.propuesta-item-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.propuesta-item-content p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #64748b !important;
    margin: 0;
}

@media (max-width: 768px) {
    .about-propuesta-section {
        padding: 60px 0;
    }
    .propuesta-image-container {
        padding-left: 0;
        margin-bottom: 40px;
    }
    .propuesta-floating-card {
        bottom: 16px;
        left: 16px;
        max-width: calc(100% - 32px);
    }
    .propuesta-list-item {
        padding: 16px 20px;
        gap: 16px;
    }
    .about-propuesta-section .about-section-title {
        font-size: 2.2rem;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

.cookie-banner-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #94a3b8;
    text-align: left;
}

.cookie-banner-text a {
    color: #e11d48;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    color: #f43f5e;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.cookie-btn-primary {
    background: #e11d48;
    color: #ffffff;
}

.cookie-btn-primary:hover {
    background: #f43f5e;
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.4);
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

.cookie-btn-link {
    background: transparent;
    color: #94a3b8;
    border: none;
    padding: 10px 12px;
}

.cookie-btn-link:hover {
    color: #cbd5e1;
    text-decoration: underline;
}

/* Settings Panel */
.cookie-settings-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 5px;
    text-align: left;
}

.cookie-settings-panel h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.settings-panel-desc {
    margin: 0 0 20px 0;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
}

.cookie-settings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-setting-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 14px 16px;
}

.setting-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.setting-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
    cursor: pointer;
}

.setting-status.always-active {
    font-size: 0.78rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

.setting-item-desc {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #64748b;
}

/* Switch styling */
.setting-switch-wrapper {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.cookie-switch-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 34px;
}

.cookie-switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #94a3b8;
    transition: .3s;
    border-radius: 50%;
}

.cookie-switch-checkbox:checked + .cookie-switch-slider {
    background-color: #e11d48;
}

.cookie-switch-checkbox:checked + .cookie-switch-slider:before {
    transform: translateX(18px);
    background-color: #ffffff;
}

.cookie-switch-checkbox:focus + .cookie-switch-slider {
    box-shadow: 0 0 1px #e11d48;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
}

.cookie-btn-save {
    background: #e11d48;
    color: #ffffff;
    padding: 10px 24px;
}

.cookie-btn-save:hover {
    background: #f43f5e;
    box-shadow: 0 0 12px rgba(225, 29, 72, 0.4);
    transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   NETWORK SUB-LANDINGS — /etiqueta/{red-social}/
   ═══════════════════════════════════════════════════════════════════════════ */

/* Shared button styles for network pages */
.ic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.ic-btn--primary {
    background: var(--primary-color, #e11d48);
    color: #ffffff;
    border-color: var(--primary-color, #e11d48);
}

.ic-btn--primary:hover {
    background: #f43f5e;
    border-color: #f43f5e;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.ic-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.ic-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.ic-btn--lg {
    padding: 15px 38px;
    font-size: 1.05rem;
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.ic-network-hero {
    background: linear-gradient(160deg, #0a0a0a 0%, #120006 50%, #050505 100%);
    border-bottom: 1px solid rgba(225, 29, 72, 0.15);
    padding: 64px 0 56px;
}

.ic-network-hero__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.ic-network-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.ic-network-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.ic-network-hero__breadcrumb a:hover {
    color: var(--primary-color, #e11d48);
}

.ic-network-hero__h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.ic-network-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 32px;
}

.ic-network-hero__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ic-network-hero__badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ic-network-hero__badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ─── Benefits ──────────────────────────────────────────────────────────────── */
.ic-network-benefits {
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.ic-network-benefits__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ic-network-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ic-network-benefit__icon {
    font-size: 1.3rem;
    line-height: 1;
}

.ic-network-benefit__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

/* ─── Products wrapper ──────────────────────────────────────────────────────── */
.ic-network-products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 40px;
}

/* ─── Explainer ─────────────────────────────────────────────────────────────── */
.ic-network-explainer {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ic-network-explainer__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.ic-network-explainer__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
}

.ic-network-explainer__text {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ─── Chooser ───────────────────────────────────────────────────────────────── */
.ic-network-chooser {
    background: #050505;
    padding: 72px 0;
    border-top: 1px solid rgba(225, 29, 72, 0.1);
}

.ic-network-chooser__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.ic-network-chooser__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px;
}

.ic-network-chooser__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.ic-network-chooser__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.25s ease;
    text-align: center;
}

.ic-network-chooser__card:hover {
    border-color: rgba(225, 29, 72, 0.35);
    background: rgba(225, 29, 72, 0.04);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(225, 29, 72, 0.1);
}

.ic-network-chooser__icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 16px;
}

.ic-network-chooser__name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.ic-network-chooser__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.ic-network-faq {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    padding: 72px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ic-network-faq__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.ic-network-faq__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px;
}

.ic-network-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ic-network-faq__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.ic-network-faq__item.ic-faq--open {
    border-color: rgba(225, 29, 72, 0.4);
}

.ic-network-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.2s;
    font-family: inherit;
}

.ic-network-faq__question:hover {
    color: #ffffff;
}

.ic-faq--open .ic-network-faq__question {
    color: #ffffff;
}

.ic-network-faq__chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    transition: transform 0.25s ease, border-color 0.2s;
    margin-top: -4px;
}

.ic-faq--open .ic-network-faq__chevron {
    transform: rotate(225deg);
    border-color: var(--primary-color, #e11d48);
    margin-top: 4px;
}

.ic-network-faq__answer {
    padding: 0 24px 20px;
}

.ic-network-faq__answer[hidden] {
    display: none;
}

.ic-network-faq__answer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* ─── Final CTA ─────────────────────────────────────────────────────────────── */
.ic-network-final-cta {
    background: linear-gradient(135deg, #12000a 0%, #0a0010 50%, #050505 100%);
    border-top: 1px solid rgba(225, 29, 72, 0.2);
    border-bottom: 1px solid rgba(225, 29, 72, 0.08);
    padding: 80px 0;
    text-align: center;
}

.ic-network-final-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.ic-network-final-cta__title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.ic-network-final-cta__sub {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ─── Related networks ──────────────────────────────────────────────────────── */
.ic-network-related {
    background: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0;
}

.ic-network-related__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.ic-network-related__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    white-space: nowrap;
}

.ic-network-related__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.ic-network-related__link {
    display: inline-block;
    padding: 7px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.2s ease;
}

.ic-network-related__link:hover {
    border-color: rgba(225, 29, 72, 0.5);
    color: #ffffff;
    background: rgba(225, 29, 72, 0.08);
    text-decoration: none;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ic-network-hero {
        padding: 48px 0 40px;
    }

    .ic-network-hero__h1 {
        font-size: 1.75rem;
    }

    .ic-network-hero__subtitle {
        font-size: 0.95rem;
    }

    .ic-network-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .ic-network-hero__badges {
        gap: 12px;
        font-size: 0.72rem;
    }

    .ic-network-benefits__inner {
        gap: 20px;
    }

    .ic-network-benefit__label {
        font-size: 0.78rem;
    }

    .ic-network-products {
        padding: 40px 16px 28px;
    }

    .ic-network-explainer,
    .ic-network-chooser,
    .ic-network-faq,
    .ic-network-final-cta {
        padding: 52px 0;
    }

    .ic-network-explainer__title,
    .ic-network-chooser__title,
    .ic-network-faq__title {
        font-size: 1.35rem;
    }

    .ic-network-chooser__grid {
        grid-template-columns: 1fr;
    }

    .ic-network-final-cta__title {
        font-size: 1.45rem;
    }

    .ic-network-related__inner {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .ic-network-hero__h1 {
        font-size: 1.5rem;
    }

    .ic-network-faq__question {
        font-size: 0.875rem;
        padding: 16px 18px;
    }

    .ic-network-faq__answer {
        padding: 0 18px 16px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Sección "Cómo funciona" Rediseñada
   ───────────────────────────────────────────────────────────────────────────── */

.stepper-progress-container {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 45px auto 35px auto;
    padding: 0;
    box-sizing: border-box;
}

.stepper-progress-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #ffd0da; /* rosado suave */
    transform: translateY(-50%);
    z-index: 0;
}

.stepper-progress-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.stepper-step-circle {
    width: 34px;
    height: 34px;
    background-color: #ffffff;
    border: 2px solid #ffd0da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f72557;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.stepper-progress-step:hover .stepper-step-circle {
    border-color: #f72557;
    background-color: #fff0f3;
}

/* Grid & Cards */
.how-cards-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.how-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    box-sizing: border-box;
}

.how-card {
    background: #ffffff !important;
    border: 1px solid #edf0f5 !important;
    border-radius: 18px !important;
    padding: 22px 18px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0 !important;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1) !important;
}

.how-card-step-badge-mobile {
    display: none;
}

.how-card-image-wrapper {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background-color: #f8fafc;
}

.how-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.how-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1324 !important;
    margin: 0 0 6px 0;
    font-family: 'Outfit', sans-serif !important;
}

.how-card-accent-line {
    width: 24px;
    height: 2px;
    background-color: #f72557;
    margin-bottom: 12px;
    border-radius: 2px;
}

.how-card-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #65748b !important;
    margin: 0;
    font-family: 'Inter', sans-serif !important;
}

/* Nota de Seguridad */
.safety-note-box {
    max-width: 900px;
    margin: 45px auto 0 auto;
    border: 1px solid #ffd0da !important;
    background-color: #fffafb !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    display: flex;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
}

.safety-note-icon {
    color: #f72557;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safety-note-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #65748b !important;
    margin: 0;
    font-family: 'Inter', sans-serif !important;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .stepper-progress-container {
        display: none;
    }
    .how-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .how-card-step-badge-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background-color: #ffffff;
        border: 2px solid #ffd0da;
        border-radius: 50%;
        color: #f72557;
        font-size: 0.82rem;
        font-weight: 700;
        margin: -4px auto 14px auto;
        font-family: 'Outfit', sans-serif;
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    }
    .how-cards-container {
        padding: 0 16px;
    }
    .safety-note-box {
        margin: 35px 16px 0 16px;
        padding: 14px 18px !important;
    }
}

@media (max-width: 768px) {
    .how-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .how-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .how-card {
        padding: 18px 16px !important;
    }
    .how-card-image-wrapper {
        height: 130px;
    }
}






/* Premium micro-animations for icons and cards on about page */
.benefit-icon { transition: all 0.3s ease !important; }
.benefit-item-card:hover .benefit-icon {
    background-color: #e11d48 !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
}
.propuesta-item-icon-wrapper { transition: all 0.3s ease !important; }
.propuesta-list-item:hover .propuesta-item-icon-wrapper {
    background-color: #e11d48 !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
}


/* Custom CSS styling for premium about page contextual images and thumbnails */

/* 1. Quién es InfluCheap Section Card Thumbnail Images */
.about-card-image-header {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: #f1f5f9;
}
.about-card-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.about-card-redesign:hover .about-card-thumb-img {
    transform: scale(1.05);
}

/* 2. Nuestra Propuesta List Item Thumbnails */
.propuesta-item-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* 3. Beneficios Section Card Image Headers */
.benefit-card-image-header {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f1f5f9;
}
.benefit-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.benefit-item-card:hover .benefit-card-img {
    transform: scale(1.05);
}

/* 4. Nuestros Principios Card Thumbnails */
.about-principle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}
.principle-thumb-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f1f5f9;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.about-principle-card:hover .principle-thumb-img {
    transform: scale(1.08);
}


/* Custom CSS styling for redesigned Contact & FAQ Page */
.contacto-card-image-header {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: #f1f5f9;
}
.contacto-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.contacto-item:hover .contacto-card-img {
    transform: scale(1.05);
}

/* FAQs Accordion on Contact Page */
.contacto-faq-accordion-section {
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}
.faq-section-title-wrap {
    text-align: center;
    margin-bottom: 35px;
}
.faq-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0b1324 !important;
    margin: 10px 0 14px 0;
    font-family: 'Outfit', sans-serif !important;
}
.faq-section-subtitle {
    font-size: 1rem;
    color: #65748b !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Redesign styling rules for Contact page rows, trust grids, and CTAs */
.contacto-hero-section {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 50px auto;
    padding: 0 16px;
}
.contacto-hero-section .contacto-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1324;
    margin: 10px 0 15px 0;
    font-family: 'Outfit', sans-serif;
}
.contacto-hero-section .contacto-intro-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* 2. Main Row: Split Layout */
.contacto-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 0 16px;
    align-items: stretch;
}
.contacto-channels-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contacto-channel-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 19, 36, 0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contacto-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.channel-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dbff00;
    color: #0b1324;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.channel-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b1324;
    margin-bottom: 12px;
}
.channel-card-text {
    font-size: 0.95rem;
    color: #65748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* WhatsApp CTA Button */
.contacto-whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    text-align: center;
}
.contacto-whatsapp-cta-btn:hover {
    background: #20ba59;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Email direct link */
.contacto-email-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e11d48 !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    margin-top: 10px;
}
.contacto-email-link:hover {
    opacity: 0.8;
}

/* Form card styling adjustment */
.contacto-form-column .contacto-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 19, 36, 0.04);
}
.contacto-form-card .form-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b1324;
    margin-bottom: 8px;
}
.contacto-form-card .form-card-desc {
    font-size: 0.95rem;
    color: #65748b;
    margin-bottom: 24px;
}
.contacto-form-legal-notice {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #65748b;
    opacity: 0.8;
    margin-top: 15px;
    text-align: center;
}

/* 3. Trust cards Row */
.contacto-trust-title-wrap {
    text-align: center;
    margin-bottom: 25px;
}
.contacto-trust-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-top: 5px !important;
    font-family: var(--font-display) !important;
    word-spacing: 0.12em !important;
    letter-spacing: 0.02em !important;
    display: block !important;
}
.contacto-trust-section {
    max-width: 1100px;
    margin: 40px auto 60px auto;
    padding: 0 16px;
}
.contacto-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.contacto-trust-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(11, 19, 36, 0.03);
    transition: transform 0.3s ease;
}
.contacto-trust-card:hover {
    transform: translateY(-4px);
}
.contacto-trust-card-media {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
}
.contacto-trust-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contacto-trust-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1324;
    margin-bottom: 10px;
}
.contacto-trust-card p {
    font-size: 0.9rem;
    color: #65748b;
    line-height: 1.6;
}

/* 4. Anchor adjustments */
#faq {
    scroll-margin-top: 110px; /* Offset for sticky header */
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .contacto-row-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contacto-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contacto-hero-section .contacto-main-title {
        font-size: 2rem;
    }
}

/* ==========================================================
   FASE 6: Pulido Visual y Corrección de Bugs en Mi Cuenta
   ========================================================== */

/* 1. Selector Flotante de Idioma / Moneda en Mobile (Ocultado en Mi Cuenta para evitar superposiciones) */
@media (max-width: 767px) {
    .woocommerce-account .woocommerce-multi-currency,
    .woocommerce-account .woocommerce-multi-currency.wmc-sidebar,
    .woocommerce-account #wmc-channels,
    .woocommerce-account .wmc-sidebar,
    .woocommerce-account .wmc-selector,
    .woocommerce-account [class*="wmc-"],
    .woocommerce-account .translatepress-floating-language-switcher,
    .woocommerce-account #trp-floater-ls,
    .woocommerce-account .trp-language-switcher {
        display: none !important;
    }
}

/* 2. Botón Flotante de WhatsApp en Mobile (Ocultado en Mi Cuenta para evitar invadir contenido) */
@media (max-width: 767px) {
    .woocommerce-account .joinchat,
    .woocommerce-account .joinchat--show,
    .woocommerce-account [id^="joinchat"],
    .woocommerce-account [class*="joinchat"],
    .woocommerce-account .ht-ctc-chat,
    .woocommerce-account [class*="ht-ctc"],
    .woocommerce-account .whatsapp-btn,
    .woocommerce-account .whatsapp-button {
        display: none !important;
    }
}

/* 4. Estilo de Carga de Archivos Customizado */
.influcheap-custom-file-upload {
    border: 1px dashed rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #cbd5e1 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: border-color 0.3s, background-color 0.3s !important;
    box-sizing: border-box !important;
}
.influcheap-review-file:hover {
    border-color: var(--primary-color) !important;
    background: rgba(225, 29, 72, 0.02) !important;
}
.influcheap-review-file::file-selector-button {
    background: var(--primary-color) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    margin-right: 12px !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.2) !important;
}
.influcheap-review-file::file-selector-button:hover {
    background: #be123c !important;
}

/* 5. Corrección de Artefacto Visual en Mensaje No Elegible e Iconos Rotos */
.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-error::before {
    display: none !important;
}
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
    padding-left: 20px !important;
}

/* 6. Corrección de Espacio Vertical Excesivo antes del Footer en Mobile */
@media (max-width: 767px) {
    .woocommerce-account .legal-page-header,
    .woocommerce-account .legal-page-meta {
        display: none !important;
    }
    
    .woocommerce-account .site,
    .woocommerce-account #page,
    .woocommerce-account .site-content,
    .woocommerce-account #content,
    .woocommerce-account #primary,
    .woocommerce-account #main,
    .woocommerce-account .site-main,
    .woocommerce-account .content-area,
    .woocommerce-account .post-thumbnail,
    .woocommerce-account article,
    .woocommerce-account .entry-content,
    .woocommerce-account .woocommerce {
        display: block !important;
        min-height: 0 !important;
        min-height: auto !important;
        height: auto !important;
        flex: none !important;
        flex-grow: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .woocommerce-account .site-footer,
    .woocommerce-account footer {
        margin-top: 40px !important;
        padding-top: 40px !important;
    }
}

/* ==========================================================================
   Nueva Sección de Redes y Tarjetas (Propuesta Elegida)
   ========================================================================== */
.about-growth-section {
    background-color: #ffffff !important;
    color: #0f172a !important;
    padding: 100px 0 120px 0 !important;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Outfit', sans-serif;
}

.growth-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Pill Superior */
.growth-pill-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.growth-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.growth-pill-dot {
    width: 8px;
    height: 8px;
    background-color: #e11d48;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(225, 29, 72, 0.4);
}

/* Título Grande Centrado */
.growth-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    color: #0f172a !important;
    margin: 0 auto 40px auto;
    max-width: 800px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.growth-title-gradient {
    background: linear-gradient(135deg, #e11d48 0%, #8b5cf6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Carrusel/Marquee de Redes Sociales */
.growth-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 40px;
    /* Fade/mask suave en los extremos */
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.growth-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-right-anim 25s linear infinite;
}

/* Para rodar hacia la derecha: */
@keyframes marquee-right-anim {
    0% {
        transform: translateX(-50%);
    }
}

.growth-social-icon-card {
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.04);
    border: 1px solid #f1f5f9;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-social-icon-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
}

.growth-social-icon-card svg {
    display: block;
    transition: transform 0.3s ease;
}

/* Conector en forma de árbol (SVG/CSS) */
.growth-connector-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

.growth-connector-tree {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 60px;
}

.growth-connector-line.main-stem {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 30px;
    background-color: #cbd5e1;
    transform: translateX(-50%);
}

.growth-connector-branches {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 30px;
}

/* Las 4 ramas que conectan con los centros de las 4 tarjetas */
.growth-connector-branches .branch {
    position: absolute;
    height: 2px;
    background-color: #cbd5e1;
}

/* Puntos al final de cada rama */
.growth-connector-branches .branch::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #94a3b8;
    border-radius: 50%;
    bottom: -2px;
}

/* Ramas para pantalla grande:
   Las 4 tarjetas están distribuidas horizontalmente. Sus centros están aproximadamente en:
   12.5%, 37.5%, 62.5%, 87.5% de la anchura total.
*/
.growth-connector-branches .branch-1 {
    left: 12.5%;
    width: 37.5%;
    top: 0;
}
.growth-connector-branches .branch-1::after {
    left: 0;
}

.growth-connector-branches .branch-2 {
    left: 37.5%;
    width: 12.5%;
    top: 0;
}
.growth-connector-branches .branch-2::after {
    left: 0;
}

.growth-connector-branches .branch-3 {
    left: 50%;
    width: 12.5%;
    top: 0;
}
.growth-connector-branches .branch-3::after {
    right: 0;
}

.growth-connector-branches .branch-4 {
    left: 50%;
    width: 37.5%;
    top: 0;
}
.growth-connector-branches .branch-4::after {
    right: 0;
}

/* Conector vertical desde cada final de rama hacia abajo */
.growth-connector-branches .branch::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background-color: #cbd5e1;
    top: 0;
}
.growth-connector-branches .branch-1::before {
    left: 0;
}
.growth-connector-branches .branch-2::before {
    left: 0;
}
.growth-connector-branches .branch-3::before {
    right: 0;
}
.growth-connector-branches .branch-4::before {
    right: 0;
}


/* Tarjetas inferiores */
.growth-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 10;
}

.growth-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.growth-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

/* Iconos de las tarjetas */
.growth-card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.growth-card:hover .growth-card-icon-wrapper {
    transform: scale(1.1) rotate(3deg);
}

.growth-card.card-pink .growth-card-icon-wrapper {
    background-color: #fff1f2;
    color: #e11d48;
}

.growth-card.card-blue .growth-card-icon-wrapper {
    background-color: #eff6ff;
    color: #2563eb;
}

.growth-card.card-red .growth-card-icon-wrapper {
    background-color: #fff5f5;
    color: #ff3366;
}

.growth-card.card-blue-alt .growth-card-icon-wrapper {
    background-color: #f0fdfa;
    color: #0d9488;
}

/* Títulos y textos */
.growth-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0 0 12px 0;
}

.growth-card-accent-line {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 16px;
    transition: width 0.3s ease;
}

.growth-card:hover .growth-card-accent-line {
    width: 50px;
}

.growth-card.card-pink .growth-card-accent-line {
    background-color: #e11d48;
}

.growth-card.card-blue .growth-card-accent-line {
    background-color: #2563eb;
}

.growth-card.card-red .growth-card-accent-line {
    background-color: #ff3366;
}

.growth-card.card-blue-alt .growth-card-accent-line {
    background-color: #0d9488;
}

.growth-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569 !important;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

/* Botón flecha en la esquina */
.growth-card-arrow-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.growth-card:hover .growth-card-arrow-btn {
    background-color: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    /* En tablet/mobile ocultamos el conector tipo árbol */
    .growth-connector-wrapper {
        display: none;
    }
    .about-growth-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .growth-section-title {
        font-size: 2.2rem;
    }
    .growth-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .growth-card {
        min-height: auto;
        padding: 28px 24px;
    }
    
    .ic-cart-sidebar {
        width: 100% !important;
    }
}

/* ============================================================
   MOBILE HAMBURGER MENU TOGGLE — v2 (SVG-based, always visible)
   header.php now uses inline SVGs with hardcoded stroke=#ffffff
   ============================================================ */

/* ── Desktop: hide toggle button ──────────────────────────── */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    .menu-main-container {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
    }
}

/* ── Mobile: show toggle, collapse nav ────────────────────── */
@media (max-width: 768px) {

    /* ── Hamburger button ──────────────────────────────────── */
    .menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, 0.10) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        transition: background 0.2s ease, border-color 0.2s ease !important;
        -webkit-tap-highlight-color: transparent !important;
        flex-shrink: 0 !important;
        position: relative !important;
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
        background: rgba(225, 29, 72, 0.20) !important;
        border-color: rgba(225, 29, 72, 0.60) !important;
        outline: none !important;
    }

    /* ── SVG icon display toggle ──────────────────────────── */
    /* By default: show hamburger, hide X */
    .menu-toggle .icon-hamburger {
        display: block !important;
        width: 24px !important;
        height: 24px !important;
        flex-shrink: 0 !important;
    }
    .menu-toggle .icon-close {
        display: none !important;
        width: 24px !important;
        height: 24px !important;
        flex-shrink: 0 !important;
    }

    /* When .active: hide hamburger, show X */
    .menu-toggle.active .icon-hamburger {
        display: none !important;
    }
    .menu-toggle.active .icon-close {
        display: block !important;
    }

    /* Active button background */
    .menu-toggle.active {
        background: rgba(225, 29, 72, 0.20) !important;
        border-color: rgba(225, 29, 72, 0.60) !important;
    }

    /* ── Mobile nav container ─────────────────────────────── */
    .menu-main-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    .menu-main-container.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.97) !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        padding: 24px 20px 40px !important;
        border-top: 1px solid rgba(225, 29, 72, 0.30) !important;
        animation: mobileMenuIn 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    @keyframes mobileMenuIn {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Nav links ────────────────────────────────────────── */
    .menu-main-container .nav-menu {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }

    .menu-main-container .nav-menu .menu-item a {
        display: block !important;
        padding: 14px 18px !important;
        color: #ffffff !important;
        font-size: 1.05rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        border-radius: 10px !important;
        transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease !important;
        letter-spacing: 0.01em !important;
    }

    .menu-main-container .nav-menu .menu-item a:hover,
    .menu-main-container .nav-menu .menu-item.current-menu-item a {
        background: rgba(225, 29, 72, 0.12) !important;
        color: #e11d48 !important;
        padding-left: 26px !important;
    }

    .menu-main-container .nav-menu .menu-item.current-menu-item a {
        font-weight: 600 !important;
    }

    /* ── CTA button inside mobile menu ───────────────────── */
    .mobile-cta-wrapper {
        margin-top: 24px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .mobile-cta-button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 14px 20px !important;
        background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
        color: #ffffff !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 16px rgba(225, 29, 72, 0.30) !important;
        transition: opacity 0.2s ease, transform 0.2s ease !important;
    }

    .mobile-cta-button:hover {
        opacity: 0.9 !important;
        transform: translateY(-1px) !important;
    }

    /* ── header-actions: keep button and hamburger in a row ─ */
    .header-navigation-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
}


/* ============================================================
   FIX: Mobile product 'ANTES DE COMPRAR' card full-width
   .influcheap-product-legal-summary auto-places into col-1 of
   the .product-summary-column 2-column grid -> only 162px wide.
   Fix: span all columns on mobile so it fills the full row.
   Desktop: no change (already full-width on desktop grid).
   ============================================================ */

@media (max-width: 768px) {
    .product-summary-column .influcheap-product-legal-summary {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
}


/* Body scroll lock when mobile menu is active */
body.mobile-menu-open {
    overflow: hidden !important;
}


/* Elevate header stacking context above backdrop when mobile menu is open */
body.mobile-menu-open #masthead {
    z-index: 9999 !important;
}


/* ============================================================
   DEFINITIVE MOBILE MENU VIEWPORT OVERLAY FIX
   Resolves clipping when header has backdrop-filter scrolled.
   Disables header backdrop blur while mobile menu is active,
   and configures menu container to fit viewport exactly.
   ============================================================ */

/* Disable backdrop-filter containing block on active menu */
body.mobile-menu-open #masthead,
body.mobile-menu-open .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

@media (max-width: 768px) {
    .menu-main-container.active {
        position: fixed !important;
        top: 72px !important; /* starts right below mobile header */
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: calc(100dvh - 72px) !important;
        max-height: calc(100dvh - 72px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .hero-description {
        min-height: 155px !important;
    }
}


/* ==========================================================================
   InfluCheap Peru Homepage Hero CTA Mobile Centering
   ========================================================================== */
@media (max-width: 1024px) {
    .redesign-hero .hero-actions {
        justify-content: center !important;
    }
}
