/* ═══════════════════════════════════════════════════════════
   DELANOYS TECNOLOGÍAS — Landing Page Styles
   Estilos específicos de la página de inicio
   Framework Web DT v1.0
   ═══════════════════════════════════════════════════════════ */

/* Hero Section con Video */
.hero-landing {
    background: linear-gradient(135deg, var(--dt-color-primary-900) 0%, var(--dt-color-primary-600) 100%);
    color: white;
    padding: var(--dt-space-16) var(--dt-space-6);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--dt-space-12);
    align-items: center;
    max-width: var(--dt-container-xl);
    margin: 0 auto;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    border-radius: var(--dt-radius-2xl);
    box-shadow: var(--dt-shadow-2xl);
}

.hero-content h1 {
    font-size: var(--dt-text-5xl);
    color: white;
    margin-bottom: var(--dt-space-4);
}

.hero-content .subtitle {
    font-size: var(--dt-text-2xl);
    margin-bottom: var(--dt-space-6);
    opacity: 0.95;
}

.hero-content .description {
    font-size: var(--dt-text-lg);
    margin-bottom: var(--dt-space-8);
    opacity: 0.9;
    line-height: var(--dt-leading-relaxed);
}

.hero-actions {
    display: flex;
    gap: var(--dt-space-4);
    flex-wrap: wrap;
}

.text-acento {
    color: var(--dt-color-primary-200);
}

/* Widget Bíblico */
.verse-widget {
    background: var(--dt-color-bg-elevated);
    border-left: 4px solid var(--dt-color-primary-500);
    border-radius: var(--dt-radius-lg);
    padding: var(--dt-space-6);
    margin: var(--dt-space-8) auto;
    max-width: 800px;
    box-shadow: var(--dt-shadow-md);
}

.verse-widget blockquote {
    font-style: italic;
    font-size: var(--dt-text-lg);
    color: var(--dt-color-text);
    margin: 0;
    line-height: var(--dt-leading-relaxed);
}

.verse-widget cite {
    display: block;
    margin-top: var(--dt-space-3);
    color: var(--dt-color-primary-600);
    font-weight: var(--dt-font-semibold);
}

.verse-controls {
    display: flex;
    gap: var(--dt-space-2);
    margin-top: var(--dt-space-4);
    flex-wrap: wrap;
}

.verse-controls button {
    background: var(--dt-color-primary-100);
    color: var(--dt-color-primary-700);
    border: none;
    padding: var(--dt-space-2) var(--dt-space-3);
    border-radius: var(--dt-radius-md);
    cursor: pointer;
    font-size: var(--dt-text-sm);
    transition: all var(--dt-transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--dt-space-2);
}

.verse-controls button:hover {
    background: var(--dt-color-primary-200);
    transform: translateY(-1px);
}

/* Stats Section */
.stats-section {
    background: var(--dt-color-bg-alt);
    padding: var(--dt-space-12) var(--dt-space-6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--dt-space-8);
    max-width: var(--dt-container-xl);
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: var(--dt-text-5xl);
    color: var(--dt-color-primary-600);
    margin-bottom: var(--dt-space-2);
}

.stat-item p {
    color: var(--dt-color-text-muted);
    font-size: var(--dt-text-lg);
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--dt-space-6);
    max-width: var(--dt-container-xl);
    margin: 0 auto;
}

.service-card {
    background: var(--dt-color-bg-elevated);
    border: 1px solid var(--dt-color-border);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-8);
    transition: all var(--dt-transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dt-shadow-xl);
    border-color: var(--dt-color-primary-500);
}

.service-icon {
    font-size: 3rem;
    color: var(--dt-color-primary-600);
    margin-bottom: var(--dt-space-4);
}

.service-card h3 {
    color: var(--dt-color-primary-600);
    margin-bottom: var(--dt-space-3);
}

/* Projects Section */
.projects-section {
    background: var(--dt-color-bg-alt);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--dt-space-6);
    max-width: var(--dt-container-xl);
    margin: 0 auto;
}

.project-card {
    background: var(--dt-color-bg-elevated);
    border-radius: var(--dt-radius-xl);
    overflow: hidden;
    box-shadow: var(--dt-shadow-md);
    transition: all var(--dt-transition-normal);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dt-shadow-xl);
}

