/* Plan principal destacado (solo uno visible) */
.pricing-main-plan {
    margin: 0 auto;
    max-width: 480px;
    box-shadow: 0 8px 40px 0 rgba(34,197,94,0.10);
    border-width: 2px;
    border-color: #22c55e;
    background: rgba(34,197,94,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 576px) {
    .pricing-main-plan {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
}
/* Estilo para precios en una sola columna */
.pricing-cards-single-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
}

.pricing-cards-single-col .pricing-card {
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 32px 0 rgba(34,197,94,0.04);
    margin: 0 auto;
}

@media (max-width: 576px) {
    .pricing-cards-single-col {
        gap: 1.5rem;
        max-width: 98vw;
    }
    .pricing-cards-single-col .pricing-card {
        max-width: 98vw;
        padding: 1.1rem;
    }
}
/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

body {
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(255,255,255,0.05)" d="M0 0h1v20H0zM10 0h1v20h-1zM20 0h1v20h-1zM0 0h20v1H0zM0 10h20v1H0zM0 20h20v1H0z"/></svg>');
}

/* Fondo Animado (se mantiene igual) */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 25s ease-in-out infinite;
    will-change: transform;
}

@media (max-width: 768px) {
    .bg-shape {
        filter: blur(60px);
        opacity: 0.1;
    }

    .bg-shape-1 { width: 250px; height: 250px; }
    .bg-shape-2 { width: 200px; height: 200px; }
    .bg-shape-3 { width: 220px; height: 220px; }
    .bg-shape-4 { width: 180px; height: 180px; }
}

