:root {
    /* Colores principales */
    --primary-blue: #219BEF;
    --primary-dark: #000000;
    --primary-black: #0A0A0A;
    --secondary-dark: #1A1A1A;
    --accent-blue: #176BAA;
    --accent-blue-light: #61B7F1;
    --accent-green: #10B981;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #219BEF 0%, #176BAA 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --gradient-dark-blue: linear-gradient(135deg, #0A0A0A 0%, #176BAA 100%);
    --gradient-blue-black: linear-gradient(135deg, #219BEF 0%, #000000 100%);
    
    /* Tipografía */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 10px 40px -5px rgba(33, 155, 239, 0.4);
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: #FFFFFF;
    background-color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(33, 155, 239, 0.2);
    transition: var(--transition-base);
}

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

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-base);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

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

.login-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.submenu-login-btn,
.submenu-registration-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.submenu-login-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.submenu-login-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.submenu-registration-btn {
    background: var(--gradient-primary);
    color: white;
}

.submenu-registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION - Versión React replicada
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.2) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

.gradient-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(30, 58, 138, 0.3) 0%, transparent 50%, transparent 100%);
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
}

.blob-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background-color: rgba(59, 130, 246, 0.3);
}

.blob-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background-color: rgba(37, 99, 235, 0.2);
    animation-delay: 1s;
}

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

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    margin-bottom: 32px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: #60A5FA;
}