.project-header {
    background: linear-gradient(135deg, var(--dt-color-primary-600), var(--dt-color-primary-800));
    color: white;
    padding: var(--dt-space-6);
}

.project-header h3 {
    color: white;
    margin: 0;
}

.project-body {
    padding: var(--dt-space-6);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--dt-space-2);
    margin-top: var(--dt-space-4);
}

.tech-badge {
    background: var(--dt-color-primary-100);
    color: var(--dt-color-primary-700);
    padding: var(--dt-space-1) var(--dt-space-3);
    border-radius: var(--dt-radius-full);
    font-size: var(--dt-text-xs);
    font-weight: var(--dt-font-semibold);
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--dt-space-6);
    max-width: var(--dt-container-xl);
    margin: 0 auto;
}

.education-card {
    background: var(--dt-color-bg-elevated);
    border: 1px solid var(--dt-color-border);
    border-radius: var(--dt-radius-xl);
    padding: var(--dt-space-6);
    transition: all var(--dt-transition-normal);
}

.education-card:hover {
    box-shadow: var(--dt-shadow-lg);
    border-color: var(--dt-color-primary-500);
}

.education-card h4 {
    color: var(--dt-color-primary-600);
    margin-bottom: var(--dt-space-3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dt-color-primary-600), var(--dt-color-primary-800));
    color: white;
    text-align: center;
    padding: var(--dt-space-16) var(--dt-space-6);
}

.cta-section h2 {
    color: white;
    font-size: var(--dt-text-4xl);
    margin-bottom: var(--dt-space-4);
}

.cta-section p {
    font-size: var(--dt-text-xl);
    margin-bottom: var(--dt-space-8);
    opacity: 0.95;
}

/* Footer */
.landing-footer {
    background: var(--dt-color-text);
    color: var(--dt-color-bg-alt);
    padding: var(--dt-space-12) var(--dt-space-6);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--dt-space-8);
    max-width: var(--dt-container-xl);
    margin: 0 auto;
}

.footer-section h3 {
    color: white;
    margin-bottom: var(--dt-space-4);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: var(--dt-space-2);
}

.footer-section a {
    color: var(--dt-color-bg-alt);
    text-decoration: none;
    transition: color var(--dt-transition-fast);
}

.footer-section a:hover {
    color: var(--dt-color-primary-300);
}

.footer-bottom {
    max-width: var(--dt-container-xl);
    margin: var(--dt-space-8) auto 0;
    padding-top: var(--dt-space-8);
    border-top: 1px solid var(--dt-color-surface);
    text-align: center;
    color: var(--dt-color-text-subtle);
}

.footer-verse {
    max-width: 800px;
    margin: var(--dt-space-8) auto;
    padding: var(--dt-space-6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--dt-radius-lg);
}

.footer-verse blockquote {
    font-style: italic;
    font-size: var(--dt-text-lg);
    margin: 0;
    color: var(--dt-color-bg-alt);
    line-height: var(--dt-leading-relaxed);
}

.footer-verse cite {
    display: block;
    margin-top: var(--dt-space-3);
    color: var(--dt-color-primary-300);
}

/* AI Assistant Button */
.ai-assistant-btn {
    position: fixed;
    bottom: var(--dt-space-6);
    right: var(--dt-space-6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dt-color-primary-600);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--dt-shadow-lg);
    transition: all var(--dt-transition-normal);
    z-index: var(--dt-z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--dt-text-2xl);
}

.ai-assistant-btn:hover {
    background: var(--dt-color-primary-700);
    transform: scale(1.1);
}

/* Utilities */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: white;
}

.btn-white {
    background: white;
    color: var(--dt-color-primary-700);
}

.btn-white:hover {
    background: var(--dt-color-bg-alt);
    color: var(--dt-color-primary-800);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--dt-color-primary-700);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-video {
        order: -1;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: var(--dt-text-4xl);
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: var(--dt-text-3xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--dt-space-4);
    }
    
    .stat-item h3 {
        font-size: var(--dt-text-4xl);
    }
    
    .cta-section h2 {
        font-size: var(--dt-text-3xl);
    }
    
    .ai-assistant-btn {
        width: 50px;
        height: 50px;
        font-size: var(--dt-text-xl);
    }
}
