:root {
    --primary: #134d87;
    --primary-dark: #1d5f96;
    --header-height: 92px;
    --secondary: #102033;
    --secondary-light: #1b314d;
    --light: #f4f8fc;
    --white: #ffffff;
    --accent: #4da3ff;
    --shadow: 0 10px 35px #00000022;
}

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

body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
    background:
    linear-gradient(180deg,#08111d 0%,#0f1e31 25%,#132842 50%, #0f1d30 100%);
    color: var(--light);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* NAVIGATION */

.nav-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: linear-gradient(180deg, rgba(6,12,22,0.45), rgba(6,12,22,0.25));
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 1200;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 40px rgba(2,6,20,0.6);
    transition: transform 0.25s ease, background 0.25s ease;
}

.logo-text {
    font-weight: 800;
    color: #eaf6ff;
    font-size: 1.05rem;
    padding: 8px 70px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-image: url(./../assets/lopez_paz_monograma_blanco.webp);
    background-position: 0px;
    background-size: 80px;
    background-repeat: no-repeat;
}

nav ul {
    display: flex;
    margin-top: 0;
    gap: 22px;
    list-style: none;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #eaf6ff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 8px;
    border-radius: 8px;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

nav a:hover {
    color: white;
    background: rgba(77,163,255,0.08);
    transform: translateY(-2px);
}

/* nav toggle (mobile) */
.nav-toggle { display:none; background:transparent; border:0; cursor:pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display:block; height:3px; width:22px; background:#eaf6ff; border-radius:3px; position:relative; transition:transform .2s ease, opacity .18s ease; }
.nav-toggle span::before, .nav-toggle span::after { content:''; position:absolute; left:0; }
.nav-toggle span::before { top:-7px; }
.nav-toggle span::after { top:7px; }
.nav-container.open .nav-toggle span { background: transparent; }
.nav-container.open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-container.open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.nav-contact {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    border-radius: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 10px 30px rgba(29,95,150,0.18);
}

.nav-contact:hover { transform: translateY(-3px); }

.nav-contact a { color: var(--white) !important; padding: 8px 16px; display:inline-flex; align-items:center; }

/* HERO */

.hero {
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,22,40,0.62) 0%, rgba(6,14,30,0.5) 100%);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at top right, #4da3ff22 0%, transparent 30%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 20px;
    padding-left: 80px;
    padding-right: 80px;
}

.hero-content > * {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.92s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.18s; }
.hero-content > *:nth-child(2) { animation-delay: 0.28s; }
.hero-content > *:nth-child(3) { animation-delay: 0.38s; }
.hero-content > *:nth-child(4) { animation-delay: 0.46s; }
.hero-content > *:nth-child(5) { animation-delay: 0.54s; }

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #1d5f96;
    border-radius: 999px;
    background: #1d5f96;
    color: var(--light);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4.6rem;
    line-height: 1.02;
    color: #eaf6ff;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 10px 40px rgba(77,163,255,0.06), 0 2px 10px rgba(0,0,0,0.6);
}

.line {
    width: 120px;
    height: 3px;
    background: #4da3ff;
    margin-bottom: 25px;
    border-radius: 999px;
}

.hero-subtitle {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-box {
    background:
    linear-gradient(135deg,#0f3b66e6,#1d5f96e6);
    border: 1px solid #ffffff15;
    border-radius: 24px;
    padding: 22px 28px;
    color: var(--light);
    width: fit-content;
    max-width: 500px;
    margin-bottom: 35px;
    font-size: 1rem;
    box-shadow: 0 15px 35px #00000040;
    backdrop-filter: blur(10px);
}

.hero-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 60px;
    background:
    linear-gradient(135deg,var(--accent),var(--primary-dark)
    );
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 25px #4da3ff35;
    will-change: transform;
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 35px #4da3ff50;
}

.hero-btn:active {
    background-color: #0f1e31;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,#25d366,#1eb954);
    color: #ffffff;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    max-width: calc(100vw - 40px);
    white-space: normal;
    box-shadow: 0 18px 40px rgba(37,211,102,0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(37,211,102,0.28);
}

.whatsapp-float i {
    font-size: 1.2rem;
}

.scroll-hint {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    opacity: 0.95;
    text-align: right;
}

.scroll-hint span {
    width: 24px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 999px;
    position: relative;
}

.scroll-hint span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: scrollDot 1.6s ease infinite;
}

.scroll-hint p {
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.9);
}

@keyframes scrollDot {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, 16px);
        opacity: 1;
    }
}

