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

:root {
    --primary: #7c3aed;
    --dark: #1a1a1a;
    --light-bg: #f9f9f9;
    --text: #333;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-flex {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* CURSOR FOLLOWER */
.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.6) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    display: block;
    opacity: 1;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

@media (max-width: 768px) {
    .cursor-follower {
        display: none;
    }
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 60px;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    height: 50px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

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

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

.btn-escribenos {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-escribenos:hover {
    background: #6d28d9;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.btn-escribenos::after {
    display: none;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
    padding: 140px 20px 180px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: moveBg 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes moveBg {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.purple {
    color: var(--primary);
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.btn-contacto-hero {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 50px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-contacto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-contacto-hero:hover::before {
    left: 100%;
}

.btn-contacto-hero:hover {
    background: #6d28d9;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
    transform: translateY(-3px);
}

/* SERVICIOS */
.servicios {
    background: var(--dark);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

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

.servicio-card {
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    will-change: transform, box-shadow;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.7), rgba(106, 28, 217, 0.7));
    z-index: 1;
    transition: background 0.3s;
    will-change: background;
}

.servicio-card:hover::before {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(106, 28, 217, 0.5));
}

.servicio-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.servicio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: none;
}

.servicio-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.branding {
    background: linear-gradient(135deg, rgba(180, 100, 200, 0.9), rgba(150, 80, 180, 0.9));
}

.branding .servicio-overlay {
    background:
        linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1)),
        linear-gradient(-45deg, transparent 25%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1));
    background-size: 60px 60px;
    background-color: rgba(180, 100, 200, 0.4);
    animation: moveBranding 8s linear infinite;
}

@keyframes moveBranding {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, -60px -60px;
    }
}

.socialmedia {
    background: linear-gradient(135deg, rgba(140, 70, 180, 0.95), rgba(120, 50, 160, 0.95));
}

.socialmedia .servicio-overlay {
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 15px 15px;
    background-color: rgba(140, 70, 180, 0.4);
    animation: moveSocial 10s linear infinite;
}

@keyframes moveSocial {
    0% {
        background-position: 0 0, 15px 15px;
    }
    100% {
        background-position: 50px 50px, 65px 65px;
    }
}

.multimedia {
    background: linear-gradient(135deg, rgba(180, 100, 200, 0.95), rgba(160, 80, 180, 0.95));
}

.multimedia .servicio-overlay {
    background:
        linear-gradient(90deg, transparent 24%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.1) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.1) 76%, transparent 77%, transparent),
        linear-gradient(rgba(255,255,255,0.1) 24%, transparent 25%, transparent 26%, rgba(255,255,255,0.1) 27%, rgba(255,255,255,0.1) 74%, transparent 75%, transparent 76%, rgba(255,255,255,0.1) 77%);
    background-size: 50px 50px;
    background-color: rgba(180, 100, 200, 0.4);
    animation: moveMultimedia 12s linear infinite;
}

@keyframes moveMultimedia {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, -50px -50px;
    }
}

/* CLIENTES */
.clientes {
    background: white;
    padding: 120px 20px;
    text-align: center;
}

.clientes h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 80px;
    color: var(--dark);
    letter-spacing: -1px;
}

.clientes-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.cliente-logo {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    min-width: 200px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cliente-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 150px;
    height: auto;
}

.cliente-logo:hover {
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary);
}

/* QUÉ HACEMOS */
.que-hacemos {
    background: linear-gradient(135deg, var(--primary) 0%, #6d28d9 100%);
    color: white;
    padding: 120px 20px;
}

.que-hacemos .container-flex {
    align-items: center;
}

.que-hacemos-text h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.que-hacemos-text p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.que-hacemos-video {
    flex: 1;
}

.video-institucional {
    width: 100%;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.video-institucional:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

/* QUIÉNES SOMOS */
.quienes-somos {
    background: white;
    padding: 120px 20px;
    text-align: center;
}

.quienes-somos h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--dark);
    border-bottom: 4px solid var(--primary);
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: -1px;
}

