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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background: linear-gradient(180deg, #020617 0%, #0c0a1e 50%, #1a0b2e 100%);
    background-attachment: fixed;
    scroll-behavior: smooth;
    font-weight: 400;
}

/* Header */
.header {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Botón hamburguesa (mobile) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at center, #1a0b2e 0%, #0c0a1e 30%, #050211 70%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 200px 3rem 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.3" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(3rem, 6vw, 6rem);
    max-width: 1400px;
    width: 100%;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    min-width: clamp(280px, 34vw, 520px);
}



.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6rem;
    text-align: left;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.8rem;
    max-width: 820px;
    text-align: left;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 25%, #8b5cf6 50%, #06b6d4 75%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.75;
    font-weight: 300;
    max-width: 720px;
    color: #cbd5e1;
    line-height: 1.8;
}

.hero-support {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.8rem;
    width: 100%;
    max-width: 900px;
}

.hero-pills {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
}

.hero-pill {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
}

.hero-pill:nth-child(2) {
    border-color: rgba(6, 182, 212, 0.35);
}

.hero-pill:nth-child(3) {
    border-color: rgba(139, 92, 246, 0.35);
}

.hero-pill:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-pill:first-child {
    margin-left: 0;
}

.cta-button {
    background: linear-gradient(135deg, #312e81, #3b82f6, #06b6d4);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

@keyframes serviceFlow {
    0% { transform: scaleY(0); opacity: 0.2; transform-origin: top; }
    50% { opacity: 0.6; }
    100% { transform: scaleY(1); opacity: 0.2; transform-origin: top; }
}

/* Insight Section */
.insight {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95), rgba(12, 10, 30, 0.75));
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    border-bottom: 1px solid rgba(6, 182, 212, 0.15);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.insight-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.6));
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.45);
}

.insight-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    margin-bottom: 1.5rem;
}

.insight-card h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #e0f2fe;
}

.insight-card p {
    color: #cbd5f5;
    font-size: 1.1rem;
    max-width: 900px;
    line-height: 1.7;
    font-weight: 300;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.insight-item {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 0.6));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(6, 182, 212, 0.18);
}

.insight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #7dd3fc;
}

.insight-item p {
    color: #94a3b8;
    line-height: 1.6;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.services-layout {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 300px) 1fr;
    gap: 3rem;
    align-items: start;
}

.services-intro {
    padding-right: 0.5rem;
}

.services-intro p {
    color: #cbd5f5;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

.services-list {
    position: relative;
    padding-left: 1.5rem;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 0.4rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.35), rgba(6, 182, 212, 0.1));
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 1.8rem 0;
    position: relative;
}

.service-item:first-child {
    padding-top: 0;
}

.service-item:last-child {
    padding-bottom: 0;
}

.service-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    width: 0.8rem;
}

.service-icon {
    font-size: 1.8rem;
    line-height: 1;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), rgba(37, 99, 235, 0.05));
    border-radius: 50%;
    padding: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.4), transparent);
    transform-origin: top;
    animation: serviceFlow 6s linear infinite;
}

.service-item:last-child .service-line {
    display: none;
}

.service-detail {
    flex: 1;
}

.service-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail p {
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 300;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    margin-bottom: 1rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 3rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.08), transparent 55%);
}

.solutions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.solutions-heading h2 {
    font-size: 2.4rem;
    color: #e0f2fe;
    margin-bottom: 1rem;
}

.solutions-heading p {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 860px;
}

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

.solutions-item {
    border: 1px solid rgba(94, 234, 212, 0.25);
    border-radius: 20px;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.35);
}

.solutions-item h3 {
    font-size: 1.4rem;
    color: #5eead4;
    margin-bottom: 0.8rem;
}

.solutions-item p {
    color: #cbd5f5;
    margin-bottom: 1rem;
    font-weight: 300;
}

.solutions-item ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solutions-item li {
    color: #8ea7d1;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
}

.solutions-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #38bdf8;
}

/* Impact Section */
.impact {
    padding: 6rem 3rem;
}

.impact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.impact-intro h2 {
    font-size: 2.6rem;
    color: #f0f9ff;
    margin-bottom: 1rem;
}

