.header {
    padding: 24px 32px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.12);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(59, 130, 246, 0.08);
    color: var(--color-text-blue);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__logo {
    width: auto;
    height: 30px;
    margin-right: auto;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__links a {
    color: var(--color-text-gray);
    font-size: 15px;
    transition: color 0.2s ease;
    font-weight: bold;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--color-text-blue);
}

/* ===== BOTONES ===== */

.btn {
    padding: 14px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn svg {
    stroke: var(--color-text-white);
    width: 20px;
    height: 20px;
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-text-white);
}

.btn--primary:hover {
    background-color: var(--color-accent-hover);
}

.btn--secondary {
    background-color: var(--color-navy-card);
    color: var(--color-text-white);
    border: 1px solid var(--color-navy-border);
}

.btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 720px;
    height: 100vh;
    padding: 96px 32px;

    background-image: url("../images/portada.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-titles {
    margin-top: 32px;
    margin-bottom: 32px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
            to right,
            #0d0d2d 0%,
            rgba(13, 13, 45, 0.9) 40%,
            rgba(13, 13, 45, 0.5) 100%
    );

    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    height: 6rem;

    background: linear-gradient(to top, #e6ecf4 0%, transparent 100%);

    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
    animation: slideInLeft 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__title {
    font-family: "DM Sans", sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__title--highlight {
    color: var(--color-primary-light);
}

.hero__text {
    color: var(--color-text-gray);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 550px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(59, 122, 224, 0.2);
    border: 1px solid rgba(59, 122, 224, 0.3);
    color: var(--euro-light);
    font-family: "Inter", sans-serif;
    padding: 8px 19px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    margin-top: 25px;
    margin-bottom: 16px;
    width: 22%;
}

.badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--euro-light);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== WHATSAPP FLOTANTE ===== */

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1000;

    padding: 16px 24px;

    border: none;
    border-radius: 999px;

    background: #25d366;
    color: white;
    font-weight: 600;
    font-size: medium;
    cursor: pointer;

    overflow: visible;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;

    border-radius: inherit;
    background: rgba(37, 211, 102, 0.35);
    z-index: -1;

    animation: pulse 0.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===== ¿POR QUÉ ELEGIRNOS? ===== */

.porque-elegirnos {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    align-items: center;
    text-align: center;
    padding: 96px 32px;
    background-color: white;
}

.porque-elegirnos h4 {
    color: var(--color-text-blue);
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.porque-elegirnos h1 {
    color: black;
    font-weight: bold;
    letter-spacing: 1px;
}

.card-div {
    display: flex;
    justify-content: center;
    gap: 32px;
    max-width: 1400px;
    margin: 48px auto 0;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    min-height: 290px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 40px 32px;

    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 12px;
    background: #fff;

    transition:
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.card__icon {
    width: 64px;
    height: 64px;
    background-color: #eef2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card__contents {
    margin-top: 10px;
}

.card__icon svg {
    width: 36px;
    height: 36px;
    stroke: #e53935;
    /* stroke: var(--color-text-blue); */
}

.card:hover .card__icon {
    background-color: var(--color-text-blue);
}

.card:hover .card__icon svg {
    stroke: white;
}

.card:hover {
    border-color: rgba(84, 124, 255, 0.35);
    box-shadow:
            0 18px 45px rgba(15, 23, 42, 0.08),
            0 0 35px rgba(84, 124, 255, 0.1);
}

 .card__title {
    font-family: "DM Sans", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    /* color: var(--color-bg-dark); */
    color: #999; 
    margin-bottom: 10px;
    line-height: 1.2;
}

.card__subtitle {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--euro-mid);
    margin-bottom: 12px;
    line-height: 24px;
}

.card__text {
    color: var(--color-text-gray);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== SOLUCIONES ===== */

#soluciones {
    text-align: center;
    padding: 96px 32px;
    background-color: #f4f6fb;
}

#soluciones h4 {
    color: var(--color-text-blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 12px;
}

#soluciones h2 {
    font-size: 40px;
    color: var(--color-bg-dark);
    margin-bottom: 16px;
}

#soluciones > span {
    display: block;
    color: var(--color-text-gray);
    font-size: 18px;
    max-width: 550px;
    margin: 0 auto 64px;
}

.soluciones {
    display: flex;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.solucion-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.solucion-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.solucion-card__img-wrapper {
    position: relative;
}

.solucion-card__img-wrapper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-text-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
}

.solucion-card__content {
    padding: 24px;
}

.solucion-card__content h3 {
    font-size: 22px;
    color: var(--color-bg-dark);
    margin-bottom: 12px;
}