/* NOSOTROS */

.nosotros {
    background:
    linear-gradient(
        135deg,
        #08111d 0%,
        #102033 40%,
        #163456 100%
    );
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.nosotros::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at top right, #4da3ff22 0%, transparent 35%);
    pointer-events: none;
}

.container-nosotros {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.nosotros-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.nosotros-image {
    flex: 1;
}

.nosotros-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 50px #00000060;
    border: 1px solid #ffffff10;
}

.stats-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.card {
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );
    backdrop-filter: blur(12px);
    color: var(--white);
    padding: 20px;
    border-radius: 24px;
    flex: 1;
    border: 1px solid #ffffff12;
    text-transform: uppercase;
    transition: 0.3s ease;
    box-shadow: 0 15px 35px #00000030;
}

.card:hover {
    transform: translateY(-6px);
    background:
    linear-gradient(
        145deg,
        rgba(77,163,255,0.15),
        rgba(255,255,255,0.05)
    );
}

.nosotros-tag {
    padding: 5px 15px;
    border: 1px solid #ffffff20;
    border-radius: 20px;
    background: #ffffff10;
    color: var(--light);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    width: fit-content;
}

.sobre {
    background: linear-gradient(to right, #ffffff, #8dc7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.text {
    margin-bottom: 15px;
    color: #dbeafe;
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
}

.number span {
    font-size: 30px;
    margin-left: 5px;
}

hr {
    width: 70%;
    border: 0;
    border-top: 2px solid #ffffff30;
    margin: 20px 0;
}

/* MAIN CONTENT */

main {
    max-width: 100%;
    margin: auto;
}

.section-title {
    background: linear-gradient(to right, #ffffff, #8dc7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.65rem;
    text-align: center;
    margin-bottom: 24px;
    margin-top: 50px;
    letter-spacing: 0.08em;
    text-shadow: 0 10px 30px rgba(77,163,255,0.08);
}

.underline {
    width: 70px;
    height: 4px;
    background:
    linear-gradient(to right, var(--accent), transparent);
    margin: 10px auto;
    border-radius: 999px;
}

.destacado {
    font-weight: bold;
    color: #8dc7ff;
}

/* SERVICIOS */

#servicios {
    background:
    linear-gradient(
        180deg,
        #102033 0%,
        #132842 100%
    );
    padding: 90px 20px;
}

.grid-services,
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff05, #ffffff03);
    backdrop-filter: blur(8px);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #ffffff0f;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    box-shadow: 0 16px 40px #0206148c;
    color: var(--light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(77,163,255,0.9), rgba(77,163,255,0));
}

.service-card {
    animation: popIn 0.9s ease both;
}

.service-card:hover { 
    transform: translateY(-8px); box-shadow: 0 30px 70px rgba(2,6,20,0.7); border-color: rgba(77,163,255,0.14); 
}

.service-card h3 { 
    color: #eef6ff; display:flex; align-items:center; gap:12px; font-size:1.15rem; 
}

.service-card p { 
    color: #cfe9ff; }

.service-card .service-icon { 
    font-size: 1.5rem; color: var(--accent); 
}

/* FEATURES */

#por-que-elegirnos {
    background:
    linear-gradient(135deg,#08111d 0%,#0f3b66 100%);
    padding: 100px 20px;
}

#por-que-elegirnos h2,
#por-que-elegirnos h4,
#por-que-elegirnos p {
    color: #ffffff;
}

.feature {
    text-align: center;
    padding: 35px 25px;
    background:
    linear-gradient(145deg, rgba(255,255,255,0.08),rgba(255,255,255,0.02));
    border: 1px solid #ffffff12;
    border-radius: 30px;
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
    box-shadow: 0 15px 35px #00000035;
    animation: popIn 0.98s ease both;
}

.feature:hover {
    transform: translateY(-8px);
    background:
    linear-gradient(145deg,rgba(77,163,255,0.18),rgba(255,255,255,0.05));
}

.feature .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}


/* IMAGES */

.mi-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 200px;
}

.tagline {
    text-align: center;
    font-style: italic;
    color: #8dc7ff;
    margin-bottom: 60px;
}

.mi-asesoria {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* CONTACTOS */

.contact-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #132842 0%, #0b1725 100%);
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.96s ease both;
    animation-delay: 0.18s;
}

.contact-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding-left: 10px;
}

