﻿/* ============================================
   ESTILOS GLOBALES - KaizenCoreti WEB
   Paleta: Azul oscuro, Blanco, Gris, Cian/Azul eléctrico
   ============================================ */

:root {
    --primary-dark: #0a1e3d;
    --primary-blue: #0066cc;
    --accent-cyan: #00bcd4;
    --accent-light: #00e5ff;
    --neutral-light: #f5f7fa;
    --neutral-gray: #64748b;
    --text-dark: #1a2332;
    --text-light: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 10px 30px rgba(10, 30, 61, 0.15);
    --shadow-lg: 0 20px 50px rgba(10, 30, 61, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

/* ============================================
   NAVEGACIÓN
   ============================================ */

header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2a52 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-slogan {
    font-size: 0.62rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-cyan);
}

.btn-header:hover {
    background: transparent;
    color: var(--accent-cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a52 100%);
    color: var(--text-light);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 188, 212, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: white;
}

.hero h1 .accent {
    color: var(--accent-cyan);
    display: block;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #b8c5d6;
    line-height: 1.8;
}

.hero-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-checklist li {
    color: #b8c5d6;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-checklist li i {
    color: #22c55e;
    font-size: 0.85rem;
}

.hero-response-time {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #8a9bb0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-response-time i {
    color: #22c55e;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    background: #00a3c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 188, 212, 0.5);
}

.btn-primary i {
    font-size: 1.1rem;
}

.btn-secondary {
    background: #25D366;
    border: 2px solid #25D366;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
}

.btn-secondary i {
    font-size: 1.1rem;
}

/* ============================================
   TARJETAS FLOTANTES HERO
   ============================================ */

.hero-cards {
    position: relative;
    height: 450px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    width: 280px;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    width: 280px;
    top: 140px;
    right: -50px;
    animation-delay: 0.5s;
}

.floating-card.card-3 {
    width: 280px;
    top: 280px;
    right: 80px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-cyan);
}

.card-header i {
    font-size: 1.2rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-bar {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.status-bar.short {
    width: 70%;
    opacity: 0.7;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--accent-cyan);
}

.metric .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.metric .label {
    font-size: 0.8rem;
    color: #a0b8d1;
}

.metric-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.metric-label {
    font-size: 0.85rem;
    color: #a0b8d1;
}

.metric-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-cyan);
}
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.5);
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */

section {
    padding: 80px 2rem;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

section h2 .accent {
    color: var(--accent-cyan);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   SERVICIOS
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, #0a1e3d 0%, #0f2a52 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(0,229,255,0.15);
    border-bottom: 1px solid rgba(0,229,255,0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
}

#servicios {
    background: linear-gradient(180deg, var(--neutral-light) 0%, var(--text-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.15) 0%, rgba(0, 102, 204, 0.15) 100%);
    border-radius: 50%;
    color: var(--accent-cyan);
    font-size: 2.2rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    text-align: center;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.service-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link:hover {
    color: var(--primary-blue);
    gap: 0.75rem;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ============================================
   SECCIÓN NOSOTROS
   ============================================ */

#nosotros {
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    margin-top: 1.5rem;
}

.about-features li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-dark);
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.3rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 50px rgba(10, 30, 61, 0.3);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
}

.about-dashboard {
    position: relative;
    z-index: 1;
    width: 88%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 12px;
    padding: 1.25rem;
    backdrop-filter: blur(6px);
}

.ab-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.7);
}

.ab-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.ab-stats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ab-stat {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ab-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ab-stat-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.ab-stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.ab-bar-section { margin-bottom: 1rem; }

.ab-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
    margin-top: 8px;
}

.ab-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.ab-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease;
}

.ab-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.75rem;
}

/* ============================================
   TECNOLOGÍAS
   ============================================ */

#tecnologias {
    background: linear-gradient(180deg, var(--text-light) 0%, var(--neutral-light) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: var(--text-light);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.2);
    transform: translateY(-6px);
}

.tech-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.tech-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.tech-card:hover h4 {
    color: var(--accent-cyan);
}

/* ============================================
   RESPONSIVE TECNOLOGÍAS
   ============================================ */

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

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tech-card {
        padding: 1.5rem 1rem;
    }
}

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

/* ============================================
   TESTIMONIOS
   ============================================ */

#testimonios {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 2rem;
}

#testimonios h2 {
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card.animating {
    animation: fadeSlideIn 0.45s ease forwards;
}

.carousel-container {
    position: relative;
    min-height: 480px;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: var(--accent-cyan);
}

/* Navegación del carrusel */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary-dark);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-nav-btn:hover:not(:disabled) {
    background: var(--accent-cyan);
    transform: scale(1.1);
}

.carousel-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-nav-btn i {
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE TESTIMONIOS
   ============================================ */

@media (max-width: 768px) {
    #testimonios {
        padding: 80px 1rem;
    }

    .carousel-container {
        min-height: 450px;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .carousel-nav {
        gap: 1rem;
    }
}

/* ============================================
   EMPRESAS ATENDIDAS
   ============================================ */

#empresas {
    background: var(--neutral-light);
}

.empresas-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.empresa-logo {
    width: 200px;
    flex-shrink: 0;
}

.empresa-logo {
    height: 80px;
    background: var(--text-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: var(--neutral-gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.empresa-logo:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.2);
}

/* ============================================
   CONTACTO
   ============================================ */

#contacto {
    background: var(--text-light);
}

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--neutral-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-cyan);
}

.contact-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--neutral-gray);
}

.contact-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-blue);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   COTIZACIÓN
   ============================================ */

.cotizacion-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cotizacion-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cotizacion-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-cyan);
}

.cotizacion-card--featured {
    background: rgba(0,188,212,0.1);
    border-color: var(--accent-cyan);
    transform: scale(1.04);
}

.cotizacion-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.cotizacion-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.cotizacion-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,229,255,0.15);
    color: var(--accent-cyan);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cotizacion-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cotizacion-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-cotizar {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cotizar:hover,
.btn-cotizar--featured {
    background: var(--accent-cyan);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .cotizacion-cards {
        grid-template-columns: 1fr;
    }
    .cotizacion-card--featured {
        transform: scale(1);
    }
}

/* ============================================
   SECTORES
   ============================================ */

.empresa-logo i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.empresa-logo span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2a52 100%);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #b8c5d6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 60px 1rem;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .hero-cards {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .floating-card {
        position: static;
        animation: none;
    }

    section {
        padding: 50px 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        font-size: 3rem;
    }

    .contacto-container {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 40px 1rem;
    }

    .hero-wrapper {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    nav {
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.9rem;
    }
}
