/* 
  Maisynergy Design System
  Style: Modern AI-Tech SaaS
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #030303;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary-gradient: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
    --accent-cyan: #00f2ff;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);
    --glow-cyan: 0 0 20px rgba(0, 242, 255, 0.4);

    /* Layout */
    --section-padding: 100px 5%;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.heading-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* Utilities */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-btn {
    background: var(--accent-cyan);
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--glow-cyan);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.glow-btn:hover {
    background: #00d7e3;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
}

.btn-outline-gradient {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid #e32de6;
    color: #1a1a1a;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 20px;
    font-size: 0.9rem;
}

.btn-outline-gradient:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.2);
}

.mobile-menu-btn {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn-mobile {
    display: none;
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Navbar */
.white-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* Taller bar */
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15%;
    background: #ffffff;
    /* Solid white */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo {
    height: 70px;
    /* Larger logo */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    /* Softer dark color */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #6d28d9;
    /* Purple hover to match logo */
}

/* Contact Button inside Nav */
.nav-cta {
    background: transparent;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    color: #6d28d9;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 100px;
    /* Más padding superior para alejarlo del header */
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.4;
    mask-image: radial-gradient(circle, black 30%, transparent 80%);
}

.hero-content {
    max-width: 1000px;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    /* Letra más pequeña y equilibrada */
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: #ffffff;
    /* Blanco puro para máxima legibilidad */
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    /* Sombra intensa para resaltar sobre el fondo */
    margin-bottom: 40px;
    max-width: 900px;
    /* Un poco más ancho para mejor flujo */
    margin-inline: auto;
    font-weight: 400;
}

/* Clients Carousel */
.clients {
    padding: 80px 0;
    background: #ffffff;
    /* Fondo blanco */
    border-bottom: 1px solid #eeeeee;
}

.clients h3 {
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    font-weight: 900;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    /* Permite envolver en múltiples líneas de forma fluida */
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 5%;
}

.logo-card {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid #f8e7fc;
    flex: 0 0 180px;
    height: 110px;
}

.logo-card img {
    height: 80px;
    /* Reducido un poco para que quepan todos cómodamente */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.logo-card.active:hover {
    transform: scale(1.002) translateY(-08px);
    box-shadow: 0 10px 30px rgba(150, 0, 180, 0.08);
    border-color: #6d28d9;
    /* Cambiado a morado */
    border-width: 0.7px;
    /* Línea más delgada solicitado */
}

/* El zoom ahora lo hace la tarjeta completa, no la imagen interna */

/* Strategic Solutions (Bento Grid - Light Version) */
.services {
    padding: 120px 8%;
    background: #f1e9f7;
    /* Color lavanda claro solicitado */
    position: relative;
    border-top: 1px solid rgba(109, 40, 217, 0.05);
}

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

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    color: #666666;
    font-size: 1.1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.bento-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e32de6;
    /* Línea más fina solicitado */
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    cursor: default;
    box-shadow: 0 12px 40px rgba(109, 40, 217, 0.08);
    /* Sombra inicial más marcada */
}

.card-double {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 450px;
}

.card-square {
    grid-column: span 1;
    min-height: 350px;
}

.bento-card.active:hover {
    border-color: #6d28d9;
    /* Cambia a morado al pasar el cursor */
    box-shadow: 0 30px 70px rgba(109, 40, 217, 0.25);
    /* Sombra profunda para efecto sobrepuesto */
    transform: scale(1.005) translateY(-12px);
    z-index: 10;
    /* Asegura que la tarjeta escalada esté por encima */
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(109, 40, 217, 0.1);
    color: #6d28d9;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-card h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
    color: #1a1a1a;
}

.bento-card h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #1a1a1a;
}

.bento-card p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #00acc1;
    font-size: 1.8rem;
}

/* Micro-zoom interno para imágenes de servicios */
.card-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px;
    /* Margen para evitar recortes importantes */
    overflow: hidden;
    /* Efecto lupa interno */
    border-radius: 20px;
}

.visual-mockup {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease;
    display: block;
}

.visual-mockup:hover {
    transform: scale(1.08);
    /* El "micro-zoom" solicitado */
}