.bg-shape-1 { width: 400px; height: 400px; background: linear-gradient(135deg, #8b5cf6, #ec4899); top: 5%; left: 10%; animation-delay: 0s; }
.bg-shape-2 { width: 300px; height: 300px; background: linear-gradient(135deg, #10b981, #3b82f6); top: 50%; right: 10%; animation-delay: -8s; }
.bg-shape-3 { width: 350px; height: 350px; background: linear-gradient(135deg, #f59e0b, #ef4444); bottom: 10%; left: 20%; animation-delay: -16s; }
.bg-shape-4 { width: 250px; height: 250px; background: linear-gradient(135deg, #ec4899, #8b5cf6); top: 20%; right: 40%; animation-delay: -4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-25px) translateX(15px) scale(1.1); }
    50% { transform: translateY(20px) translateX(-20px) scale(0.9); }
    75% { transform: translateY(-15px) translateX(25px) scale(1.05); }
}

/* Header */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-header .logo i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.main-header .logo i:hover {
    transform: scale(1.05) rotate(5deg);
}

.main-header .logo span {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.main-header .logo .logo-accent {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Contenedor Principal */
.container {
    text-align: center;
    padding: 120px 40px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenido del Hero */
.hero-content {
    margin-bottom: 60px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 25px;
}

.badge-icon { font-size: 1rem; }
.badge-text { color: #f0f0f0; }

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.highlight-orange {
    color: #f59e0b;
}

.highlight-purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Botones del Hero */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Logos de Tecnologías */
.tech-logos {
    margin-top: 40px;
    width: 100%;
    text-align: center;
}

.logo-label {
    display: block;
    color: #a0a0a0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.logos-container:hover {
    filter: grayscale(0%) opacity(1);
}

.logos-container i, .logos-container span {
    font-size: 1.8rem;
    color: white;
}

/* Estilos para el Pop-up de Video */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    background: #2c2c2c; /* Gris oscuro de macOS */
    padding: 0; /* Eliminamos el padding para que el header ocupe todo el ancho */
    border-radius: 12px; /* Bordes más redondeados */
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; /* Para que los bordes redondeados afecten al contenido */
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #3a3a3a; /* Barra de título más clara */
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.traffic-lights {
    display: flex;
    gap: 8px;
    margin-right: auto; /* Empuja el título al centro */
}

.traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.traffic-light.red { background-color: #ff5f57; }
.traffic-light.yellow { background-color: #ffbd2e; }
.traffic-light.green { background-color: #28c940; }

.popup-title {
    color: #d1d1d1;
    font-weight: 500;
    font-size: 0.9rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    height: 0;
    overflow: hidden;
    background: #000; /* Fondo negro para el video */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Sin borde en el iframe */
}

/* Sección de Comparación */
.comparison-section {
    padding: 60px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 30px;
    }
}

@media (max-width: 576px) {
    .comparison-section {
        padding: 40px 10px;
    }
}

.comparison-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.comparison-card.ai-way {
    border-color: #f59e0b;
}

.card-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 20px;
    background: #444;
    color: #ddd;
}

.card-badge.after {
    background: #f59e0b;
    color: black;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #a0a0a0;
}

.comparison-card ul li i {
    color: #f59e0b;
}

/* Media queries para la sección de comparación */
@media (max-width: 768px) {
    .comparison-section h2 {
        font-size: 2rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }
}

/* Sección de Información SaaS */
.saas-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-text p {
    color: #a0a0a0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-text ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.info-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ddd;
}

.info-text ul li i {
    color: #28c940; /* Verde para el check */
}

.notifications-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    font-family: 'Courier New', Courier, monospace;
}

.notifications-preview p {
    margin-bottom: 15px;
    color: #a0a0a0;
}

.notifications-preview span {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
}

.notifications-preview span i {
    color: #ffbd2e; /* Amarillo para el dolar */
    margin-right: 10px;
}

.final-text {
    font-weight: bold;
    color: #fff !important;
}

.info-dashboard {
    background: #1e1e1e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #3a3a3a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
}

.dashboard-url {
    background: #2c2c2c;
    color: #a0a0a0;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin: 0 auto;
}

.live-badge {
    position: absolute;
    right: 12px;
    background-color: #ff4d4d;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.dashboard-body {
    padding: 20px;
}

.dashboard-body h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.dashboard-body .subtitle {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.sale-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.sale-info {
    flex-grow: 1;
}

.sale-info span {
    display: block;
}

.sale-info .plan {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.sale-amount span {
    display: block;
    text-align: right;
}

.sale-amount .time {
    font-size: 0.8rem;
    color: #28c940;
}

.dashboard-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
}

.stat .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat .stat-label {
    font-size: 0.8rem;
    color: #a0a0a0;
}

/* Sección de Creaciones */
.creations-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    color: #28c940; /* Verde */
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.creations-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.highlight-green {
    color: #28c940;
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    text-align: left;
}

.creation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.creation-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: #28c940;
}

.creation-card i {
    font-size: 1.8rem;
    color: #28c940;
    margin-bottom: 20px;
}

.creation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.creation-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

.more-text {
    margin-top: 50px;
    color: #a0a0a0;
    font-style: italic;
}

.creations-section .more-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #a1a1aa;
}

/* ==========================================================================
   Estilos para la sección de Componentización Extrema
   ========================================================================== */

/* Contenedor principal de la sección */
.componentization-section {
    padding: 100px 0;
    position: relative;
}

/* Contenedor que alinea el texto y el diagrama */
.componentization-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas de igual tamaño */
    gap: 4rem; /* Espacio entre las columnas */
    align-items: start;
}

/* Estilos para la columna de texto */
.componentization-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.componentization-text h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fafafa;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.componentization-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.componentization-text p strong {
    color: #fafafa; /* Resaltar texto en negrita */
}

/* Estilos para la lista de beneficios */
.componentization-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.componentization-text ul li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.componentization-text ul li i {
    color: #22c55e; /* Icono de check en verde */
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Estilos para la caja de resumen verde */
.summary-box {
    background-color: rgba(34, 197, 94, 0.1); /* Fondo verde translúcido */
    border-left: 4px solid #22c55e; /* Borde izquierdo verde */
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.summary-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d8;
}

.summary-box p strong {
    color: #f0fdf4;
}

/* Estilos para la columna del diagrama */
.componentization-diagram {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    width: 100%;
    overflow: hidden;
}

.diagram-header {
    text-align: center;
    margin-bottom: 2rem;
}

.diagram-badge {
    display: inline-block;
    background-color: #22c55e;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.diagram-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.diagram-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
}

/* Contenido del diagrama y filas */
.diagram-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.diagram-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Bloques grandes de la parte superior */
.diagram-block {
    height: 2.5rem;
    flex-grow: 1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Componentes principales (Card, Form) */
.diagram-component {
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    width: 48%;
    text-align: center;
    transition: all 0.3s ease;
}

.diagram-component.purple { background-color: #8b5cf6; }
.diagram-component.orange { background-color: #f97316; }

/* Elementos de lista verdes */
.diagram-list-item {
    background-color: #10b981;
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    width: 48%;
    text-align: center;
    transition: all 0.3s ease;
}

/* Componentes pequeños de la parte inferior */
.small-components {
    opacity: 0; /* Inicialmente ocultos */
    transition: opacity 0.5s ease 0.5s; /* Transición de opacidad con retardo */
}

.diagram-small-item {
    display: flex;
    align-items: center;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
}

.diagram-small-item span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Colores para los puntos de los componentes pequeños */
.diagram-small-item:nth-child(1) span { background-color: #3b82f6; } /* Header.vue */
.diagram-small-item:nth-child(2) span { background-color: #ef4444; } /* Button.vue */
.diagram-small-item:nth-child(3) span { background-color: #8b5cf6; } /* Card.vue */
.diagram-row:nth-of-type(6) .diagram-small-item:nth-child(1) span { background-color: #f97316; } /* Form.vue */
.diagram-row:nth-of-type(6) .diagram-small-item:nth-child(2) span { background-color: #10b981; } /* List.vue */


/* Media query para hacer el diseño responsive en pantallas más pequeñas */
@media (max-width: 992px) {
    .componentization-section {
        padding: 4rem 1.5rem;
    }

    .componentization-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .componentization-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .componentization-section {
        padding: 60px 30px;
    }

    .componentization-container {
        gap: 2rem;
    }

    .componentization-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .componentization-text h3 {
        font-size: 1.4rem;
    }

    .componentization-text p,
    .componentization-text ul li {
        font-size: 1rem;
    }

    .summary-box {
        padding: 1rem;
    }

    .componentization-diagram {
        padding: 1.5rem;
    }

    .diagram-header h3 {
        font-size: 1.3rem;
    }

    .diagram-row {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .diagram-component,
    .diagram-list-item {
        width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .componentization-section {
        padding: 40px 10px;
    }

    .componentization-container {
        padding: 0 0.5rem;
    }

    .componentization-text h2 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .componentization-text h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .componentization-text p,
    .componentization-text ul li,
    .summary-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .componentization-text ul li i {
        font-size: 1rem;
        margin-right: 0.6rem;
        flex-shrink: 0;
    }

    .summary-box {
        padding: 0.8rem;
        margin-top: 1.5rem;
    }

    .componentization-diagram {
        padding: 1rem;
    }

    .diagram-header {
        margin-bottom: 1.5rem;
    }

    .diagram-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .diagram-header h3 {
        font-size: 1.1rem;
    }

    .diagram-header p {
        font-size: 0.8rem;
    }

    .diagram-row {
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .diagram-block {
        height: 2rem;
        min-width: 100%;
    }

    .diagram-component,
    .diagram-list-item {
        width: 100%;
        font-size: 0.75rem;
        padding: 0.6rem;
    }

    .diagram-small-item {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        width: 100%;
        margin-bottom: 0.3rem;
    }

    .diagram-small-item span {
        width: 8px;
        height: 8px;
    }
}

/* Media queries para la sección de creaciones */
@media (max-width: 992px) {
    .creations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .creations-section {
        padding: 60px 30px;
    }

    .creations-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .creations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .creation-card {
        padding: 25px;
    }

    .creation-card i {
        font-size: 1.5rem;
    }

    .creation-card h3 {
        font-size: 1.1rem;
    }

    .creation-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .creations-section {
        padding: 40px 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Media queries para la sección de info SaaS */
@media (max-width: 992px) {
    .saas-info-section {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .saas-info-section {
        padding: 60px 30px;
        gap: 30px;
    }

    .info-text h2 {
        font-size: 1.8rem;
    }

    .info-text p,
    .info-text ul li {
        font-size: 0.95rem;
    }

    .notifications-preview {
        padding: 15px;
    }

    .dashboard-footer {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .saas-info-section {
        padding: 40px 10px;
    }

    .info-text h2 {
        font-size: 1.5rem;
    }

    .dashboard-body h4 {
        font-size: 1rem;
    }
}

/* Diseño Responsivo */

/* Tablets (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .container {
        max-width: 750px;
    }
}

/* Móviles y Tablets pequeñas (hasta 768px) */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .main-header {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        z-index: 100;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .main-nav a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .container {
        padding: 100px 15px 40px;
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
    }

    .logos-container {
        gap: 20px;
        padding: 0 10px;
    }

    .logos-container i, .logos-container span {
        font-size: 1.3rem;
    }

    /* Dashboard responsive */
    .dashboard-footer {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat:last-child {
        border-bottom: none;
    }

    /* Pop-up responsive */
    .popup-content {
        width: 95%;
        margin: 10px;
    }

    .popup-title {
        font-size: 0.8rem;
    }

    /* Anatomía section responsive */
    .anatomy-text h3 {
        font-size: 1.8rem;
    }

    .anatomy-text p {
        font-size: 1rem;
    }

    .diagram-grid {
        gap: 1rem;
    }
}

/* Móviles pequeños (hasta 576px) */
@media (max-width: 576px) {
    body {
        padding: 0;
    }

    .main-header {
        padding: 12px 10px;
        max-width: 100%;
    }

    .logo span {
        font-size: 1rem;
    }

    .main-nav a {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .container {
        padding: 80px 10px 30px;
    }

    .header-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .logos-container {
        gap: 15px;
    }

    .logos-container i, .logos-container span {
        font-size: 1.1rem;
    }

    .comparison-section h2,
    .creations-section h2,
    .saas-info-section h2 {
        font-size: 1.6rem;
    }

    .comparison-card,
    .creation-card {
        padding: 15px;
    }

    .sale-item {
        flex-wrap: wrap;
    }

    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .componentization-text h2 {
        font-size: 1.8rem;
    }

    .componentization-text h3 {
        font-size: 1.4rem;
    }

    .componentization-text p,
    .componentization-text ul li {
        font-size: 0.95rem;
    }

    .diagram-component,
    .diagram-list-item {
        font-size: 0.85rem;
        padding: 0.8rem;
    }

    .anatomy-text h3 {
        font-size: 1.5rem;
    }

    .file-item {
        font-size: 0.8rem;
    }

    .file-item i {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Estilos para la sección de Anatomía de Software
   ========================================================================== */
.software-anatomy-section {
    padding: 100px 0;
    position: relative;
}

.anatomy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna de texto izquierda */
.anatomy-text .module-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.anatomy-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.anatomy-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 2rem;
}

.anatomy-text h4 {
    font-size: 1.2rem;
    color: #fafafa;
    margin-bottom: 1rem;
}

.anatomy-text ul {
    list-style: none;
    padding: 0;
}

.anatomy-text ul li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.anatomy-text ul li i {
    color: #22c55e;
    margin-right: 0.8rem;
}

/* Columna del diagrama derecha */
.anatomy-diagram {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.anatomy-diagram .diagram-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.anatomy-diagram .diagram-badge {
    display: inline-block;
    background-color: #22c55e;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.anatomy-diagram h4 {
    font-size: 1.5rem;
    margin: 0;
    color: #fafafa;
}

.anatomy-diagram p {
    color: #a1a1aa;
    margin-top: 0.5rem;
}

.diagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    font-size: 0.9rem;
}

.file-item i {
    font-size: 2rem;
    color: #818cf8; /* Color de los iconos de carpeta */
}

.diagram-footer {
    text-align: center;
    background-color: #22c55e;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

/* Sección Título Comunidad */
.section-title {
    padding: 60px 20px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .section-title {
        padding: 60px 30px 30px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        padding: 40px 10px 20px;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .software-anatomy-section {
        padding: 3rem 1.5rem 4rem;
    }

    .anatomy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .software-anatomy-section {
        padding: 60px 30px;
    }

    .anatomy-container {
        gap: 2rem;
    }

    .anatomy-text h3 {
        font-size: 2rem;
    }

    .anatomy-text h4 {
        font-size: 1.1rem;
    }

    .anatomy-text p {
        font-size: 1rem;
    }

    .anatomy-text ul li {
        font-size: 1rem;
    }

    .anatomy-diagram {
        padding: 1.5rem;
    }

    .anatomy-diagram h4 {
        font-size: 1.3rem;
    }

    .diagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .software-anatomy-section {
        padding: 40px 10px;
    }

    .anatomy-container {
        padding: 0 0.5rem;
    }

    .anatomy-text .module-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .anatomy-text h3 {
        font-size: 1.6rem;
    }

    .anatomy-text p {
        font-size: 0.9rem;
    }

    .anatomy-text ul li {
        font-size: 0.95rem;
    }

    .diagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .file-item {
        font-size: 0.75rem;
    }

    .file-item i {
        font-size: 1.5rem;
    }

    .diagram-footer {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Estilos para la sección de GitHub Módulo
   ========================================================================== */
.github-module-section {
    padding: 100px 0;
    position: relative;
}

.github-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna izquierda - GitHub Workflow */
.github-workflow {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.workflow-header {
    text-align: center;
    margin-bottom: 2rem;
}

.workflow-badge {
    display: inline-block;
    background-color: #22c55e;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.workflow-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.workflow-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
}

.workflow-content h4 {
    color: #fafafa;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Contenedores de branches */
.branch-container {
    margin-bottom: 2rem;
}

.branch-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.branch-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.branch-indicator.main {
    background-color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.branch-indicator.feature {
    background-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.branch-name {
    color: #a1a1aa;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Timeline de commits */
.commit-timeline {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin-left: 6px;
}

.commit-line {
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #22c55e 0%, #22c55e 100%);
}

.feature-timeline .commit-line {
    background: linear-gradient(90deg, #3b82f6 0%, #3b82f6 100%);
}

.commit-point {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-timeline .commit-point {
    background-color: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
}

.commit-point:hover {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(34, 197, 94, 1);
}

.feature-timeline .commit-point:hover {
    box-shadow: 0 0 15px rgba(59, 130, 246, 1);
}

/* Acciones de Git */
.git-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.git-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #2a273a;
    border-radius: 8px;
    border: 1px solid #37304f;
    transition: all 0.3s ease;
}

.git-action:hover {
    background-color: #37304f;
    transform: translateY(-2px);
}

.git-action i {
    font-size: 1.5rem;
    color: #a1a1aa;
}

.git-action:nth-child(1) i { color: #8b5cf6; }
.git-action:nth-child(2) i { color: #22c55e; }
.git-action:nth-child(3) i { color: #f97316; }
.git-action:nth-child(4) i { color: #ef4444; }

.git-action span {
    font-size: 0.85rem;
    color: #d4d4d8;
    text-align: center;
}

/* Mensaje de seguridad */
.security-message {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.security-message i {
    color: #22c55e;
    font-size: 1.2rem;
}

.security-message span {
    color: #d4d4d8;
    font-size: 0.9rem;
}

/* Columna derecha - Información */
.github-info .module-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.github-info .module-header i {
    color: #22c55e;
}

.github-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.github-info h3 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 2rem 0 1rem;
}

.github-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.learning-list {
    list-style: none;
    padding: 0;
}

.learning-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.learning-list li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Caja de importancia */
.importance-box {
    background-color: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.importance-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.importance-header i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.importance-header h4 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 0;
}

.importance-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d8;
}

/* Responsive - GitHub Module */
@media (max-width: 992px) {
    .github-module-section {
        padding: 3rem 1.5rem 4rem;
    }

    .github-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .github-workflow {
        position: relative;
        top: 0;
        order: 2;
    }

    .github-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .github-module-section {
        padding: 60px 30px;
    }

    .github-container {
        gap: 2rem;
    }

    .github-workflow {
        position: relative;
        top: 0;
    }

    .github-info h2 {
        font-size: 2rem;
    }

    .github-info p,
    .learning-list li {
        font-size: 1rem;
    }

    .git-actions {
        grid-template-columns: 1fr;
    }

    .github-workflow {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .github-module-section {
        padding: 40px 10px;
    }

    .github-container {
        padding: 0 0.5rem;
    }

    .github-info .module-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .github-info h2 {
        font-size: 1.6rem;
    }

    .github-info h3 {
        font-size: 1.1rem;
    }

    .github-info p,
    .learning-list li,
    .importance-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .learning-list li i {
        font-size: 1rem;
        margin-right: 0.6rem;
    }

    .github-workflow {
        padding: 1rem;
    }

    .workflow-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .workflow-header h3 {
        font-size: 1.2rem;
    }

    .workflow-header p {
        font-size: 0.8rem;
    }

    .workflow-content h4 {
        font-size: 1rem;
    }

    .branch-label {
        font-size: 0.75rem;
    }

    .git-action {
        padding: 0.8rem;
    }

    .git-action i {
        font-size: 1.3rem;
    }

    .git-action span {
        font-size: 0.75rem;
    }

    .security-message {
        padding: 0.8rem;
    }

    .security-message i {
        font-size: 1rem;
    }

    .security-message span {
        font-size: 0.8rem;
    }

    .importance-header i {
        font-size: 1.2rem;
    }

    .importance-header h4 {
        font-size: 1rem;
    }

    .importance-box {
        padding: 1rem;
    }
}

/* ==========================================================================
   Estilos para la sección de Supabase Auth
   ========================================================================== */
.supabase-auth-section {
    padding: 100px 0;
    position: relative;
}

.supabase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna izquierda - Información */
.supabase-info .module-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.supabase-info .module-header i {
    color: #22c55e;
}

.supabase-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
}

.supabase-info h3 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 2rem 0 1rem;
}

.supabase-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.supabase-info .learning-list {
    list-style: none;
    padding: 0;
}

.supabase-info .learning-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.supabase-info .learning-list li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Caja de importancia específica para Supabase */
.supabase-highlight {
    background-color: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.supabase-highlight .importance-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.supabase-highlight .importance-header i {
    color: #22c55e;
    font-size: 1.5rem;
}

.supabase-highlight .importance-header h4 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 0;
}

.supabase-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d8;
}

/* Columna derecha - Demo del panel */
.supabase-demo {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-badge {
    display: inline-block;
    background-color: #22c55e;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.demo-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.demo-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Panel de autenticación */
.auth-panel {
    background-color: #0f1419;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #2a273a;
}

.auth-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.auth-icon i {
    font-size: 1.8rem;
    color: white;
}

.auth-title {
    text-align: center;
    font-size: 1.5rem;
    color: #fafafa;
    margin-bottom: 0.3rem;
}

.auth-subtitle {
    text-align: center;
    color: #a1a1aa;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

/* Formulario de autenticación */
.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: #d4d4d8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    background-color: #1a1f26;
    border: 1px solid #2a273a;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #a1a1aa;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #22c55e;
    background-color: #1e2329;
}

.btn-signin {
    width: 100%;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Recursos inclusos */
.auth-resources {
    border-top: 1px solid #2a273a;
    padding-top: 1.5rem;
}

.auth-resources h5 {
    text-align: center;
    color: #fafafa;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.resource-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #1a1f26;
    border-radius: 8px;
    border: 1px solid #2a273a;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background-color: #232830;
    transform: translateY(-2px);
}

.resource-item i {
    font-size: 1.3rem;
    color: #a1a1aa;
}

.resource-item:nth-child(1) i { color: #3b82f6; }
.resource-item:nth-child(2) i { color: #22c55e; }
.resource-item:nth-child(3) i { color: #ec4899; }
.resource-item:nth-child(4) i { color: #f59e0b; }

.resource-item span {
    font-size: 0.85rem;
    color: #d4d4d8;
    text-align: center;
}

/* Responsive - Supabase Auth */
@media (max-width: 992px) {
    .supabase-auth-section {
        padding: 3rem 1.5rem 4rem;
    }

    .supabase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .supabase-demo {
        position: relative;
        top: 0;
        order: 2;
    }

    .supabase-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .supabase-auth-section {
        padding: 60px 30px;
    }

    .supabase-container {
        gap: 2rem;
    }

    .supabase-info h2 {
        font-size: 2rem;
    }

    .supabase-info h3 {
        font-size: 1.1rem;
    }

    .supabase-info p {
        font-size: 1rem;
    }

    .supabase-info .learning-list li {
        font-size: 1rem;
    }

    .supabase-demo {
        padding: 1.5rem;
    }

    .demo-header h3 {
        font-size: 1.3rem;
    }

    .auth-panel {
        padding: 2rem 1.5rem;
    }

    .resources-grid {
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .supabase-auth-section {
        padding: 40px 10px;
    }

    .supabase-container {
        padding: 0 0.5rem;
    }

    .supabase-info .module-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .supabase-info h2 {
        font-size: 1.6rem;
    }

    .supabase-info p {
        font-size: 0.9rem;
    }

    .supabase-info .learning-list li {
        font-size: 0.95rem;
    }

    .supabase-demo {
        padding: 1rem;
    }

    .demo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .demo-header h3 {
        font-size: 1.1rem;
    }

    .auth-panel {
        padding: 1.5rem 1rem;
    }

    .auth-title {
        font-size: 1.2rem;
    }

    .form-group input {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .btn-signin {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .resources-grid {
        gap: 0.6rem;
    }

    .resource-item {
        padding: 0.8rem;
    }

    .resource-item i {
        font-size: 1.1rem;
    }

    .resource-item span {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Estilos para la sección de Supabase Modelagem
   ========================================================================== */
.supabase-modelagem-section {
    padding: 100px 0;
    position: relative;
}

.modelagem-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna izquierda - Demo del modelado */
.modelagem-demo {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.modelagem-demo .demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modelagem-demo .demo-badge {
    display: inline-block;
    background-color: #22c55e;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.modelagem-demo .demo-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.modelagem-demo .demo-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Panel de base de datos */
.database-panel {
    background-color: #0f1419;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #2a273a;
    position: relative;
}

/* Grid de tablas */
.tables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.table-card {
    background-color: #1a1f26;
    border: 1px solid #2a273a;
    border-radius: 8px;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.table-card:hover {
    transform: translateY(-3px);
    border-color: #3a3a4f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.table-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a273a;
}

.table-header i:first-child {
    font-size: 0.6rem;
}

.table-header span {
    flex-grow: 1;
    color: #fafafa;
    font-weight: 600;
    font-size: 0.9rem;
}

.table-header i:last-child {
    color: #a1a1aa;
    font-size: 0.9rem;
}

.table-fields {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field {
    background-color: #232830;
    color: #a1a1aa;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

/* Icono central de base de datos */
.database-icon {
    text-align: center;
    margin: 1.5rem 0;
}

.database-icon i {
    font-size: 2rem;
    color: #22c55e;
    opacity: 0.6;
}

/* Características de la base de datos */
.database-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-card {
    background-color: #1a1f26;
    border: 1px solid #2a273a;
    border-radius: 8px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    background-color: #232830;
    transform: translateY(-2px);
}

.feature-card i {
    font-size: 1.3rem;
    color: #a1a1aa;
}

.feature-card:nth-child(1) i { color: #3b82f6; }
.feature-card:nth-child(2) i { color: #22c55e; }
.feature-card:nth-child(3) i { color: #8b5cf6; }
.feature-card:nth-child(4) i { color: #f59e0b; }

.feature-card span {
    font-size: 0.8rem;
    color: #d4d4d8;
    text-align: center;
}

/* Badge de PostgreSQL */
.postgres-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem;
    background-color: #1a1f26;
    border: 1px solid #22c55e;
    border-radius: 8px;
}

.postgres-badge i {
    color: #22c55e;
    font-size: 1rem;
}

.postgres-badge span {
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Columna derecha - Información */
.modelagem-info .module-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.modelagem-info .module-header i {
    color: #22c55e;
}

.modelagem-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
}

.modelagem-info h3 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 2rem 0 1rem;
}

.modelagem-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.modelagem-info .learning-list {
    list-style: none;
    padding: 0;
}

.modelagem-info .learning-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.modelagem-info .learning-list li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Caja de importancia específica para Modelagem */
.modelagem-highlight {
    background-color: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.modelagem-highlight .importance-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.modelagem-highlight .importance-header i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.modelagem-highlight .importance-header h4 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 0;
}

.modelagem-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d8;
}

/* Responsive - Supabase Modelagem */
@media (max-width: 992px) {
    .supabase-modelagem-section {
        padding: 3rem 1.5rem 4rem;
    }

    .modelagem-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modelagem-demo {
        position: relative;
        top: 0;
        order: 1;
    }

    .modelagem-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .supabase-modelagem-section {
        padding: 60px 30px;
    }

    .modelagem-container {
        gap: 2rem;
    }

    .modelagem-info h2 {
        font-size: 2rem;
    }

    .modelagem-info h3 {
        font-size: 1.1rem;
    }

    .modelagem-info p {
        font-size: 1rem;
    }

    .modelagem-info .learning-list li {
        font-size: 1rem;
    }

    .modelagem-demo {
        padding: 1.5rem;
    }

    .database-panel {
        padding: 1.5rem 1rem;
    }

    .tables-grid {
        gap: 0.8rem;
    }

    .database-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}

@media (max-width: 576px) {
    .supabase-modelagem-section {
        padding: 40px 10px;
    }

    .modelagem-container {
        padding: 0 0.5rem;
    }

    .modelagem-info .module-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .modelagem-info h2 {
        font-size: 1.6rem;
    }

    .modelagem-info p {
        font-size: 0.9rem;
    }

    .modelagem-info .learning-list li {
        font-size: 0.95rem;
    }

    .modelagem-demo {
        padding: 1rem;
    }

    .modelagem-demo .demo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .modelagem-demo .demo-header h3 {
        font-size: 1.1rem;
    }

    .database-panel {
        padding: 1.2rem 0.8rem;
    }

    .tables-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .table-card {
        padding: 0.6rem;
    }

    .table-header span {
        font-size: 0.85rem;
    }

    .field {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }

    .database-icon i {
        font-size: 1.5rem;
    }

    .database-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .feature-card {
        padding: 0.8rem 0.4rem;
    }

    .feature-card i {
        font-size: 1.1rem;
    }

    .feature-card span {
        font-size: 0.7rem;
    }

    .postgres-badge {
        padding: 0.5rem;
    }

    .postgres-badge i {
        font-size: 0.9rem;
    }

    .postgres-badge span {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Estilos para la sección de Supabase Avançado
   ========================================================================== */
.supabase-avancado-section {
    padding: 100px 0;
    position: relative;
}

.avancado-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna izquierda - Información */
.avancado-info .module-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.avancado-info .module-header i {
    color: #22c55e;
}

.avancado-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
}

.avancado-info h3 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 2rem 0 1rem;
}

.avancado-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.avancado-info .learning-list {
    list-style: none;
    padding: 0;
}

.avancado-info .learning-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.avancado-info .learning-list li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Caja de importancia específica para Avançado */
.avancado-highlight {
    background-color: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.avancado-highlight .importance-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.avancado-highlight .importance-header i {
    color: #22c55e;
    font-size: 1.5rem;
}

.avancado-highlight .importance-header h4 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 0;
}

.avancado-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d8;
}

/* Columna derecha - Demo de recursos avanzados */
.avancado-demo {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.avancado-demo .demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.avancado-demo .demo-badge {
    display: inline-block;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.avancado-demo .demo-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.avancado-demo .demo-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Panel de recursos */
.resources-panel {
    background-color: #0f1419;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #2a273a;
}

/* Tarjetas de recursos avanzados */
.advanced-resources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advanced-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.card-icon:hover {
    transform: scale(1.1);
}

.card-icon.yellow {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.card-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.card-icon.green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.advanced-card h4 {
    color: #fafafa;
    font-size: 1.1rem;
    margin: 0;
}

.advanced-card p {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin: 0;
}

/* Botón de acción */
.action-button {
    text-align: center;
}

.btn-recursos-avancados {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-recursos-avancados:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-recursos-avancados i {
    font-size: 1.1rem;
}

/* Responsive - Supabase Avançado */
@media (max-width: 992px) {
    .supabase-avancado-section {
        padding: 3rem 1.5rem 4rem;
    }

    .avancado-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .avancado-demo {
        position: relative;
        top: 0;
        order: 2;
    }

    .avancado-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .supabase-avancado-section {
        padding: 60px 30px;
    }

    .avancado-container {
        gap: 2rem;
    }

    .avancado-info h2 {
        font-size: 2rem;
    }

    .avancado-info h3 {
        font-size: 1.1rem;
    }

    .avancado-info p {
        font-size: 1rem;
    }

    .avancado-info .learning-list li {
        font-size: 1rem;
    }

    .avancado-demo {
        padding: 1.5rem;
    }

    .resources-panel {
        padding: 2rem 1.5rem;
    }

    .advanced-resources {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .supabase-avancado-section {
        padding: 40px 10px;
    }

    .avancado-container {
        padding: 0 0.5rem;
    }

    .avancado-info .module-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .avancado-info h2 {
        font-size: 1.6rem;
    }

    .avancado-info p {
        font-size: 0.9rem;
    }

    .avancado-info .learning-list li {
        font-size: 0.95rem;
    }

    .avancado-demo {
        padding: 1rem;
    }

    .avancado-demo .demo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .avancado-demo .demo-header h3 {
        font-size: 1.1rem;
    }

    .resources-panel {
        padding: 1.5rem 1rem;
    }

    .advanced-resources {
        gap: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .advanced-card h4 {
        font-size: 1rem;
    }

    .advanced-card p {
        font-size: 0.8rem;
    }

    .btn-recursos-avancados {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Estilos para la sección de Supabase Segurança & RLS
   ========================================================================== */
.supabase-security-section {
    padding: 100px 0;
    position: relative;
}

.security-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna izquierda - Demo de seguridad */
.security-demo {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.security-demo .demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.security-demo .demo-badge {
    display: inline-block;
    background-color: #22c55e;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.security-demo .demo-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.security-demo .demo-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Panel de seguridad */
.security-panel {
    background-color: #0a0e1a;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #1a2030;
}

/* Tarjetas superiores de seguridad */
.security-features-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.security-card {
    background-color: #141824;
    border: 1px solid #1e2537;
    border-radius: 10px;
    padding: 1.2rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #2a3447;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.security-icon:hover {
    transform: scale(1.1);
}

.security-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.security-icon.green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.security-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.security-icon i {
    font-size: 1.5rem;
    color: white;
}

.security-card h4 {
    color: #fafafa;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.security-card p {
    color: #a1a1aa;
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}

/* Icono escudo central */
.shield-icon {
    text-align: center;
    margin: 2rem 0;
}

.shield-icon i {
    font-size: 2.5rem;
    color: #22c55e;
    opacity: 0.4;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.3));
}

/* Tarjetas inferiores de permisos */
.security-features-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.permission-card {
    background-color: #141824;
    border: 1px solid #1e2537;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.permission-card:hover {
    transform: translateY(-5px);
    border-color: #2a3447;
}

.permission-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.permission-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.permission-icon.blue-user {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.permission-icon i {
    font-size: 1.3rem;
    color: white;
}

.permission-card h4 {
    color: #fafafa;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

.permission-card p {
    color: #a1a1aa;
    font-size: 0.75rem;
    margin: 0;
}

/* Botón de protección */
.protection-button {
    text-align: center;
}

.btn-dados-protegidos {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    border: 1px solid #22c55e;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dados-protegidos:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-dados-protegidos i {
    font-size: 1rem;
}

/* Columna derecha - Información */
.security-info .module-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.security-info .module-header i {
    color: #22c55e;
}

.security-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
}

.security-info h3 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 2rem 0 1rem;
}

.security-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.security-info .learning-list {
    list-style: none;
    padding: 0;
}

.security-info .learning-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.security-info .learning-list li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Caja de importancia específica para Security */
.security-highlight {
    background-color: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.security-highlight .importance-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.security-highlight .importance-header i {
    color: #22c55e;
    font-size: 1.5rem;
}

.security-highlight .importance-header h4 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 0;
}

.security-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d8;
}

/* Responsive - Supabase Security */
@media (max-width: 992px) {
    .supabase-security-section {
        padding: 3rem 1.5rem 4rem;
    }

    .security-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .security-demo {
        position: relative;
        top: 0;
        order: 1;
    }

    .security-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .supabase-security-section {
        padding: 60px 30px;
    }

    .security-container {
        gap: 2rem;
    }

    .security-info h2 {
        font-size: 2rem;
    }

    .security-info h3 {
        font-size: 1.1rem;
    }

    .security-info p {
        font-size: 1rem;
    }

    .security-info .learning-list li {
        font-size: 1rem;
    }

    .security-demo {
        padding: 1.5rem;
    }

    .security-panel {
        padding: 2rem 1.5rem;
    }

    .security-features-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .security-features-bottom {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .supabase-security-section {
        padding: 40px 10px;
    }

    .security-container {
        padding: 0 0.5rem;
    }

    .security-info .module-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .security-info h2 {
        font-size: 1.6rem;
    }

    .security-info p {
        font-size: 0.9rem;
    }

    .security-info .learning-list li {
        font-size: 0.95rem;
    }

    .security-demo {
        padding: 1rem;
    }

    .security-demo .demo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .security-demo .demo-header h3 {
        font-size: 1.1rem;
    }

    .security-panel {
        padding: 1.5rem 1rem;
    }

    .security-features-top {
        gap: 0.8rem;
    }

    .security-card {
        padding: 1rem 0.6rem;
    }

    .security-icon {
        width: 50px;
        height: 50px;
    }

    .security-icon i {
        font-size: 1.3rem;
    }

    .security-card h4 {
        font-size: 0.9rem;
    }

    .security-card p {
        font-size: 0.75rem;
    }

    .shield-icon i {
        font-size: 2rem;
    }

    .security-features-bottom {
        gap: 0.8rem;
    }

    .permission-card {
        padding: 1.2rem 0.8rem;
    }

    .permission-icon {
        width: 45px;
        height: 45px;
    }

    .permission-icon i {
        font-size: 1.1rem;
    }

    .permission-card h4 {
        font-size: 0.85rem;
    }

    .btn-dados-protegidos {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ================================================================================================== */
/* ============================= ESTILOS SECCIÓN STRIPE =========================================== */
/* ================================================================================================== */

.stripe-section {
    padding: 100px 0;
    position: relative;
}

.stripe-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna de información */
.stripe-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stripe-info .module-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #6d28d9;
    width: fit-content;
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
}

.stripe-info .module-header i {
    font-size: 1rem;
    color: #ffffff;
}

.stripe-info .module-header span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.stripe-info h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #fafafa;
    margin: 0;
    line-height: 1.2;
}

.stripe-info p {
    color: #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.7;
}

.stripe-info h3 {
    font-size: 1.3rem;
    color: #fafafa;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stripe-info .learning-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.stripe-info .learning-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #d4d4d8;
    font-size: 1rem;
    line-height: 1.5;
}

.stripe-info .learning-list i {
    color: #6d28d9;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.importance-box.stripe-highlight {
    background-color: #1c1532;
    border: 1px solid #6d28d9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.importance-box.stripe-highlight .importance-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.importance-box.stripe-highlight .importance-header i {
    color: #6d28d9;
    font-size: 1.5rem;
}

.importance-box.stripe-highlight .importance-header h4 {
    color: #fafafa;
    font-size: 1.2rem;
    margin: 0;
}

.importance-box.stripe-highlight p {
    color: #d4d4d8;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Columna de demo */
.stripe-demo {
    background-color: #0f0e15;
    border: 1px solid #27243a;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.stripe-demo .demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stripe-demo .demo-badge {
    display: inline-block;
    background-color: #6d28d9;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.stripe-demo .demo-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.stripe-demo .demo-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Panel de Stripe */
.stripe-panel {
    background-color: #0a0a14;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #1a1830;
}

/* Flujo de pago superior */
.payment-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.flow-card {
    background-color: #12111d;
    border: 1px solid #1e1d2e;
    border-radius: 10px;
    padding: 1.2rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.flow-card:hover {
    transform: translateY(-5px);
    border-color: #2a2840;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.flow-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.flow-icon:hover {
    transform: scale(1.1);
}

.flow-card.trial .flow-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.flow-card.subscribe .flow-icon {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.flow-card.payment .flow-icon {
    background: linear-gradient(135deg, #a855f7, #d946ef);
}

.flow-icon i {
    font-size: 1.5rem;
    color: white;
}

.flow-card h4 {
    color: #fafafa;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.flow-card p {
    color: #71717a;
    font-size: 0.85rem;
    margin: 0;
}

/* Icono divisor */
.divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider-icon i {
    font-size: 2rem;
    color: #6d28d9;
    animation: pulse-divider 2s ease-in-out infinite;
}

@keyframes pulse-divider {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Tarjetas de estado */
.status-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.status-card {
    background-color: #12111d;
    border: 1px solid #1e1d2e;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: #2a2840;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.status-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.status-icon:hover {
    transform: rotate(10deg) scale(1.1);
}

.status-card.unlocked .status-icon {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.status-card.blocked .status-icon {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.status-icon i {
    font-size: 1.4rem;
    color: white;
}

.status-card h4 {
    color: #fafafa;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.status-card p {
    color: #71717a;
    font-size: 0.85rem;
    margin: 0;
}

/* Sección de webhooks */
.webhooks-section {
    margin-bottom: 2rem;
}

.webhooks-section h5 {
    color: #fafafa;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.webhook-tags {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.webhook-tag {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.webhook-tag.success {
    background-color: #166534;
    color: #86efac;
}

.webhook-tag.error {
    background-color: #7f1d1d;
    color: #fca5a5;
}

.webhook-tag.info {
    background-color: #1e3a8a;
    color: #93c5fd;
}

/* Botón de ingresos recurrentes */
.recurring-revenue {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-receita-recorrente {
    background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.btn-receita-recorrente:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.5);
}

.btn-receita-recorrente i {
    font-size: 1.1rem;
    animation: rotate-sync 2s linear infinite;
}

@keyframes rotate-sync {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Stripe Section */
@media (max-width: 992px) {
    .stripe-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stripe-demo {
        position: static;
    }

    .stripe-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stripe-section {
        padding: 60px 30px;
    }

    .stripe-info h2 {
        font-size: 2rem;
    }

    .stripe-info p {
        font-size: 1rem;
    }

    .stripe-demo {
        padding: 1.5rem;
    }

    .stripe-demo .demo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .stripe-demo .demo-header h3 {
        font-size: 1.2rem;
    }

    .stripe-panel {
        padding: 1.5rem 1rem;
    }

    .payment-flow {
        gap: 0.8rem;
    }

    .flow-card {
        padding: 1rem 0.6rem;
    }

    .flow-icon {
        width: 50px;
        height: 50px;
    }

    .flow-icon i {
        font-size: 1.3rem;
    }

    .flow-card h4 {
        font-size: 0.9rem;
    }

    .flow-card p {
        font-size: 0.75rem;
    }

    .divider-icon i {
        font-size: 1.5rem;
    }

    .status-cards {
        gap: 0.8rem;
    }

    .status-card {
        padding: 1.2rem 0.8rem;
    }

    .status-icon {
        width: 45px;
        height: 45px;
    }

    .status-icon i {
        font-size: 1.2rem;
    }

    .status-card h4 {
        font-size: 0.85rem;
    }

    .webhook-tags {
        gap: 0.5rem;
    }

    .webhook-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .btn-receita-recorrente {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .stripe-section {
        padding: 40px 10px;
    }

    .stripe-container {
        padding: 0 0.5rem;
    }

    .payment-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .status-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .webhook-tags {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   Estilos para la sección de Deploy Profesional
   ========================================================================== */
.deploy-section {
    padding: 100px 0;
    position: relative;
}

.deploy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna izquierda - Demo del deploy */
.deploy-demo {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.deploy-demo .demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.deploy-demo .demo-badge {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.deploy-demo .demo-header h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.deploy-demo .demo-header p {
    color: #a1a1aa;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Browser Mockup */
.browser-mockup {
    background-color: #1e1e1e;
    border-radius: 12px;
    border: 1px solid #2c2c2c;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #3a3a3a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    gap: 1rem;
}

.browser-url {
    flex-grow: 1;
    background: #2c2c2c;
    color: #a0a0a0;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-url i {
    color: #22c55e;
    font-size: 0.8rem;
}

.browser-actions {
    display: flex;
    gap: 0.5rem;
}

.browser-actions i {
    color: #a0a0a0;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.browser-actions i:hover {
    color: #ffffff;
}

/* Contenido del navegador */
.browser-content {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.deploy-service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.deploy-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1);
}

.deploy-service-card.vercel .service-icon {
    background: linear-gradient(135deg, #000000, #333333);
}

.deploy-service-card.vps .service-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.deploy-service-card.domain .service-icon {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.deploy-service-card h4 {
    color: #fafafa;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.deploy-service-card p {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

/* Configuración de dominio */
.domain-config {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.domain-config h5 {
    color: #fafafa;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.domain-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.domain-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.domain-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.domain-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.domain-indicator.active {
    background-color: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.domain-name {
    color: #a1a1aa;
    font-size: 0.85rem;
    min-width: 70px;
}

.domain-url {
    color: #3b82f6;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

/* Estado de Deploy */
.deploy-status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.status-badge:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.status-badge i {
    font-size: 1.2rem;
}

.status-badge.ssl i {
    color: #22c55e;
}

.status-badge.online i {
    color: #3b82f6;
}

.status-badge span:first-of-type {
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-label {
    color: #22c55e !important;
    font-size: 0.75rem !important;
}

.status-percent {
    color: #3b82f6 !important;
    font-size: 0.75rem !important;
}

/* Botón SaaS Online */
.saas-online-button {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-saas-online {
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-saas-online:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.btn-saas-online i {
    font-size: 1.1rem;
}

/* Columna derecha - Información */
.deploy-info .module-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.deploy-info .module-header i {
    color: #22c55e;
}

.deploy-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
}

.deploy-info h3 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 2rem 0 1rem;
}

.deploy-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
}

.deploy-info .learning-list {
    list-style: none;
    padding: 0;
}

.deploy-info .learning-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #d4d4d8;
}

.deploy-info .learning-list li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Caja de importancia específica para Deploy */
.deploy-highlight {
    background-color: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.deploy-highlight .importance-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.deploy-highlight .importance-header i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.deploy-highlight .importance-header h4 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 0;
}

.deploy-highlight p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d8;
}

/* Responsive - Deploy Section */
@media (max-width: 992px) {
    .deploy-section {
        padding: 60px 30px;
    }

    .deploy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .deploy-demo {
        position: relative;
        top: 0;
        order: 1;
    }

    .deploy-info {
        order: 2;
    }

    .deploy-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .deploy-section {
        padding: 60px 30px;
    }

    .deploy-container {
        gap: 2rem;
    }

    .deploy-info h2 {
        font-size: 2rem;
    }

    .deploy-info h3 {
        font-size: 1.1rem;
    }

    .deploy-info p,
    .deploy-info .learning-list li {
        font-size: 1rem;
    }

    .deploy-demo {
        padding: 1.5rem;
    }

    .deploy-demo .demo-header h3 {
        font-size: 1.3rem;
    }

    .browser-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .deploy-service-card {
        padding: 1.2rem 1rem;
    }

    .deploy-status {
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .deploy-section {
        padding: 40px 10px;
    }

    .deploy-container {
        padding: 0 0.5rem;
    }

    .deploy-info .module-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .deploy-info h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .deploy-info h3 {
        font-size: 1rem;
    }

    .deploy-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .deploy-info .learning-list li {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .deploy-info .learning-list li i {
        font-size: 1rem;
        margin-right: 0.6rem;
    }

    .deploy-demo {
        padding: 1rem;
    }

    .deploy-demo .demo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .deploy-demo .demo-header h3 {
        font-size: 1.1rem;
    }

    .deploy-demo .demo-header p {
        font-size: 0.8rem;
    }

    .browser-header {
        padding: 8px;
    }

    .browser-url {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .browser-url i {
        font-size: 0.7rem;
    }

    .browser-content {
        padding: 1rem 0.8rem;
        gap: 0.8rem;
    }

    .deploy-service-card {
        padding: 1rem 0.8rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.3rem;
    }

    .deploy-service-card h4 {
        font-size: 0.9rem;
    }

    .deploy-service-card p {
        font-size: 0.75rem;
    }

    .domain-config {
        padding: 1rem 0.8rem;
    }

    .domain-config h5 {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .domain-list {
        gap: 0.6rem;
    }

    .domain-item {
        padding: 0.5rem 0.6rem;
    }

    .domain-indicator {
        width: 8px;
        height: 8px;
    }

    .domain-name {
        font-size: 0.75rem;
        min-width: 60px;
    }

    .domain-url {
        font-size: 0.7rem;
    }

    .deploy-status {
        gap: 0.6rem;
        padding: 1rem 0.8rem;
    }

    .status-badge {
        padding: 0.8rem 0.6rem;
    }

    .status-badge i {
        font-size: 1rem;
    }

    .status-badge span:first-of-type {
        font-size: 0.85rem;
    }

    .status-label,
    .status-percent {
        font-size: 0.7rem !important;
    }

    .saas-online-button {
        padding: 1rem 0.8rem;
    }

    .btn-saas-online {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-saas-online i {
        font-size: 1rem;
    }

    .deploy-highlight {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .deploy-highlight .importance-header {
        margin-bottom: 0.8rem;
    }

    .deploy-highlight .importance-header i {
        font-size: 1.2rem;
    }

    .deploy-highlight .importance-header h4 {
        font-size: 1rem;
    }

    .deploy-highlight p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ==========================================================================
   Estilos para la sección de Software Listos
   ========================================================================== */

.software-section {
    padding: 80px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.software-container {
    width: 100%;
}

/* Encabezado de la sección */
.software-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    color: #a78bfa;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 0.75rem;
}

.software-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.software-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Caja de aprendizaje */
.software-learning-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.learning-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.8rem;
    color: #22c55e;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.software-learning-box h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.software-learning-box p {
    font-size: 1.05rem;
    color: #a0a0a0;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Grid de módulos */
.software-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.software-module-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.software-module-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.software-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.dispatcher-badge {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.module-badge i {
    font-size: 0.9rem;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.module-description {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .software-section {
        padding: 60px 30px;
    }

    .software-header h2 {
        font-size: 2rem;
    }

    .software-learning-box h3 {
        font-size: 1.5rem;
    }

    .software-modules-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .software-section {
        padding: 60px 30px;
    }

    .software-header h2 {
        font-size: 1.8rem;
    }

    .software-description {
        font-size: 1rem;
    }

    .software-learning-box {
        padding: 30px 25px;
    }

    .software-learning-box h3 {
        font-size: 1.4rem;
    }

    .software-learning-box p {
        font-size: 1rem;
    }

    .module-title {
        font-size: 1.3rem;
    }
}

/* Responsive - Móvil (PATRÓN ESTANDARIZADO) */
@media (max-width: 576px) {
    .software-section {
        padding: 40px 10px;
    }

    .software-container {
        padding: 0 0.5rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .software-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .software-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .software-learning-box {
        padding: 20px 15px;
        margin: 30px 0;
    }

    .learning-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }

    .software-learning-box h3 {
        font-size: 1.2rem;
    }

    .software-learning-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .software-modules-grid {
        gap: 20px;
        margin: 30px 0;
    }

    .software-module-card {
        padding: 20px 15px;
    }

    .module-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    .module-title {
        font-size: 1.1rem;
    }

    .module-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ==========================================================================
   Estilos para la sección de Precios
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 2rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    gap: 0;
}

/* Tarjetas de precios */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Plan Básico */
.pricing-card.basic:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

/* Plan Profesional */
.pricing-card.professional:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

/* Plan Completo - Recomendado */
.pricing-card.complete {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
}

.pricing-card.complete:hover {
    border-color: #22c55e;
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.3);
    transform: translateY(-8px) scale(1.02);
}

/* Plan Personalizado */
.pricing-card.personalized:hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

/* Badge de Recomendado */
.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Títulos de planes */
.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fafafa;
}

.plan-description {
    font-size: 0.95rem;
    color: #a1a1aa;
    margin-bottom: 2rem;
    min-height: 40px;
}

/* Lista de características */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #d4d4d8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-list li i {
    color: #22c55e;
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 1rem;
}

/* Sección de precio */
.price-section {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.3rem;
}

.currency {
    font-size: 1.2rem;
    color: #a1a1aa;
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #fafafa;
}

.period {
    font-size: 0.9rem;
    color: #a1a1aa;
}

.price-section.custom {
    min-height: 72px;
    align-items: center;
}

.contact-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f59e0b;
}

/* Botones de precios */
.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    margin-bottom: 1rem;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-pricing.highlighted {
    background: linear-gradient(135deg, #22c55e, #10b981);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-pricing.highlighted:hover {
    background: linear-gradient(135deg, #10b981, #22c55e);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Garantía */
.guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: #a1a1aa;
    margin: 0;
}

/* Responsive - Pricing Section */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-header {
        margin-bottom: 50px;
    }

    .pricing-header h2 {
        font-size: 2.2rem;
    }

    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 30px;
    }

    .pricing-header {
        padding: 0;
        margin-bottom: 40px;
    }

    .pricing-header h2 {
        font-size: 1.8rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 1.8rem;
    }

    .pricing-card h3 {
        font-size: 1.6rem;
    }

    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 40px 10px;
    }

    .pricing-header {
        padding: 0 0.5rem;
        margin-bottom: 30px;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .pricing-header p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .pricing-container {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .recommended-badge {
        top: -10px;
        padding: 0.3rem 1rem;
        font-size: 0.7rem;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .plan-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        min-height: auto;
    }

    .features-list {
        margin-bottom: 1.5rem;
    }

    .features-list li {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        gap: 0.6rem;
    }

    .features-list li i {
        font-size: 0.9rem;
    }

    .price-section {
        margin-bottom: 1.2rem;
    }

    .currency {
        font-size: 1rem;
    }

    .amount {
        font-size: 2.2rem;
    }

    .period {
        font-size: 0.8rem;
    }

    .price-section.custom {
        min-height: 60px;
    }

    .contact-text {
        font-size: 1.5rem;
    }

    .btn-pricing {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .guarantee {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Estilos para la sección de Grupo de WhatsApp
   ========================================================================== */
.whatsapp-group-section {
    padding: 100px 0;
    position: relative;
}

.whatsapp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Columna izquierda - Información */
.whatsapp-info .module-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2a273a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #a1a1aa;
    border: 1px solid #37304f;
    margin-bottom: 1.5rem;
}

.whatsapp-info .module-header i {
    color: #25D366;
    font-size: 1.1rem;
}

.whatsapp-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.whatsapp-info h3 {
    font-size: 1.2rem;
    color: #fafafa;
    margin: 2rem 0 1rem;
}

.whatsapp-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.whatsapp-highlight {
    background-color: rgba(37, 211, 102, 0.1);
    border-left: 4px solid #25D366;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.whatsapp-highlight .importance-header i {
    color: #fbbf24;
}

/* Columna derecha - Chat Demo */
.whatsapp-demo {
    background-color: #1c192b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #37304f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.whatsapp-demo .demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.whatsapp-demo .demo-badge {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.whatsapp-demo h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #fafafa;
}

.whatsapp-demo p {
    color: #a1a1aa;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Chat container */
.whatsapp-chat {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #30363d;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #161b22;
    border-bottom: 1px solid #30363d;
}

.chat-avatar-group {
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar-group i {
    font-size: 1.5rem;
    color: white;
}

.chat-title-section h4 {
    font-size: 1rem;
    margin: 0;
    color: #fafafa;
}

.chat-subtitle {
    font-size: 0.75rem;
    color: #8b949e;
}

/* Mensajes del chat */
.chat-messages {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    background: rgba(37, 211, 102, 0.1);
    border-left: 3px solid #25D366;
    padding: 0.8rem 1rem;
    border-radius: 0 8px 8px 0;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.message-sender {
    font-weight: 600;
    color: #25D366;
    font-size: 0.9rem;
}

.message-time {
    font-size: 0.7rem;
    color: #8b949e;
}

.chat-message p {
    margin: 0;
    color: #d4d4d8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Input del chat */
.chat-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #161b22;
    border-top: 1px solid #30363d;
}

.chat-input span {
    color: #8b949e;
    font-size: 0.9rem;
}

.chat-input i {
    color: #25D366;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input i:hover {
    transform: scale(1.1);
    color: #1ea952;
}

/* Responsive - WhatsApp Group Section */
@media (max-width: 992px) {
    .whatsapp-group-section {
        padding: 3rem 1.5rem 4rem;
    }

    .whatsapp-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .whatsapp-demo {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-group-section {
        padding: 60px 30px;
    }

    .whatsapp-container {
        gap: 2rem;
    }

    .whatsapp-info h2 {
        font-size: 2rem;
    }

    .whatsapp-info h3 {
        font-size: 1.1rem;
    }

    .whatsapp-info p {
        font-size: 1rem;
    }

    .whatsapp-demo {
        padding: 1.5rem;
    }

    .whatsapp-demo h3 {
        font-size: 1.3rem;
    }

    .chat-messages {
        min-height: 250px;
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .whatsapp-group-section {
        padding: 40px 10px;
    }

    .whatsapp-container {
        padding: 0 0.5rem;
    }

    .whatsapp-info .module-header {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .whatsapp-info h2 {
        font-size: 1.6rem;
    }

    .whatsapp-info h3 {
        font-size: 1rem;
    }

    .whatsapp-info p {
        font-size: 0.9rem;
    }

    .whatsapp-info .learning-list li {
        font-size: 0.95rem;
    }

    .whatsapp-info .learning-list li i {
        font-size: 1rem;
        margin-right: 0.6rem;
        flex-shrink: 0;
    }

    .whatsapp-highlight {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .whatsapp-highlight .importance-header {
        margin-bottom: 0.8rem;
    }

    .whatsapp-highlight .importance-header i {
        font-size: 1.2rem;
    }

    .whatsapp-highlight .importance-header h4 {
        font-size: 1rem;
    }

    .whatsapp-highlight p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .whatsapp-demo {
        padding: 1rem;
    }

    .whatsapp-demo .demo-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .whatsapp-demo h3 {
        font-size: 1.1rem;
    }

    .whatsapp-demo p {
        font-size: 0.8rem;
    }

    .chat-header {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .chat-avatar-group {
        width: 40px;
        height: 40px;
    }

    .chat-avatar-group i {
        font-size: 1.3rem;
    }

    .chat-title-section h4 {
        font-size: 0.9rem;
    }

    .chat-subtitle {
        font-size: 0.7rem;
    }

    .chat-messages {
        padding: 1rem;
        min-height: 200px;
        max-height: 300px;
        gap: 0.8rem;
    }

    .chat-message {
        padding: 0.6rem 0.8rem;
    }

    .message-sender {
        font-size: 0.85rem;
    }

    .message-time {
        font-size: 0.65rem;
    }

    .chat-message p {
        font-size: 0.85rem;
    }

    .chat-input {
        padding: 0.8rem;
    }

    .chat-input span {
        font-size: 0.85rem;
    }

    .chat-input i {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Estilos para la sección de Preguntas Frecuentes (FAQ)
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    opacity: 0.3;
    animation: pulse-faq-icon 2s ease-in-out infinite;
}

.faq-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
}

@keyframes pulse-faq-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fafafa;
    line-height: 1.2;
}

.faq-header p {
    font-size: 1.1rem;
    color: #a1a1aa;
    line-height: 1.6;
}

/* Lista de preguntas */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Item individual de FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item.active {
    background: rgba(139, 92, 246, 0.05);
    border-color: #8b5cf6;
}

/* Botón de pregunta */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.question-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-icon i {
    color: white;
    font-size: 1.1rem;
}

.question-text {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fafafa;
    line-height: 1.4;
}

.toggle-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.toggle-icon i {
    color: #8b5cf6;
    font-size: 1.2rem;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

/* Respuesta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #d4d4d8;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 56px;
}

/* Responsive - FAQ Section */
@media (max-width: 992px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-header {
        margin-bottom: 50px;
    }

    .faq-header h2 {
        font-size: 2.2rem;
    }

    .faq-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 30px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .faq-icon i {
        font-size: 2rem;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-container {
        padding: 0;
    }

    .faq-list {
        gap: 1.2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .question-icon {
        width: 35px;
        height: 35px;
    }

    .question-icon i {
        font-size: 1rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
        padding-left: 50px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 40px 10px;
    }

    .faq-header {
        margin-bottom: 30px;
        padding: 0 0.5rem;
    }

    .faq-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }

    .faq-icon i {
        font-size: 1.8rem;
    }

    .faq-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .faq-header p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-list {
        gap: 1rem;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-question {
        padding: 1rem;
        gap: 0.8rem;
    }

    .question-icon {
        width: 32px;
        height: 32px;
    }

    .question-icon i {
        font-size: 0.9rem;
    }

    .question-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .toggle-icon {
        width: 25px;
        height: 25px;
    }

    .toggle-icon i {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.6;
        padding-left: 40px;
    }
}

/* Sección de contacto al final del FAQ */
.faq-contact {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.faq-contact-text {
    font-size: 1.1rem;
    color: #d4d4d8;
    margin-bottom: 1.5rem;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.faq-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.faq-contact-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .faq-contact {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .faq-contact-text {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .faq-contact-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .faq-contact-btn i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .faq-contact {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }

    .faq-contact-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .faq-contact-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .faq-contact-btn i {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   Estilos para el Footer
   ========================================================================== */
.main-footer {
    background: transparent;
    margin-top: 100px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 30px;
    background: transparent;
    position: relative;
}

/* Semáforos en la esquina superior izquierda */
.traffic-lights-footer {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
}

.traffic-light-footer {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.traffic-light-footer.red { 
    background-color: #ff5f57;
}

.traffic-light-footer.yellow { 
    background-color: #ffbd2e;
}

.traffic-light-footer.green { 
    background-color: #28c940;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 40px;
}

/* Columna del logo y descripción */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.logo-accent {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-description {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
}

/* Columna de enlaces legales */
.footer-links h4 {
    color: #fafafa;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul li a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

/* Columna de contacto */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a1a1aa;
    font-size: 0.95rem;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-item a {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.contact-item span {
    color: #a1a1aa;
    transition: all 0.3s ease;
    cursor: default;
}

.contact-item span:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Línea divisoria */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

/* Información inferior del footer */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    align-items: center;
}

.copyright {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.company-info {
    color: #71717a;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

.address {
    color: #71717a;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive - Footer */
@media (max-width: 992px) {
    .main-footer {
        margin-top: 80px;
    }

    .footer-content {
        padding: 30px 30px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-divider {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        margin-top: 60px;
    }

    .footer-content {
        padding: 25px 30px 20px;
    }

    .traffic-lights-footer {
        margin-bottom: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 30px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-logo {
        gap: 0.8rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon i {
        font-size: 1.3rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.95rem;
    }

    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .footer-links ul {
        gap: 0.7rem;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .footer-divider {
        margin-bottom: 18px;
    }

    .footer-bottom {
        gap: 0.25rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .company-info {
        font-size: 0.75rem;
    }

    .address {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .main-footer {
        margin-top: 40px;
    }

    .footer-content {
        padding: 20px 10px 15px;
    }

    .traffic-lights-footer {
        gap: 5px;
        margin-bottom: 20px;
        margin-left: 0.5rem;
    }

    .traffic-light-footer {
        width: 8px;
        height: 8px;
    }

    .footer-container {
        padding: 0 0.5rem;
        gap: 2rem;
        margin-bottom: 20px;
    }

    .footer-logo {
        gap: 0.7rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.2rem;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.03em;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .footer-links h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-links ul {
        gap: 0.6rem;
    }

    .footer-links ul li a {
        font-size: 0.85rem;
    }

    .footer-contact {
        gap: 1rem;
    }

    .contact-item {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .contact-item i {
        font-size: 1rem;
        width: 18px;
    }

    .footer-divider {
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 0 0.5rem;
        gap: 0.2rem;
    }

    .copyright {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .company-info {
        font-size: 0.7rem;
    }

    .address {
        font-size: 0.65rem;
        line-height: 1.6;
    }
}