.badge-text {
    font-size: 0.875rem;
    color: #93C5FD;
    font-weight: 500;
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-white {
    color: #FFFFFF;
}

.title-gradient {
    background: linear-gradient(to right, #60A5FA 0%, #3B82F6 50%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #9CA3AF;
    max-width: 48rem;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary-hero,
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-hero {
    background: linear-gradient(to right, #3B82F6 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary-hero:hover {
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

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

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-secondary-hero {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary-hero:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #60A5FA 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #000000;
    border-top: 1px solid rgba(33, 155, 239, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-header p {
    font-size: 1.25rem;
    color: #B0B0B0;
}

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

.service-card {
    background: #1A1A1A;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(33, 155, 239, 0.3);
    transition: var(--transition-base);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary-blue);
    background: #212121;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.service-card p {
    color: #B0B0B0;
    line-height: 1.7;
}

/* Projects Section */
.projects-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #0A0A0A;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 6rem auto;
    padding: 3rem;
    background: #1A1A1A;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(33, 155, 239, 0.2);
}

.project-showcase:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.project-showcase:nth-child(odd) .project-content {
    order: 1;
}

.project-showcase:nth-child(odd) .project-media {
    order: 2;
}

.project-tag {
    display: inline-block;
    background: linear-gradient(135deg, #EBF8FF 0%, #E0E7FF 100%);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.project-content h3 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.project-description {
    font-size: 1.1rem;
    color: #B0B0B0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-weight: 500;
}

.feature-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.project-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(33, 155, 239, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(33, 155, 239, 0.3);
}

.result-stat h4 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.result-stat p {
    color: #B0B0B0;
    font-weight: 500;
}

.btn-project {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-project:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.project-media {
    position: relative;
}

.project-video {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.project-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.erp-mockup img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Technology Stack */
.tech-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--primary-dark);
    color: white;
}

.tech-section .section-header h2,
.tech-section .section-header p {
    color: white;
}

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

.tech-category h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-items span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.tech-items span:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #000000;
    border-top: 1px solid rgba(33, 155, 239, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 16px;
    border: 1px solid rgba(33, 155, 239, 0.3);
    transition: var(--transition-base);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary-blue);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.member-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #B0B0B0;
    font-size: 0.95rem;
}

.team-collaborators {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(33, 155, 239, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(33, 155, 239, 0.3);
}

.team-collaborators p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.collaborator-names {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.collaborator-names span {
    color: #B0B0B0;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #0A0A0A;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #1A1A1A;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B0B0B0;
    font-style: italic;
}

.testimonial-author h4 {
    font-weight: 700;
    color: #FFFFFF;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--gradient-blue-black);
    text-align: center;
    color: white;
    border-top: 1px solid rgba(33, 155, 239, 0.3);
    border-bottom: 1px solid rgba(33, 155, 239, 0.3);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary-large {
    padding: 1.25rem 3rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #000000;
    border-top: 1px solid rgba(33, 155, 239, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #1A1A1A;
    border-radius: 16px;
    transition: var(--transition-base);
    border: 1px solid rgba(33, 155, 239, 0.3);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary-blue);
}

.contact-item svg {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-label {
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

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

.footer-column h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column p {
    color: #94A3B8;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--primary-blue);
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94A3B8;
}

.footer-social a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer-social a:hover {
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 968px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .blob-1, .blob-2 {
        width: 200px;
        height: 200px;
    }
    
    .project-showcase {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .project-showcase:nth-child(odd) .project-content,
    .project-showcase:nth-child(odd) .project-media {
        order: initial;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
    
    .project-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* About Section */
.about-section {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(to bottom, #000000 0%, #0f172a 50%, #000000 100%);
    overflow: hidden;
}

.about-background {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSg1OSwxMzAsMjQ2LDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: var(--font-display);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-title-gradient {
    background: linear-gradient(to right, #60A5FA 0%, #3B82F6 50%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

.about-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #93C5FD;
    line-height: 1.8;
    font-weight: 300;
}

.about-description .highlight {
    font-weight: 600;
    color: #60A5FA;
}

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

.about-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(30, 58, 138, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
}

.about-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-card-icon .icon {
    width: 32px;
    height: 32px;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.about-card p {
    color: #9CA3AF;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .about-title {
        font-size: 3rem;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 1.125rem;
    }
}

/* ============================================
   PROJECTS SECTION - Nueva versión mejorada
   ============================================ */

.projects-section-new {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(to bottom, #000000 0%, #0f172a 50%, #000000 100%);
    overflow: hidden;
}

.projects-background {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSg1OSwxMzAsMjQ2LDAuMDUpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.projects-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

/* ============================================
   PROJECT IMAGE GALLERY - VERSIÓN SIN BORDES DESPERDICIADOS
   ============================================ */

/* Project Image Container */
.project-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden; /* CAMBIADO: Sin scroll para eliminar espacios */
    display: block;
    background: #000000; /* Color sólido de fondo */
    border-radius: 24px 24px 0 0;
}

/* Project Image Gallery - Grid 2x2 SIN espacios */
.project-image-gallery {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0; /* CERO espacios */
    padding: 0; /* CERO padding */
    margin: 0;
}

.project-image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Llenar completamente el espacio */
    border-radius: 0; /* SIN bordes internos */
    transition: all 0.3s ease;
    box-shadow: none;
    background: transparent;
    display: block; /* Eliminar espacio inline */
    margin: 0;
    padding: 0;
}

.project-image-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 10;
    position: relative;
}

/* Bordes redondeados SOLO en las esquinas externas */
.project-image-gallery img:nth-child(1) {
    border-top-left-radius: 24px;
}

.project-image-gallery img:nth-child(2) {
    border-top-right-radius: 24px;
}

.project-image-gallery img:nth-child(3),
.project-image-gallery img:nth-child(4) {
    border-radius: 0;
}

/* REMOVER overlays completamente */
.project-image-overlay,
.project-image-grid {
    display: none !important;
}

/* Gradientes de fondo del proyecto */
.gradient-green,
.gradient-orange,
.gradient-purple {
    background: transparent !important; /* Quitar gradientes que causan espacios */
}

/* Desktop */
@media (min-width: 969px) {
    .project-image-container {
        height: 600px;
    }
}

/* Tablet */
@media (max-width: 968px) {
    .project-image-container {
        height: 500px;
        border-radius: 16px 16px 0 0;
    }
    
    .project-image-gallery img:nth-child(1) {
        border-top-left-radius: 16px;
    }
    
    .project-image-gallery img:nth-child(2) {
        border-top-right-radius: 16px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .project-image-container {
        height: 400px;
        border-radius: 16px 16px 0 0;
    }
    
    .project-image-gallery {
        grid-template-columns: 1fr; /* Una columna */
        grid-template-rows: repeat(4, 1fr); /* 4 filas iguales */
    }
    
    /* En móvil, solo la primera imagen tiene borde superior */
    .project-image-gallery img:nth-child(1) {
        border-radius: 16px 16px 0 0;
    }
    
    .project-image-gallery img:nth-child(2),
    .project-image-gallery img:nth-child(3),
    .project-image-gallery img:nth-child(4) {
        border-radius: 0;
    }
}

.placeholder-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    stroke-width: 2;
}

.placeholder-text {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Si usas video real */
.project-video-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Info */
.project-info {
    padding: 2rem 3rem 3rem;
}

.project-tag-new {
    display: inline-block;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.project-tag-new span {
    font-size: 0.875rem;
    color: #60A5FA;
    font-weight: 600;
}

.project-title-new {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.project-description-new {
    font-size: 1.125rem;
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 60rem;
}

/* Features Grid */
.project-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
    stroke-width: 2;
}

.feature-item-new span {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1rem;
}

/* Stats Container */
.project-stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.stat-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 180px;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #60A5FA 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #3B82F6 0%, #2563EB 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-view-project:hover {
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

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

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 968px) {
    .project-info {
        padding: 1.5rem 2rem 2rem;
    }

    .project-features-grid {
        grid-template-columns: 1fr;
    }

    .project-stats-container {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-view-project {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .stat-box {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .project-image-container {
        height: 240px;
    }

    .placeholder-icon {
        width: 64px;
        height: 64px;
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-title-new {
        font-size: 1.5rem;
    }

    .project-description-new {
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT SECTION - Nueva versión mejorada
   ============================================ */

.contact-section-new {
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(to bottom, #000000 0%, #0f172a 50%, #000000 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSg1OSwxMzAsMjQ2LDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #9CA3AF;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card-link {
    display: block;
    background: linear-gradient(135deg, rgba(17, 24, 39, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
}

.contact-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-card-link:hover .contact-icon-box {
    transform: scale(1.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
}

.contact-label {
    color: #9CA3AF;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #60A5FA;
    transition: color 0.3s ease;
}

.contact-card-link:hover .contact-value {
    color: #93C5FD;
}

/* CTA Section */
.contact-cta-wrapper {
    margin-top: 4rem;
    text-align: center;
}

.contact-cta-box {
    display: inline-block;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.3) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 2rem 3rem;
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-button {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #3B82F6 0%, #2563EB 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-cta-box {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-section-new {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-icon-box {
        width: 64px;
        height: 64px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-value {
        font-size: 1.125rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
    }
}

/* ============================================
   FOOTER - Nueva versión mejorada
   ============================================ */

.footer-new {
    position: relative;
    background: linear-gradient(to bottom, #000000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.footer-background-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSg1OSwxMzAsMjQ2LDAuMDUpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: #60A5FA;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-color: #3B82F6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

/* Links Columns */
.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #3B82F6, transparent);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.link-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #60A5FA;
    padding-left: 0.5rem;
}

.footer-link:hover .link-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9CA3AF;
    font-size: 0.95rem;
}

.contact-icon-footer {
    width: 20px;
    height: 20px;
    color: #60A5FA;
    flex-shrink: 0;
    stroke-width: 2;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #60A5FA;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(30, 58, 138, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: #9CA3AF;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #6B7280;
}

.newsletter-input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #3B82F6 0%, #2563EB 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.5);
}

.button-arrow {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

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

/* Footer Bottom */
.footer-bottom-new {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #6B7280;
    font-size: 0.875rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #60A5FA;
}

.separator {
    color: #4B5563;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .footer-newsletter {
        padding: 1.5rem;
    }

    .newsletter-text h3 {
        font-size: 1.25rem;
    }

    .footer-social-links {
        justify-content: flex-start;
    }
}

/* Project Image Container - CON SCROLL */
.project-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: auto; /* Permite scroll */
    display: block;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px 16px 0 0;
}

/* Estilos personalizados para la scrollbar */
.project-image-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.project-image-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.project-image-container::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.project-image-container::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.8);
}

/* Firefox scrollbar */
.project-image-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) rgba(0, 0, 0, 0.2);
}

/* Project Image Gallery - 2x2 con tamaño fijo para permitir scroll */
.project-image-gallery {
    width: 100%;
    min-width: 800px; /* Ancho mínimo para forzar scroll horizontal en móviles */
    height: auto;
    min-height: 1000px; /* Altura mínima para las 4 imágenes completas */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 500px; /* Filas de 500px cada una */
    gap: 1rem;
    padding: 1rem;
}

.project-image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Cambiado a 'contain' para ver las imágenes completas */
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.project-image-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Overlay gradientes - ajustados para no interferir con scroll */
.project-image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.project-image-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .project-image-container {
        height: 500px;
    }
    
    .project-image-gallery {
        min-width: 700px;
        min-height: 900px;
        grid-template-rows: 450px 450px;
    }
}

@media (max-width: 640px) {
    .project-image-container {
        height: 400px;
    }
    
    .project-image-gallery {
        min-width: 600px;
        min-height: 800px;
        grid-template-rows: 400px 400px;
    }
}
/* Testimonials - Versión Moderna con Imagen de Fondo */
.testimonials-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #0A0A0A;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-modern {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.testimonial-card-modern:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary-blue);
}

.testimonial-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.testimonial-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.testimonial-content-modern {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.quote-icon {
    color: var(--primary-blue);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FFFFFF;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonial-author-modern {
    border-top: 2px solid var(--primary-blue);
    padding-top: 1rem;
}

.testimonial-author-modern h4 {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.testimonial-author-modern p {
    color: #60A5FA;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 968px) {
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-modern {
        height: 450px;
    }
}

@media (max-width: 640px) {
    .testimonial-card-modern {
        height: 400px;
    }
    
    .testimonial-content-modern {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVE FIXES - MOBILE FIRST
   ============================================ */

/* Header - Mobile Fix */
@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 0.5rem;
    }
}

/* Hero Section - Mobile Improvements */
@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding-top: 60px;
    }
    
    .hero-container {
        padding: 40px 16px;
    }
    
    .hero-main-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* About Section - Mobile Fix */
@media (max-width: 640px) {
    .about-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .about-header {
        margin-bottom: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.25rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
}

/* Services Section - Mobile Fix */
@media (max-width: 640px) {
    .services-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

/* Projects Section - Mobile Fix (MUY IMPORTANTE) */
@media (max-width: 968px) {
    .projects-section-new {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .projects-container {
        padding: 0 16px;
    }
    
    .projects-list {
        gap: 2rem;
    }
    
    .project-card {
        border-radius: 16px;
    }
    
    /* Fix para el contenedor de imágenes en móvil */
    .project-image-container {
        height: 400px;
    }
    
    .project-image-gallery {
        min-width: 100%;
        min-height: 800px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .project-title-new {
        font-size: 1.5rem;
    }
    
    .project-description-new {
        font-size: 1rem;
    }
    
    .project-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .project-stats-container {
        flex-direction: column;
        width: 100%;
    }
    
    .stat-box {
        width: 100%;
        min-width: auto;
    }
    
    .btn-view-project {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .project-image-container {
        height: 350px;
        border-radius: 16px 16px 0 0;
    }
    
    .project-image-gallery {
        min-height: 700px;
        grid-template-rows: repeat(4, 175px);
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .project-image-gallery img {
        border-radius: 8px;
    }
    
    .project-info {
        padding: 1.25rem;
    }
    
    .project-tag-new {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .project-title-new {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
    
    .project-description-new {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item-new {
        gap: 0.5rem;
    }
    
    .feature-item-new span {
        font-size: 0.9rem;
    }
}

/* Tech Section - Mobile Fix */
@media (max-width: 640px) {
    .tech-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-category h4 {
        font-size: 1.1rem;
    }
    
    .tech-items span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Team Section - Mobile Fix */
@media (max-width: 640px) {
    .team-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
}

/* Testimonials - Mobile Fix */
@media (max-width: 968px) {
    .testimonials-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card-modern {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .testimonial-card-modern {
        height: 350px;
        border-radius: 12px;
    }
    
    .testimonial-content-modern {
        padding: 1.5rem;
    }
    
    .quote-icon {
        margin-bottom: 0.75rem;
    }
    
    .quote-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .testimonial-author-modern h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-author-modern p {
        font-size: 0.875rem;
    }
}

/* Contact Section - Mobile Fix */
@media (max-width: 640px) {
    .contact-section-new {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .contact-container {
        padding: 0 16px;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .contact-card-link {
        padding: 1.5rem;
    }
    
    .contact-icon-box {
        width: 64px;
        height: 64px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-value {
        font-size: 1.1rem;
    }
    
    .contact-cta-wrapper {
        margin-top: 2rem;
    }
    
    .contact-cta-box {
        padding: 1.5rem;
        width: 100%;
    }
    
    .cta-title {
        font-size: 1.35rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Footer - Mobile Fix (MUY IMPORTANTE) */
@media (max-width: 968px) {
    .footer-new {
        padding: 0;
    }
    
    .footer-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        height: 50px;
        margin: 0 auto 1rem;
        display: block;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-links-column {
        text-align: center;
    }
    
    .footer-column-title {
        text-align: center;
    }
    
    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-list {
        align-items: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-contact-list {
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    /* Newsletter Mobile */
    .footer-newsletter {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-text {
        text-align: center;
    }
    
    .newsletter-text h3 {
        font-size: 1.25rem;
    }
    
    .newsletter-text p {
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-input {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }
    
    .newsletter-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    /* Footer Bottom Mobile */
    .footer-bottom-new {
        padding-top: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: var(--spacing-md) 1rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .footer-slogan {
        font-size: 0.875rem;
    }
    
    .footer-social-links {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-link,
    .footer-contact-item {
        font-size: 0.875rem;
    }
    
    .footer-newsletter {
        padding: 1.5rem 1rem;
    }
    
    .newsletter-text h3 {
        font-size: 1.1rem;
    }
    
    .newsletter-text p {
        font-size: 0.85rem;
    }
    
    .newsletter-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .newsletter-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .copyright,
    .footer-legal-links a {
        font-size: 0.8rem;
    }
}

/* Section Headers - Mobile Fix */
@media (max-width: 640px) {
    .section-header {
        margin-bottom: var(--spacing-md);
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

/* Utility Classes for Mobile */
@media (max-width: 640px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile {
        display: block !important;
    }
}

/* ============================================
   NAVBAR HAMBURGER MENU - FIXED VERSION
   ============================================ */

@media (max-width: 968px) {
    header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    
    .logo {
        height: 40px;
        flex-shrink: 0;
        z-index: 1001;
    }
    
    /* Botón Hamburguesa */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        flex-shrink: 0;
    }
    
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Animación del botón cuando está activo */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    
    /* Menú Desplegable */
    .nav-list {
        position: fixed;
        top: 72px; /* Altura del header */
        right: -100%; /* Empieza fuera de la pantalla a la derecha */
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 72px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(33, 155, 239, 0.3);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem 0;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    /* Menú activo */
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-list li:hover {
        background: rgba(33, 155, 239, 0.1);
    }
    
    .nav-list a {
        display: block;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        white-space: normal;
        position: relative;
    }
    
    .nav-list a::after {
        display: none; /* Quitar el subrayado en móvil */
    }
    
    /* Overlay oscuro cuando el menú está abierto */
    body::before {
        content: '';
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }
    
    /* Evitar scroll del body cuando el menú está abierto */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0.875rem 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .menu-toggle {
        width: 26px;
        height: 20px;
    }
    
    .menu-toggle span {
        height: 2.5px;
    }
    
    .nav-list {
        top: 68px;
        height: calc(100vh - 68px);
        width: 85%;
    }
    
    body::before {
        top: 68px;
        height: calc(100vh - 68px);
    }
}

/* Desktop - Ocultar botón hamburguesa */
@media (min-width: 969px) {
    .menu-toggle {
        display: none !important;
    }
    
    .nav-list {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        border: none;
        box-shadow: none;
    }
}

/* ============================================
   PRIVACY SECTION - Aviso de Privacidad
   ============================================ */

.privacy-section {
    position: relative;
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #0A0A0A 100%);
    overflow: hidden;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.privacy-background {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSg1OSwxMzAsMjQ2LDAuMDgpIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=');
    opacity: 0.4;
    z-index: 0;
}

.privacy-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.privacy-content {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy-content:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.15);
}

.privacy-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.4);
}

.privacy-icon {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
}

.privacy-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.privacy-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-highlight {
    color: #60A5FA;
    font-weight: 600;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.privacy-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.privacy-feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

.feature-check-privacy {
    width: 24px;
    height: 24px;
    color: #10B981;
    flex-shrink: 0;
    stroke-width: 2;
}

.privacy-feature-item span {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left;
}

.privacy-cta {
    margin-top: 2rem;
}

.btn-privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #3B82F6 0%, #2563EB 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.btn-privacy-link:hover {
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

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

.privacy-arrow {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

/* Responsive Design - Privacy Section */
@media (max-width: 968px) {
    .privacy-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .privacy-content {
        padding: 2.5rem 2rem;
    }
    
    .privacy-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .privacy-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .privacy-icon-box {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }
    
    .privacy-icon {
        width: 32px;
        height: 32px;
    }
    
    .privacy-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .privacy-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .privacy-features {
        gap: 0.875rem;
    }
    
    .privacy-feature-item {
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-feature-item span {
        font-size: 0.875rem;
        text-align: center;
    }
    
    .btn-privacy-link {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}