@media (max-width: 992px) {
    .card-double {
        grid-template-columns: 1fr;
        height: auto;
        padding-bottom: 40px;
    }

    .visual-mockup {
        width: 100%;
        transform: none;
        margin-top: 30px;
    }
}

/* Why Choose Us Redesign (Maisnergy) */
.about-new {
    padding: 120px 8%;
    background: #000000;
    /* Fondo negro sólido solicitado */
    position: relative;
    overflow: hidden;
}

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

.about-header-centered h2 {
    font-size: 3.5rem;
    font-weight: 900;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    /* Espaciado amplio para que respire */
    max-width: 1400px;
    margin: 0 auto;
}

.pillar-glass {
    background: rgba(255, 255, 255, 0.03);
    /* Glassmorphism ligero */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #e32de6;
    /* Borde rosado solicitado */
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.pillar-glass.active:hover {
    transform: scale(1.005) translateY(-12px);
    /* Zoom más pronunciado y elevación clara */
    border-color: #6d28d9;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(227, 45, 230, 0.25);
    z-index: 10;
}

.icon-glow-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow-wrap i {
    font-size: 3.5rem;
    /* Íconos de gran formato */
    position: relative;
    z-index: 2;
}

.icon-glow-wrap .fa-puzzle-piece {
    color: #00f2ff;
}

/* Cian vibrante */
.icon-glow-wrap .fa-gears {
    color: #6d28d9;
}

.icon-glow-wrap .fa-arrow-trend-up {
    color: #db2777;
}

.glow-blob {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 1;
}

.glow-blob.cyan {
    background: radial-gradient(circle, #00f2ff, transparent);
}

.glow-blob.purple {
    background: radial-gradient(circle, #6d28d9, transparent);
}

.glow-blob.neon {
    background: radial-gradient(circle, #db2777, transparent);
}

.pillar-glass h3 {
    color: #ffffff;
    /* Blanco puro */
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pillar-glass p {
    color: #cccccc;
    /* Gris claro para legibilidad */
    font-size: 1.05rem;
    line-height: 1.7;
}

.highlight-cyan {
    color: #00f2ff;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .pillars-container {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .pillars-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .pillar-glass {
        padding: 50px 30px;
    }
}

/* Animations & Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Floating Footer with Gradient Section Background */
.footer-premium {
    padding: 100px 5% 50px;
    background: linear-gradient(135deg, #6d28d9 0%, #e32de6 100%);
    /* Fondo ahora es el degradado */
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: #f8fafc;
    /* Bloque interno en gris claro */
    border-radius: 40px;
    padding: 80px 60px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Borde sutil para resaltar sobre el degradado */
}

/* Eliminamos el ::before anterior ya que el fondo ya tiene el degradado */
.footer-inner::before {
    display: none;
}

.footer-card-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-main {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.brand-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links-premium {
    list-style: none;
}

.footer-links-premium li {
    margin-bottom: 12px;
}

.footer-links-premium a {
    color: #475569;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links-premium a:hover {
    color: #6d28d9;
    padding-left: 5px;
}

.social-links-premium {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    text-decoration: none;
}

.social-icon:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 8px #rgba(0, 0, 0, 0.1);
}

.social-icon.instagram {
    background: #E4405F;
    border-color: #E4405F;
}

.social-icon.instagram:hover {
    background: #c13584;
    border-color: #c13584;
}

.social-icon.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.social-icon.whatsapp:hover {
    background: #107a37;
    border-color: #107a37;
}

.footer-frase-fuerza {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 500;
    font-style: italic;
    border-left: 3px solid #6d28d9;
    padding-left: 15px;
}

.footer-contact-item {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom-premium {
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-premium p {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-credits-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.9rem;
}

.credit-logo-premium {
    height: 30px;
    width: auto;
}

@media (max-width: 992px) {
    .footer-card-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links-premium {
        justify-content: center;
    }

    .footer-bottom-premium {
        flex-direction: column;
        gap: 20px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .card-double {
        display: flex !important;
        flex-direction: column !important;
    }

    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

    .about-header-centered h2 {
        font-size: 2.5rem;
    }

    .services {
        padding: 60px 5%;
    }

    .bento-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .bento-card {
        padding: 25px;
    }

    .bento-card h3 {
        font-size: 1.8rem;
    }

    .card-visual {
        padding: 0;
        margin-top: 20px;
    }

    .visual-mockup {
        width: 100%;
        margin-top: 15px;
    }

    .bento-card h4 {
        font-size: 1.3rem;
    }

    .pillar-glass {
        padding: 40px 20px;
    }

    .pillar-glass h3 {
        font-size: 1.5rem;
    }

    /* Mobile Menu Styles */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.3rem;
        color: #2d3436;
        cursor: pointer;
        z-index: 1002; /* Above the menu */
        transition: var(--transition);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        height: 100vh;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(252, 252, 255, 0.75));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 40px;
        gap: 12px;
        box-shadow: -15px 0 50px rgba(0,0,0,0.08);
        transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        color: #2d3436;
        text-transform: none;
        letter-spacing: 0.3px;
        width: auto;
        padding: 6px 0;
        border-bottom: none;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: #6d28d9;
        opacity: 0.7;
    }

    .nav-btn-desktop {
        display: none;
    }

    .nav-btn-mobile {
        display: inline-block;
        margin-top: 25px;
        width: auto; /* Ajuste automático al contenido */
        min-width: 140px; /* Ancho mínimo para que se vea importante */
        font-size: 0.85rem;
        padding: 12px 35px; /* Más ancho horizontalmente */
        text-align: center;
        border-radius: 12px; /* Menos redondeado solicitado */
        background: var(--accent-cyan);
        color: #0f172a;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 25px rgba(0, 242, 255, 0.25);
    }

    .white-nav {
        padding: 0 5%;
    }

    .logos-grid {
        flex-wrap: wrap;
    }

    footer {
        flex-direction: column;
        gap: 40px;
    }
}

/* Scrumboard Subpage Hero */
.scrumboard-hero {
    padding: 160px 8% 80px;
    background: linear-gradient(135deg, #0a0414 0%, #1e0b36 50%, #db2777 100%);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-header-top {
    text-align: center;
}

.hero-header-top h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    color: #fff;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    background: #000;
}

.hero-video {
    width: 100%;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-overlay i {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.hero-video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.hero-video-container:hover .hero-video {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-header-top h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }
}

/* Scrumboard Features Section */
.scrumboard-features {
    padding: 100px 8%;
    background: #ffffff;
    text-align: center;
}

.features-header {
    margin-bottom: 70px;
}

.features-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(76, 2, 136, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrumboard Showcase Section */
.scrumboard-showcase {
    padding: 100px 5%;
    background-color: #f8f9ff;
    text-align: center;
}

.showcase-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.showcase-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.showcase-card {
    background: transparent;
    transition: var(--transition);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition);
}

.showcase-card:hover .image-placeholder {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 2, 136, 0.281);
    border-color: var(--primary-light);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

.placeholder-content {
    display: none;
}

.showcase-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-header h2 {
        font-size: 1.8rem;
    }

    .showcase-card h3 {
        font-size: 1.2rem;
    }

    .showcase-card p {
        font-size: 0.9rem;
    }

    /* Scrumboard Hero Mobile Adjustments */
    .scrumboard-hero {
        padding: 120px 5% 60px;
        text-align: center;
        gap: 20px;
    }

    .hero-header-top h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

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

    .hero-text h2 {
        font-size: 1.6rem;
    }

    .hero-text p {
        margin-inline: auto;
        font-size: 1rem;
    }

    /* Scrumboard Features Mobile Adjustments */
    .scrumboard-features {
        padding: 60px 5%;
    }

    .features-header {
        margin-bottom: 30px;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .features-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0; /* Juntamos más los bloques */
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .feature-icon {
        margin-bottom: 10px;
        font-size: 2rem;
    }
}

/* AI Avatar Video styling */
.video-avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.video-avatar {
    max-height: 380px;
    width: auto;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    border: 2px solid #e32de6;
    box-shadow: 0 15px 35px rgba(227, 45, 230, 0.15);
    background-color: #000;
    object-fit: cover;
    transition: var(--transition);
}

.video-avatar:hover {
    transform: scale(1.03);
    border-color: #6d28d9;
    box-shadow: 0 20px 45px rgba(109, 40, 217, 0.35);
}

@media (max-width: 992px) {
    .video-avatar {
        max-height: 320px;
        margin-top: 20px;
    }
}