/*
  REDES SEGURAS - SOFT TECH MODERNISM
  Warm, approachable, family-focused design
  2026
*/

:root {
    /* Warm Color Palette */
    --teal-50: #F0FDFA;
    --teal-100: #CCFBF1;
    --teal-500: #14B8A6;
    --teal-600: #0D9488;
    --teal-700: #0F766E;

    --coral-400: #FB923C;
    --coral-500: #F97316;

    --purple-400: #A78BFA;
    --purple-500: #8B5CF6;

    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;

    --white: #FFFFFF;
    --black: #0A0A0A;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing & Sizing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows - Soft and elevated */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Soft Background */
.soft-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.bg-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(20, 184, 166, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(2deg); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

strong {
    font-weight: 600;
    color: var(--teal-700);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--teal-600);
    transition: transform var(--transition-base);
}

.logo:hover .logo-icon {
    transform: rotate(180deg);
}

.logo-text {
    color: var(--gray-900);
}

.logo-highlight {
    color: var(--teal-600);
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--gray-700);
    position: relative;
    transition: color var(--transition-fast);
    padding: 8px 0;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--teal-600);
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-600), var(--purple-500));
    transition: width var(--transition-base);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--teal-700);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--teal-600);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.highlight-line {
    display: block;
    background: linear-gradient(135deg, var(--teal-600), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--teal-600);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: white;
    padding: 14px 32px;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--teal-700);
    padding: 14px 32px;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--teal-600);
    background: var(--teal-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
}

.visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.visual-dots {
    display: flex;
    gap: 6px;
}

.visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.visual-dots span:nth-child(1) { background: #FF605C; }
.visual-dots span:nth-child(2) { background: #FFBD44; }
.visual-dots span:nth-child(3) { background: #00CA4E; }

.visual-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.network-illustration {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.network-center svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.3));
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--teal-500);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
    opacity: 0.5;
}

.pulse-ring-2 {
    animation-delay: 1.5s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.network-device {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: float-device 3s ease-in-out infinite;
}

.device-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.network-device span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    background: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.device-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.device-2 {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
}

.device-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 1s;
}

.device-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

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

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    animation: dash 15s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

.visual-footer {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.stat-mini {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
    width: var(--fill, 95%);
    border-radius: var(--radius-full);
    animation: fill 2s ease-out;
}

@keyframes fill {
    from { width: 0; }
}

.stat-mini span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 60px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 700px;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

/* Services Section */
.servicios {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--purple-500));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-featured {
    border: 2px solid var(--teal-500);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.02), rgba(139, 92, 246, 0.02));
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--teal-600);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.service-ideal {
    padding: 16px;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--teal-500);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.services-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.services-note svg {
    width: 24px;
    height: 24px;
    color: var(--teal-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.services-note p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Para Quién Section */
.para-quien {
    background: var(--gray-50);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.audience-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-300);
}

.audience-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.audience-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.audience-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.audience-needs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.audience-needs span {
    background: var(--teal-50);
    color: var(--teal-700);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--teal-200);
}

/* Cómo Trabajamos Section */
.como-trabajamos {
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number span {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    position: relative;
    z-index: 2;
}

.step-connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--teal-500), transparent);
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    padding-bottom: 20px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.step-tag {
    display: inline-block;
    background: var(--purple-50);
    color: var(--purple-700);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--purple-200);
}

.process-cta {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.process-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.process-cta p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* Contacto Section */
.contacto {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    color: white;
}

.contacto .section-label {
    color: var(--teal-100);
}

.contacto .section-title {
    color: white;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contacto-description {
    color: var(--teal-50);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contacto-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--teal-600);
}

.method-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-100);
    margin-bottom: 4px;
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.method-note {
    font-size: 0.85rem;
    color: var(--teal-100);
    margin-top: 4px;
}

.contacto-location {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contacto-location svg {
    width: 24px;
    height: 24px;
    color: var(--teal-100);
    flex-shrink: 0;
    margin-top: 2px;
}

.contacto-location strong {
    color: white;
    display: block;
    margin-bottom: 4px;
}

.contacto-location p {
    color: var(--teal-100);
    font-size: 0.9rem;
}

/* Contact Form */
.contacto-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-2xl);
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: white;
    color: var(--gray-900);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    color: var(--teal-400);
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-tech {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-tech span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
}

.tech-badges {
    display: flex;
    gap: 10px;
}

.tech-badge {
    background: var(--gray-800);
    color: var(--teal-400);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--gray-700);
}

.footer h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--teal-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--teal-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px;
        box-shadow: var(--shadow-2xl);
        transition: left var(--transition-base);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-scroll {
        margin-top: 40px;
    }

    .hero-scroll span {
        font-size: 0.8rem;
    }

    section {
        padding: 60px 0;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .step-number span {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .visual-card {
        padding: 16px;
    }

    .network-center svg {
        width: 80px;
        height: 80px;
    }

    .device-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Ocultar hero-scroll en móviles muy pequeños para evitar superposición */
    .hero-scroll {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.audience-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.audience-card:nth-child(1) { animation-delay: 0.1s; }
.audience-card:nth-child(2) { animation-delay: 0.2s; }
.audience-card:nth-child(3) { animation-delay: 0.3s; }
.audience-card:nth-child(4) { animation-delay: 0.4s; }

/* Print Styles */
@media print {
    .soft-bg,
    .navbar,
    .hero-scroll,
    .hamburger {
        display: none;
    }
}