.descripcion {
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.team-grid {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.team-member {
    padding: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    min-width: 180px;
    text-align: center;
}

.team-member:hover {
    transform: scale(1.05);
}

.circle {
    width: 130px;
    height: 130px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.team-member:hover .circle {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.05));
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.team-member h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-member p {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

/* MODAL CONTACTO */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.2s ease-out;
    will-change: opacity;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    will-change: transform;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.formulario-subtitulo {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.formulario-contacto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    background: #f9f9f9;
    will-change: border-color, box-shadow, background;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.btn-enviar {
    background: var(--primary);
    color: white;
    padding: 16px 50px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    margin-top: 20px;
}

.btn-enviar:hover {
    background: #6d28d9;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
    transform: translateY(-3px);
}

.btn-enviar:active {
    transform: translateY(-1px);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    height: 50px;
    display: flex;
    align-items: center;
}

.footer-section h4 {
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

.footer-section p a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-3px);
}

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
    }
}

/* RESPONSIVE */
/* Tablets (769px - 1024px) */
@media (max-width: 1024px) {
    .servicios-grid {
        grid-template-columns: 1fr 1fr;
    }

    .clientes-grid {
        gap: 20px;
    }

    .cliente-logo {
        min-width: calc(50% - 10px);
    }

    .team-grid {
        gap: 30px;
    }

    .team-member {
        min-width: calc(50% - 15px);
    }

    .container-flex {
        gap: 40px;
    }

    .que-hacemos-text h2 {
        font-size: 44px;
    }

    .video-institucional {
        max-height: 300px;
    }
}

/* Mobile Landscape & Tablets (481px - 768px) */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .btn-escribenos {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 80px 20px 100px;
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn-contacto-hero {
        padding: 14px 40px;
        font-size: 15px;
    }

    .servicios {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .servicio-card {
        height: 220px;
        padding: 30px;
    }

    .servicio-card h3 {
        font-size: 20px;
    }

    .clientes {
        padding: 80px 20px;
    }

    .clientes-grid {
        gap: 15px;
    }

    .cliente-logo {
        min-width: calc(50% - 7.5px);
        padding: 25px;
        min-height: 120px;
    }

    .cliente-logo img {
        width: 120px;
    }

    .que-hacemos {
        padding: 80px 20px;
    }

    .container-flex {
        flex-direction: column;
        gap: 30px;
    }

    .que-hacemos-text h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .que-hacemos-text p {
        font-size: 15px;
    }

    .video-institucional {
        max-height: 250px;
    }

    .quienes-somos {
        padding: 80px 20px;
    }

    .quienes-somos h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .descripcion {
        font-size: 14px;
        margin-bottom: 50px;
    }

    .team-grid {
        gap: 20px;
    }

    .team-member {
        min-width: calc(50% - 10px);
        padding: 15px;
    }

    .circle {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .team-member h4 {
        font-size: 14px;
    }

    .team-member p {
        font-size: 11px;
    }

    .footer {
        padding: 60px 20px;
    }

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

    .footer-section h4 {
        font-size: 12px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .modal-content {
        padding: 35px 20px;
        width: 95%;
        max-height: 85vh;
        border-radius: 15px;
    }

    .modal-content .section-title {
        font-size: 24px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 28px;
        top: 15px;
        right: 15px;
    }

    .formulario-subtitulo {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .formulario-contacto {
        gap: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 8px;
    }

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

    .btn-enviar {
        padding: 12px 30px;
        font-size: 14px;
        margin-top: 15px;
        border-radius: 8px;
    }

    .form-message {
        font-size: 13px;
        padding: 12px;
    }
}

/* Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .navbar-container {
        padding: 0 10px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .btn-escribenos {
        padding: 7px 12px;
        font-size: 12px;
        border-radius: 15px;
    }

    .hero {
        padding: 60px 15px 80px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-contacto-hero {
        padding: 12px 30px;
        font-size: 13px;
    }

    .servicios {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .servicios-grid {
        gap: 15px;
    }

    .servicio-card {
        height: 180px;
        padding: 20px;
        border-radius: 15px;
    }

    .servicio-card h3 {
        font-size: 18px;
    }

    .clientes {
        padding: 60px 15px;
    }

    .clientes-grid {
        gap: 10px;
    }

    .cliente-logo {
        min-width: calc(50% - 5px);
        padding: 15px;
        min-height: 100px;
        border-radius: 10px;
    }

    .cliente-logo img {
        width: 100px;
    }

    .que-hacemos {
        padding: 60px 15px;
    }

    .que-hacemos-text h2 {
        font-size: 26px;
    }

    .que-hacemos-text p {
        font-size: 14px;
    }

    .video-institucional {
        max-height: 180px;
        border-radius: 15px;
    }

    .quienes-somos {
        padding: 60px 15px;
    }

    .quienes-somos h2 {
        font-size: 24px;
        margin-bottom: 20px;
        border-bottom: 3px solid var(--primary);
    }

    .descripcion {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .team-grid {
        gap: 15px;
    }

    .team-member {
        min-width: calc(50% - 7.5px);
        padding: 10px;
    }

    .circle {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        border-width: 2px;
    }

    .team-member h4 {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .team-member p {
        font-size: 10px;
    }

    .footer {
        padding: 50px 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-section h4 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 12px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .modal-content {
        padding: 25px 15px;
        width: 98%;
        max-height: 90vh;
        border-radius: 12px;
    }

    .modal-content .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 24px;
        top: 12px;
        right: 12px;
    }

    .formulario-subtitulo {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .formulario-contacto {
        gap: 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 6px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-enviar {
        padding: 11px 25px;
        font-size: 13px;
        margin-top: 10px;
        border-radius: 6px;
    }

    .form-message {
        font-size: 12px;
        padding: 10px;
        margin-top: 15px;
    }
}