.impact-intro p {
    color: #a5b4fc;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.impact-card {
    border: 1px solid rgba(14, 165, 233, 0.35);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    background: rgba(15, 23, 42, 0.65);
    box-shadow: 0 20px 35px rgba(8, 47, 73, 0.45);
}

.impact-value {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
    color: #38bdf8;
}

.impact-card p {
    color: #cbd5f5;
    font-weight: 300;
}

/* FAQ Section */
.faq {
    padding: 6rem 3rem;
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
    background: rgba(2, 6, 23, 0.75);
}

.faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.faq-intro h2 {
    font-size: 2.3rem;
    color: #e0f2fe;
    margin-bottom: 0.5rem;
}

.faq-intro p {
    color: #94a3b8;
    max-width: 720px;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.7);
    padding: 1.2rem 1.5rem;
    color: #e2e8f0;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: #38bdf8;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 0.8rem;
    color: #a5b4fc;
    font-weight: 300;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Team Section */
.team {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.95) 0%, rgba(12, 10, 30, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 8rem 3rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.team-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.team-description {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-weight: 300;
    line-height: 1.8;
}

.team-roles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.role {
    background: linear-gradient(145deg, rgba(2, 6, 23, 0.8), rgba(12, 10, 30, 0.6));
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    min-width: 220px;
    transition: all 0.3s ease;
}

.role:nth-child(1) {
    border-color: rgba(59, 130, 246, 0.2);
}

.role:nth-child(2) {
    border-color: rgba(139, 92, 246, 0.2);
}

.role:nth-child(3) {
    border-color: rgba(6, 182, 212, 0.2);
}

.role:nth-child(4) {
    border-color: rgba(244, 63, 94, 0.2);
}

.role:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    background: linear-gradient(145deg, rgba(12, 10, 30, 0.9), rgba(26, 11, 46, 0.8));
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.role:nth-child(1) h4 {
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.role:nth-child(2) h4 {
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.role:nth-child(3) h4 {
    color: #06b6d4;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.role:nth-child(4) h4 {
    color: #f43f5e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.role p {
    color: #94a3b8;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #1a0b2e, #0c0a1e, #020617);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 70%),
                radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.05) 0%, transparent 80%);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(10px);
    color: #f1f5f9;
    transition: all 0.3s ease;
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
    background: rgba(12, 10, 30, 0.8);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

.contact-form button {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
    color: white;
    border: none;
    padding: 1.3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #1d4ed8, #0891b2);
}

.contact-info {
    margin-top: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #cbd5f5;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #94a3b8;
}

.contact-info a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: linear-gradient(145deg, rgba(2, 6, 23, 0.95), rgba(12, 10, 30, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    color: #f1f5f9;
    font-weight: 500;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    background: linear-gradient(45deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toast-message {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(148, 163, 184, 0.1);
    color: #f1f5f9;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #020617 100%);
    color: #64748b;
    text-align: center;
    padding: 3rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav {
        padding: 0 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(59, 130, 246, 0.3);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.8rem;
    }

    .hero {
        padding: 160px 1.8rem 110px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 4rem;
    }

    .hero-visual {
        order: -1;
        width: 100%;
    }

    .hero-content {
        gap: 4rem;
        align-items: center;
        text-align: center;
    }

    .hero-headline {
        gap: 3rem;
        align-items: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        padding: 0;
    }

    .hero-pills {
        gap: 0.8rem;
        justify-content: center;
    }

    .hero-pill {
        padding: 0.5rem 1.1rem;
        font-size: 0.85rem;
    }

    .hero-support {
        gap: 2.5rem;
        align-items: center;
    }

    .insight {
        padding: 4.5rem 1.5rem;
    }

    .insight-card {
        padding: 2.5rem;
    }

    .services {
        padding: 5rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-intro p {
        text-align: center;
    }

    .services-list {
        padding-left: 0.8rem;
    }

    .services-list::before {
        left: 0;
    }

    .solutions,
    .impact,
    .faq {
        padding: 4rem 1.5rem;
    }

    .solutions-heading h2,
    .impact-intro h2,
    .faq-intro h2 {
        font-size: 2rem;
    }

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

    .impact-card {
        padding: 2rem 1.2rem;
    }

    .team {
        padding: 5rem 1.5rem;
    }

    .team-roles {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact {
        padding: 5rem 1.5rem;
    }

    .contact-form {
        margin: 2rem auto 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 1.2rem 90px;
    }

    .hero-inner {
        gap: 3.2rem;
    }

    .hero-content {
        gap: 3.2rem;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-pill {
        width: 100%;
        text-align: center;
    }

    .hero-support {
        gap: 2rem;
    }

    .insight {
        padding: 4rem 1.2rem;
    }

    .insight-card {
        padding: 2.2rem 1.5rem;
    }

    .solutions,
    .impact,
    .faq {
        padding: 3.5rem 1.2rem;
    }

    .solutions-item,
    .impact-card,
    .faq-item {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .services-list::before {
        display: none;
    }

    .service-item {
        padding: 1.4rem 0;
        gap: 1rem;
    }

    .service-marker {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
        width: auto;
    }

    .service-line {
        display: none;
    }

    .role {
        padding: 2rem 1.5rem;
        min-width: 280px;
    }

    .toast {
        right: 15px;
        left: 15px;
        max-width: none;
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }
}

/* Animación Minimalista */
.minimal-animation {
    position: relative;
    width: clamp(400px, 45vw, 680px);
    height: clamp(400px, 45vw, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.network-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Líneas de red minimalistas */
.net-line {
    stroke: rgba(59, 130, 246, 0.2);
    stroke-width: 1;
    fill: none;
    stroke-linecap: round;
}

.nl-1 { animation: lineFade 3s ease-in-out infinite; }
.nl-2 { animation: lineFade 3s ease-in-out infinite 0.4s; }
.nl-3 { animation: lineFade 3s ease-in-out infinite 0.8s; }
.nl-4 { animation: lineFade 3s ease-in-out infinite 1.2s; }
.nl-5 { animation: lineFade 3s ease-in-out infinite 1.6s; }
.nl-6 { animation: lineFade 3s ease-in-out infinite 2s; }
.nl-7 { animation: lineFade 3s ease-in-out infinite 2.4s; }

/* Nodos minimalistas */
.net-node {
    fill: #3b82f6;
    stroke: rgba(59, 130, 246, 0.3);
    stroke-width: 2;
    opacity: 0.8;
}

.node-center {
    animation: centerPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
}

.node-1 { animation: nodePulseMinimal 2s ease-in-out infinite; }
.node-2 { animation: nodePulseMinimal 2s ease-in-out infinite 0.3s; }
.node-3 { animation: nodePulseMinimal 2s ease-in-out infinite 0.6s; }
.node-4 { animation: nodePulseMinimal 2s ease-in-out infinite 0.9s; }
.node-5 { animation: nodePulseMinimal 2s ease-in-out infinite 1.2s; }
.node-6 { animation: nodePulseMinimal 2s ease-in-out infinite 1.5s; }
.node-7 { animation: nodePulseMinimal 2s ease-in-out infinite 1.8s; }

/* Ondas de expansión */
.ripple {
    fill: none;
    stroke: rgba(59, 130, 246, 0.3);
    stroke-width: 1;
    opacity: 0;
}

.r1 { animation: rippleExpand 4s ease-out infinite; }
.r2 { animation: rippleExpand 4s ease-out infinite 1.3s; }
.r3 { animation: rippleExpand 4s ease-out infinite 2.6s; }

/* Gradiente de fondo sutil */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Animaciones Minimalistas */
@keyframes lineFade {
    0%, 100% {
        opacity: 0.15;
        stroke-width: 1;
    }
    50% {
        opacity: 0.4;
        stroke-width: 1.5;
    }
}

@keyframes nodePulseMinimal {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes centerPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes rippleExpand {
    0% {
        r: 50;
        opacity: 0.5;
        stroke-width: 2;
    }
    50% {
        stroke-width: 1;
    }
    100% {
        r: 200;
        opacity: 0;
        stroke-width: 0.5;
    }
}

/* Responsive Minimalista */
@media (max-width: 768px) {
    .minimal-animation {
        width: 100%;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .minimal-animation {
        height: 400px;
    }
    
    .net-node {
        r: 4;
    }
    
    .node-center {
        r: 6;
    }
}