.solucion-card__content p {
    color: var(--color-text-gray);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.link-consultar {
    color: var(--color-text-blue);
    font-weight: 600;
    font-size: 15px;
}

.link-consultar:hover {
    text-decoration: underline;
}

/* ===== CARRUSEL ===== */

.carrusel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carrusel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carrusel-track::-webkit-scrollbar {
    display: none;
}

.carrusel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--color-navy-border);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.carrusel-btn:hover {
    background-color: var(--color-text-blue);
    color: #ffffff;
}

/* ===== PRODUCTOS ===== */

#productos {
    background-color: #f4f6fb;
    text-align: center;
    padding: 96px 32px;
}

#productos h4 {
    color: var(--color-text-blue);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}


#productos h2 {
    font-size: 40px;
    color: var(--color-bg-dark);
    margin-bottom: 16px;
}

#productos > span {
    display: block;
    color: var(--color-text-gray);
    font-size: 18px;
    max-width: 550px;
    margin: 0 auto 64px;
}

.producto-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards visibles, restando los 2 gaps de 24px */
    scroll-snap-align: start;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.producto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.producto-card h3,
.producto-card p {
    padding: 0 20px;
}

.producto-card h3 {
    margin-top: 16px;
    font-size: 18px;
}

.producto-card p {
    color: var(--color-text-gray);
    font-size: 14px;
    margin: 8px 0 20px;
}

/* ===== NOSOTROS ===== */
#nosotros {
    background-color: var(--color-bg-dark);
    padding: 96px 32px;
    text-align: center;
}

#nosotros h4 {
    color: var(--color-primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 12px;
}

#nosotros h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 64px;
}

.nosotros__content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: center;
}

.left__content {
    flex: 1.2;
}

.left__content h4 {
    color: var(--color-primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 12px;
}

.left__content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 24px;
}

.left__content p {
    color: var(--color-text-gray-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.checklist li span {
    color: #ffffff;
    font-size: 15px;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--color-primary-light);
}

.right__content {
    flex: 1;
}

.metrics {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
}

.metric {
    padding: 24px 0;
}

.metric:first-child {
    padding-top: 0;
}

.metric:last-child {
    padding-bottom: 0;
}

.metric:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-primary-light);
    margin-bottom: 8px;
}

.metric p {
    color: var(--color-text-gray-light);
    font-size: 15px;
}

.cards__nosotros {
    display: flex;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.card__nosotros {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05); /* bg-white/5 */
    border: 1px solid rgba(255, 255, 255, 0.1);   /* border-white/10 */
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.card__nosotros:hover {
    background-color: rgba(255, 255, 255, 0.1); /* hover:bg-white/10 */
    border-color: var(--color-primary-light);
}

.card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card__icon_nosotros {
    width: 64px;
    height: 64px;
    background-color: rgba(59, 122, 224, 0.2); /* bg-euro-blue/20 */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.card__nosotros:hover .card__icon_nosotros {
    background-color: #3b7ae0; /* hover:bg-euro-blue sólido */
}

.card__icon_nosotros svg {
    width: 26px;
    height: 26px;
    stroke: #92beff; /* text-euro-light */
    transition: stroke 0.3s ease;
}


.card__nosotros:hover .card__icon_nosotros svg {
    stroke: #ffffff; /* hover:text-white */
}
.card__number {
    font-size: 32px;
    font-weight: 800;
    color: rgb(255, 255, 255); /* text-white/10 */
    line-height: 1;
}

.card__nosotros h3 {
    color: #ffffff; /* text-white */
    font-size: 20px;
    margin-bottom: 12px;
}

.card__nosotros p {
    color: #c6c6c6; /* text-euro-gray-300 */
    font-size: 15px;
    line-height: 1.5;
}

/* ===== EURO CONCIENCIA ===== */
#euro-conciencia {
    padding: 96px 32px;
    background-color: #ffffff;
}

.conciencia {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.conciencia__text {
    flex: 1;
    text-align: left;
}

.conciencia__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#euro-conciencia h4 {
    color: var(--color-text-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 16px;
}

#euro-conciencia h2 {
    color: var(--color-bg-dark);
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 28px;
    max-width: 620px;
}

#euro-conciencia p {
    color: var(--color-text-gray);
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 32px;
}

.conciencia__image-wrapper {
    width: 100%;
    max-width: 460px;
}

.conciencia__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

#euro-conciencia .checklist {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .conciencia {
        flex-direction: column;
        gap: 48px;
    }

    .conciencia__text {
        text-align: center;
    }

    #euro-conciencia h2,
    #euro-conciencia p {
        max-width: 100%;
    }

    #euro-conciencia h2 {
        font-size: 34px;
    }
}
/* ===== DIFERENCIALES ===== */

#diferenciales {
    padding: 96px 32px;
    text-align: center;
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#diferenciales h4 {
    color: var(--color-primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 12px;
}

#diferenciales h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 64px;
}

.diferenciales__grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.diferencial {
    flex: 1;
    padding: 0 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.3s ease;
}
.diferencial:hover {
    border-left-color: #ffffff;
}