.contact-tag {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #ffffff20;
    border-radius: 20px;
    background: #ffffff10;
    color: var(--light);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-line {
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Tarjetas de Contacto */
.contact-info-card, .contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    animation: popIn 0.95s ease both;
}

/* Columna Izquierda */
.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #a0aec0;
    margin-bottom: 25px;
}

.contact-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-location i {
    color: var(--accent);
    font-size: 1.1rem;
}

.btn-direct-wsp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(77, 163, 255, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 35px;
}

.btn-direct-wsp:hover {
    background: var(--accent);
    color: white;
}

.contact-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.contact-benefits li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-benefits i {
    color: var(--accent);
    font-size: 1.2rem;
}

.contact-benefits strong {
    display: block;
    color: white;
    font-size: 1rem;
}

.contact-benefits span {
    color: #a0aec0;
    font-size: 0.9rem;
}

.contact-extra-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #dbeafe;
    border-left: 3px solid var(--accent);
}

/* Formulario Estilo Imagen */
.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form-card input,
.contact-form-card textarea {
    flex: 1;
    min-width: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 14px 18px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
}

.contact-form-card textarea {
    width: 100%;
    min-height: 150px;
    resize: vertical;
}

.contact-form-card input:focus, .contact-form-card textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(77,163,255,0.12);
    transform: translateY(-2px);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-info {
    font-size: 0.8rem;
    color: #718096;
}

.footer-info a {
    color: var(--accent);
    text-decoration: none;
}

/* WHATSAPP FLOAT */

.whatsapp-btn {
    background: linear-gradient(135deg,#25d366,#1eb954);
    border: none;
    color: white;
    padding: 12px 26px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(37,211,102,0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(37,211,102,0.22); }

.whatsapp-btn span { font-size: 1rem; }


.wsp {
    padding: 0.3rem;
}

footer {
    background:
    linear-gradient(135deg,#050b14,#08111d);
    color: #dbeafe;
    padding: 40px 20px;
    border-top: 1px solid #ffffff10;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.95s ease both;
    animation-delay: 0.22s;
}

.footer-brand p {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-brand span {
    color: #9db7d8;
    font-size: 0.95rem;
}

.footer-location {
    display: block;
    color: #dfe6ff;
    margin-top: 8px;
    font-size: 0.92rem;
}

.footer-brand {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(77,163,255,0.10);
    border: 1px solid rgba(77,163,255,0.18);
    color: #edf2ff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-links a:hover {
    transform: translateY(-2px);
    background: rgba(77,163,255,0.18);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.footer-links i {
    font-size: 1.1rem;
    color: var(--accent);
}

.footer-copy {
    margin: 24px auto 0;
    max-width: 1200px;
    color: #9ba7c0;
    font-size: 0.92rem;
    text-align: center;
}

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

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* SCROLL  */

html {
    scroll-behavior: smooth;
}

/* ensure anchors don't hide under the fixed header */
section, [id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

/* Custom scrollbar for modern browsers */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), var(--primary-dark));
    border-radius: 999px;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .nav-toggle { display: inline-flex; }

    .main-nav { display: none; }

    .nav-container.open .main-nav {
        display: block;
        position: absolute;
        top: calc(var(--header-height) + 12px);
        left: 12px;
        right: 12px;
        background: linear-gradient(180deg, rgba(6,12,22,0.98), rgba(6,12,22,0.96));
        border-radius: 12px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,0.04);
    }

    .main-nav ul { flex-direction: column; gap: 12px; }

    .main-nav a { display: block; padding: 12px 14px; }

    .container-nosotros {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nosotros-content {
        width: 100%;
        text-align: left;
    }

    .stats-container {
        flex-direction: column;
        width: 100%;
    }

    .card {
        width: 100%;
    }

    .sobre {
        font-size: 2.5rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: calc(var(--header-height) + 24px);
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
        max-width: calc(100vw - 28px);
        box-sizing: border-box;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.08;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

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

    .hero-box {
        max-width: 100%;
        padding: 18px 22px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }

    .container-nosotros,
    .contact-container,
    .grid-services,
    .grid-features {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .nosotros-content,
    .contact-info-card,
    .contact-form-card,
    .service-card,
    .feature {
        width: 100%;
    }

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

    .contact-container {
        align-items: stretch;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px;
    }

    .btn-direct-wsp {
        width: 100%;
        justify-content: center;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .footer-links a {
        flex: 1 1 100%;
        min-width: 0;
        width: auto;
        padding: 12px 14px;
    }

    .footer-copy {
        margin-top: 30px;
    }

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

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