.diferencial__icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary-light);
    margin-bottom: 20px;
}

.diferencial h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 12px;
}

.diferencial p {
    color: var(--color-text-gray-light);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== CTA ===== */

#cta {
    position: relative;
    background-color: rgb(36 49 112);
    padding: 96px 32px;
    text-align: center;
    overflow: hidden;
}

.cta__blur {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 400px;
    height: 400px;
    background-color: #3b7ae033;
    border-radius: 50%;
    filter: blur(64px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta__blur--left {
    left: 15%;
    transform: translate(-50%, -50%);
}

.cta__blur--right {
    right: 90%;
    transform: translate(190%, -50%);
}

#cta h2,
#cta p,
#cta .cta__actions {
    position: relative;
    z-index: 1;
}

#cta h2 {
    color: #ffffff;
    font-size: 40px;
    max-width: 800px;
    margin: 0 auto 24px;
}

#cta p {
    color: var(--color-primary-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

#cta .btn--secondary {
    background-color: #ffffff;
    color: var(--color-bg-dark);
    border: none;
}

/* ===== CONTACTO ===== */

#contacto {
    padding: 96px 32px;
    text-align: center;
    background-color: #ffffffc9;
}

#contacto h4 {
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 12px;
}

#contacto h2 {
    color: var(--color-bg-dark);
    font-size: 36px;
    margin-bottom: 16px;
}

#contacto > p {
    color: var(--color-text-gray);
    font-size: 18px;
    max-width: 550px;
    margin: 0 auto 64px;
}

.contacto__content {
    display: flex;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.left_contacto_content {
    flex: 1.2;
}

.right_contact_content {
    flex: 1;
}

/* Formulario */

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

.form-contacto label {
    font-weight: 600;
    color: var(--color-bg-dark);
    font-size: 15px;
    margin-bottom: 8px;
}

.form-contacto input,
.form-contacto textarea {
    border: 1px solid #d8dce8;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 24px;
    resize: vertical;
}

.form-contacto input:focus,
.form-contacto textarea:focus {
    outline: none;
    border-color: var(--euro-blue);
}

/* Card WhatsApp / llamanos */

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    text-align: center; /* centra el texto sin romper elementos de ancho completo */

    background-color: var(--color-bg-dark);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    width: 90%;
}

.contact__icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

.contact__icon svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
}

.contact h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
}

.contact > p {
    color: var(--color-text-gray-light);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn--whatsapp {
    width: 100%;
    justify-content: center;
    background-color: var(--color-whatsapp);
    color: #ffffff;
}

.contact__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.contact__label {
    color: var(--color-text-gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact__phone {
    display: block;
    color: var(--color-primary-light);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

/*======================================
          FOOTER NUEVO
======================================*/

.footer{
    background: white;
    /* background:#f3f3f3; */
    padding:50px;
}

.footer-contacto{
    background: white;
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
    max-width:1400px;
    margin:auto;
    align-items:stretch;

}

.footer-info h2{
    font-size:32px;
    margin-bottom:30px;
    color:#0c1e44;
    font-weight:800;
}

.footer-card{
    background:white;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    gap:25px;
}

.footer-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.footer-item i{
    color:#d62828;
    font-size:22px;
    margin-top:3px;
    width:24px;
}
.footer-item span,
.footer-item a{
    color:#1c1c1c;
    font-size:20px;
    text-decoration:none;
    font-weight:600;
}

.footer-map{
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.footer-map iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:none;
}

.footer-social{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#003a70;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    text-decoration:none;
}

.footer-copy{
    margin-top:40px;
    text-align:center;
    color:#666;
    font-size:14px;
}

@media(max-width:900px){

.footer-contacto{
grid-template-columns:1fr;
}

.footer-map iframe{
min-height:300px;
}

.footer-info h2{
font-size:26px;
}
}


/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .nav__links {
        display: none; /* después le metemos un menú hamburguesa */
    }

    .hero__title {
        font-size: 40px;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .nosotros__content {
        flex-direction: column;
    }

    .left__content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* ===== AGREGADO POR FGERTIE 17/07/2026 ===== */

/* Barra de navegación */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 40px;
    transition: all 0.35s ease;
}

/* Logo */
.nav__logo {
    height: 60px;
    width: auto;
    transition: all 0.35s ease;
}

/* Links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav__links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav__links a:hover {
    color: #b8dfff;
}

/* ===========================
   HEADER AL HACER SCROLL
=========================== */

.header--scrolled {
    background-color: var(--color-bg-dark);
    /* background: rgba(3, 38, 71, 0.95); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.header--scrolled .nav {
    padding: 5px 40px;
}

.header--scrolled .nav__logo {
    height: 60px;
}

.header--scrolled .nav__links a:hover {
    color: #d9ecff;
}