/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Chunko-Bold';
    src: url('../fonts/ChunkoBold.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --amarillo: #EEC531;
    --amarillo-dark: #EFB810;
    --verde: #037E67;
    --verde-dark: #006856;
    --verde-light: #3DAA54;
    --blanco: #FFFFFF;
    --negro: #111111;
    --rojo: #C11520;
    --sombra: rgba(0,0,0,0.18);
    --radio: 0 60px;
    --radio-responsive: 0 25px;
    --transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    --site-header-height: 76px;

    --font-principal-bold: 'Chunko-Bold', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--site-header-height);
}

body {
    padding-top: var(--site-header-height);
}

/* ============================================
   HEADER PRINCIPAL
   ============================================ */
.site-header {
    width: 100%;
    background: var(--amarillo);
    /* border: 2px solid var(--verde-dark); */
    /* border-radius: 0 0 18px 18px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.85rem 1.5rem;
    width: min(100%, 1200px);
    margin: 0 auto;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-header__toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Toggle (hamburguesa) - keep hidden on desktop; appear via media query */
#checkbox {
    display: none;
}

.toggle {
    /* hidden by default (desktop) */
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    transition-duration: .5s;
}

.bars {
    width: 100%;
    height: 4px;
    background-color: var(--verde);
    border-radius: 4px;
}

#bar2 {
    transition-duration: .8s;
}

#bar1 { width: 50%; }
#bar2 { width: 75%; }

#checkbox:checked + .toggle .bars {
    position: absolute;
    transition-duration: .5s;
}

#checkbox:checked + .toggle #bar2 {
    transform: scaleX(0);
    transition-duration: .1s;
}

#checkbox:checked + .toggle #bar1 {
    width: 100%;
    transform: rotate(45deg);
    transition-duration: .5s;
}

#checkbox:checked + .toggle #bar3 {
    width: 100%;
    transform: rotate(-45deg);
    transition-duration: .5s;
}

#checkbox:checked + .toggle {
    transition-duration: .5s;
    transform: rotate(180deg);
}

.site-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 2px solid rgba(30, 92, 44, 0.22);
    background: rgba(255, 255, 255, 0.28);
/*     box-shadow: inset 0 1px 0 rgba(255,255,255,0.35); */
    cursor: pointer;
    margin-left: auto;
    transition: transform 0.2s ease, background 0.2s ease;
}

.site-header__toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.36);
}

.site-header__toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--verde-dark);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle span + span {
    margin-top: 4px;
}

.site-header__logo {
    display: block;
    width: min(220px, 38vw);
    height: auto;
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-header__nav a {
    font-family: var(--font-principal-bold);
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--verde-dark);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.site-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    height: 2px;
    background: var(--verde-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
    color: var(--verde);
    transform: translateY(-1px);
    outline: none;
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
    transform: scaleX(1);
}
/* Por defecto (PC): muestra el texto corto, oculta el largo */
.site-header__nav-tyc--pc { display: inline; }
.site-header__nav-tyc--movil  { display: none; }

@media (max-width: 1024px) {
    
    .site-header__inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .site-header__toggle,
    .toggle {
        display: inline-flex;
    }

    .site-header__nav {
        display: none;
        order: 3;
        width: 100%;
        margin-top: 0.35rem;
        padding: 0.9rem;
        border-radius: 16px;
        /* background: rgba(255, 255, 255, 0.18); */
        backdrop-filter: blur(8px);
        /* box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); */
        justify-content: stretch;
        align-items: stretch;
        gap: 0.75rem;
    }

    .site-header__toggle-input:checked ~ .site-header__nav,
    #checkbox:checked ~ .site-header__nav {
        display: flex;
    }

    .site-header__nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        /* border-radius: 999px; */
        /* background: rgba(255, 255, 255, 0.32); */
    }
}

@media (max-width: 560px) {
    :root {
        --site-header-height: 88px;
    }
    body {
    padding-top: 60px;
    }
    .site-header__logo {
        width: min(180px, 55vw);
    }

    .site-header__toggle {
        width: 44px;
        height: 44px;
    }

    .site-header__nav {
        gap: 0.75rem 1rem;
    }

    .site-header__nav a {
        font-size: 20px;
    }
    .site-header__nav-tyc--pc { display: none; }
    .site-header__nav-tyc--movil  { display: inline; }
}

@media (max-width: 1024px) {
    .participar-section {
        height: auto;
        min-height: 100vh;
        padding: 2.5rem 1.5rem 2.25rem;
    }

    .section-eyebrow {
        font-size: clamp(1rem, 2.2vw, 1.5rem);
        line-height: 1.2;
    }

    .section-title {
        font-size: clamp(2.2rem, 5vw, 3.6rem);
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .paso-card {
        width: 100%;
        min-height: 220px;
        border-radius: var(--radio-responsive);
    }

    .paso-card.active {
        flex: none;
        min-height: 320px;
    }

    .paso-card.inactive {
        flex: none;
        min-width: unset;
    }

    .card-number {
        width: 64px;
        height: 64px;
        top: -28px;
        left: 22px;
        font-size: 2rem;
        border-width: 5px;
    }

    .paso-card.active .card-number {
        width: 46px;
        height: 46px;
        font-size: 1.45rem;
    }

    .card-narrow {
        padding: 2rem 1.1rem 1.15rem;
        gap: 0.9rem;
    }

    .narrow-label {
        font-size: clamp(1.7rem, 3.8vw, 2.6rem);
        line-height: 1.05;
    }

    .narrow-texto {
        font-size: clamp(1rem, 2.2vw, 1.25rem);
        line-height: 1.35;
    }

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

    .expanded-inner {
        gap: 1rem;
        align-items: flex-start;
    }

    .expanded-img {
        height: 190px;
    }

    .cards-wrapper-premios {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        min-height: auto;
    }

    .paso-card-premios {
        min-height: 230px;
        border-radius: var(--radio-responsive);
    }

    .paso-card-premios:last-child {
        grid-column: 1 / -1;
        width: min(100%, 520px);
        justify-self: center;
    }

    .card-narrow-premios {
        padding: 1.9rem 1rem 1rem;
        gap: 0.9rem;
    }

    .narrow-label-premios {
        font-size: clamp(1.55rem, 3.4vw, 2.3rem);
        line-height: 1;
    }

    .narrow-img-premios {
        width: min(260px, 100%);
    }
}

/* .participar-contenedor {
    font-family: 'Nunito', sans-serif;
    background: #f0f0f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem 2rem;
} */

/* ============================================
   SECCIÓN PRINCIPAL
   ============================================ */
.participar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--amarillo);
    padding: 3.5rem 2.5rem 3rem;
    width: 100%;
    /* max-width: 1200px; */
    position: relative;
    height: 100vh;
    overflow: hidden;
}



/* ============================================
   HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-family: var(--font-principal-bold);
    font-size: 30px;
    letter-spacing: 0.08rem;
    color: var(--verde);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
   /*  opacity: 0.85;*/
}

.section-title {
    font-family: var(--font-principal-bold);
    font-size: clamp(2.5rem, 6vw, 50px);
    color: var(--verde);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: none;
}

/* ============================================
   CARDS WRAPPER
   ============================================ */
.cards-wrapper {
    max-width: 1200px;
    display: flex;
    gap: 3rem;
    align-items: stretch;
    min-height: 360px;
    position: relative;
    z-index: 1;
}

/* ============================================
   CARD BASE
   ============================================ */
.paso-card {
    position: relative;
    border: 3px solid var(--verde);
    border-radius: var(--radio);
    cursor: pointer;
    transition: var(--transition);
    /* overflow: hidden; */
    flex-shrink: 0;

    /* Estado default: igual para todas */
    flex: 1 1 0;
    background: var(--blanco);
    /* box-shadow: 0 8px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1); */
}

.paso-card:hover:not(.active) {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* Estado ACTIVO */
.paso-card.active {
    flex: 0 0 56%;
    background: var(--amarillo-dark);
    cursor: default;
}

/* Estado INACTIVO (las otras cuando una está activa) */
.paso-card.inactive {
    flex: 0 0 18%;
    min-width: 110px;
    opacity: 0.85;
}

.paso-card.inactive:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ============================================
   NÚMERO DE PASO
   ============================================ */
.card-number {
    position: absolute;
    top: -40px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: var(--verde);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-principal-bold);
    font-size: 40px;
    font-weight: 400;
    z-index: 10;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.2); */
    border: 6px solid var(--amarillo);
    transition: var(--transition);
}

.paso-card.active .card-number {
    background: var(--verde);
    color: var(--amarillo);
    border-color: var(--amarillo);
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
    top: -30px;
}

/* ============================================
   ESTADO COMPRIMIDO (NARROW)
   ============================================ */
.card-narrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 2.5rem 0.8rem 1.2rem;
    transition: var(--transition);
}

.paso-card.active .card-narrow {
    display: none;
}

.narrow-img {
    max-width: 476px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0.5rem 1.5rem;
}

.narrow-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9) saturate(0.9);
}

.paso-card:hover .narrow-img img {
    transform: scale(1.05);
}

.narrow-label {
    font-family: var(--font-principal-bold);
    font-size: clamp(25px, 6vw, 30px);
    letter-spacing: 0.05em;
    color: var(--amarillo-dark);
    text-align: center;
    line-height: 1;
    margin-top: 0.6rem;
}
.narrow-texto {
    font-family: sans-serif;
    font-size: 20px;
    color: var(--verde);
    text-align: center;
    /* line-height: 1.4; */
    margin-top: 0.4rem;
}
/* .expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--amarillo);
    color: var(--verde-dark);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background 0.2s;
    line-height: 1;
}
 */
.paso-card:hover .expand-btn {
    transform: scale(1.12);
    background: #fff;
}

/* ============================================
   ESTADO EXPANDIDO
   ============================================ */
.card-expanded {
    display: none;
    height: 100%;
    padding: 2.5rem 1.8rem 1.5rem;
    position: relative;
    animation: fadeSlideIn 0.4s ease forwards;
}

.paso-card.active .card-expanded {
    display: flex;
    flex-direction: column;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.expanded-inner {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.expanded-text {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: sans-serif;
}

.card-title {
    font-family: var(--font-principal-bold);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--verde-dark);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-top: 0.3rem;
    text-align: center;
}

.card-desc {
    font-size: 18px;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.5;
    opacity: 0.85;
}

.card-link {
    display: inline-block;
    color: var(--verde);
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    /* text-underline-offset: 3px; */
    margin-top: 0.25rem;
    transition: opacity 0.2s;
}

.card-link:hover {
    opacity: 0.7;
}
.cont-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
}
.btn-verde {
    margin: 0 auto;
    display: inline-block;
    background: var(--verde);
    color: var(--amarillo);
    padding: 0.65rem 1.4rem;
    /* border-radius: 50px; */
    font-family: var(--font-principal-bold);
    font-size: 23px;
    letter-spacing: 0.09rem;
    text-decoration: none;
    margin-top: 0.5rem;
    width: fit-content;
    /* transition: transform 0.2s, box-shadow 0.2s; */
}
.btn-amarillo {
    margin: 0 auto;
    display: inline-block;
    background: var(--amarillo);
    color: var(--verde);
    padding: 0.65rem 1.4rem;
    /* border-radius: 50px; */
    font-family: var(--font-principal-bold);
    font-size: 23px;
    letter-spacing: 0.09em;
    text-decoration: none;
    margin-top: 0.5rem;
    width: fit-content;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-verde:hover {
    transform: translateY(-2px);
}

.expanded-img {
    flex: 0 0 42%;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
}

.expanded-img img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expanded-img:hover img {
    transform: scale(1.04);
}

/* Botón cerrar */
.close-btn {
    position: absolute;
    bottom: 12px;
    right: 16px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--negro);
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}

/* ============================================
   FOOTER TEXT
   ============================================ */
.footer-text {
    text-align: center;
    font-family: var(--font-principal-bold);
    font-weight: 800;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--negro);
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.footer-text span {
    color: var(--verde-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .participar-section {
        padding: 2.5rem 1.2rem 2rem;
        height: auto;
        min-height: 100vh;
    }

    .cards-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 2.7rem;
    }

    .paso-card {
        flex: none !important;
        min-width: unset !important;
        width: 100%;
        min-height: 90px;
        border-radius: var(--radio-responsive);
    }

    .paso-card.active {
        min-height: 380px;
    }

    /* En mobile el narrow es horizontal */
    .card-narrow {
        flex-direction: column;
        padding: 2.2rem 1rem 1rem;
        gap: 1rem;
    }
    .narrow-texto {
        display: none;
    }
    .narrow-img {
        width: 230px;
        height: 180px;
        /* flex: 0 0 80px; */
    }

    .narrow-label {
        margin-top: 16px;
        text-align: center;
        flex: 1;
        font-size: 1.2rem;
    }

    .expand-btn {
        margin-top: 0;
    }

    .expanded-inner {
        flex-direction: column;
    }

    .expanded-img {
        width: 100%;
        height: 160px;
        flex: none;
    }

    .paso-card.inactive {
        min-width: unset;
        opacity: 0.9;
    }
    .bt-card {
    font-size: 18px !important;
}
}
@media (max-height: 900px) {
    .participar-section {
        height: auto;
        min-height: 100vh;
    }
    /* .section-title {
        font-size: 45px;
    } */
}

/* card de premios */

.cards-wrapper-premios {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    min-height: 360px;
    position: relative;
    z-index: 1;
}
.paso-card-premios {
    position: relative;
    /* min-width: 500px; */
    min-width: 350px;
    border-radius: var(--radio);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    flex-shrink: 0;
    /* Estado default: igual para todas */
    flex: 1 1 0;
    background: var(--verde);
}
.section-eyebrow p {
    font-size: 30px;
}
.paso-card-premios:hover:not(.active) {
    transform: translateY(-4px);
}
.card-narrow-premios {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 2.5rem 0.8rem 1.2rem;
    transition: var(--transition);
}

.paso-card-premios.active .card-narrow-premios {
    display: none;
}

.narrow-img-premios {
    /* max-width: 476px; */
    max-width: 276px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.narrow-img-premios img {
    width: 90%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9) saturate(0.9);
}

.paso-card-premios:hover .narrow-img-premios img {
    transform: scale(1.05);
}

.narrow-label-premios {
    font-family: var(--font-principal-bold);
    font-size: 30px;
    letter-spacing: 0.05em;
    color: var(--blanco);
    text-align: center;
    line-height: 0.9;
    margin-top: 0.6rem;

}
.texto-amarillo {
    color: var(--amarillo);
}
@media (max-width: 768px) {
    .section-eyebrow {
        font-size: 25px;
        line-height: 1;
        margin-top: 10px;
    }
    .section-title {
        font-size: 40px;
    }
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 853px) {
    .cards-wrapper-premios {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        min-height: auto;
    }

    .paso-card-premios {
        min-height: 230px;
        border-radius: var(--radio-responsive);
    }

    .paso-card-premios:last-child {
        grid-column: 1 / -1;
        width: min(100%, 520px);
        justify-self: center;
    }

    .card-narrow-premios {
        padding: 1.9rem 1rem 1rem;
        gap: 0.9rem;
    }

    .narrow-label-premios {
        font-size: clamp(1.55rem, 3.4vw, 2.3rem);
        line-height: 1;
    }

    .narrow-img-premios {
        width: min(260px, 100%);
    }
}
@media (max-width: 1024px) {
    .paso-card {
        flex: none !important;
        min-width: unset !important;
    }
    .narrow-label {
        font-size: 30px;
    }
    
} 
@media (max-width: 1280px) {
    .narrow-label {
        font-size: 30px;
    }
    
} 
@media (max-width: 768px) {
    /* .participar-section {
        padding: 2.5rem 1.2rem 2rem;
        height: auto;
        min-height: 100vh;
    } */

    .cards-wrapper-premios {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: 2.7rem;
    }

    .paso-card-premios {
        flex: none !important;
        min-width: unset !important;
        width: 100%;
        min-height: 90px;
        border-radius: var(--radio-responsive);
    }

    .paso-card-premios.active {
        min-height: 380px;
    }

    /* En mobile el narrow es horizontal */
    .card-narrow-premios {
        flex-direction: column;
        padding: 2.2rem 1rem 1rem;
        gap: 1rem;
    }
    .narrow-label-premios {
        font-size: 30px;
    }
    .narrow-texto {
        display: none;
    }
    .narrow-img-premios {
        /* width: 230px;
        height: 180px; */
        /* flex: 0 0 80px; */
    }

    .narrow-label-premios {
        text-align: left;
        flex: 1;
        font-size: 1.2rem;
        text-align: center;
    }

    .expand-btn {
        margin-top: 0;
    }

    .expanded-inner {
        flex-direction: column;
    }

    .expanded-img {
        width: 100%;
        height: 160px;
        flex: none;
    }

    .paso-card-premios.inactive {
        min-width: unset;
        opacity: 0.9;
    }
}


/* fin card de premios */



/**************************
        FOOTER
***************************/
.footer {
  position: relative;
  width: 100%;
  color: white;
  font-family: sans-serif;
  background-color: var(--verde-dark);
  /*  background: url('../img/pattern/contenedor-footer.svg') no-repeat; */
  background-size: cover;
  padding-top: 30px;
  z-index: 1;
}

.footer-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 16px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.footer-column img {
  max-width: 160px;
  margin-bottom: 10px;
}

.footer-column h2 {
  font-family: var(--font-principal-bold);
  color: var(--amarillo);
  /* margin-bottom: 10px; */
  margin: 0 0 10px 0px;
  font-size: 30px;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  line-height: 1.5;
}
.social {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
   
}
.terminos {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
}
.parrafo-razon {
  font-family: 'inter', sans-serif;
  color: #EFB810;
  font-size: 14px;

}

.menu-footer ul {
  list-style: none;
  padding: 0;
}

.menu-footer li {
  margin-bottom: 5px;
  transition: transform 0.3s;
}

.menu-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.menu-footer a:hover {
  color: var(--amarillo);
}

.menu-footer li:hover {
  transform: translateX(8px);
}

.social-iconos {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.social-iconos a img {
  width: 35px;
  transition: transform 0.3s, filter 0.3s;
}

.social-iconos a:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(383%) hue-rotate(11deg);
  transform: scale(1.2);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0;
}

.links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  font-family: var(--font-principal-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 18px;
  font-weight: 400;
  
}

.links a:hover {
  color: var(--amarillo);
  transform: translateX(8px);
}

.reclamaciones img {
  width: 160px;
  margin-top: 10px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid white;
  padding-top: 10px;
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
  /* color: var(--verde); */
  color: #1BAD6E;
}

.footer-bottom a:hover {
  color: var(--amarillo);
}

.phone-number {
  font-family: var(--font-principal-bold);
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-column.contact .phone-number {
  font-size: 14px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.footer-column.contact .phone-number:hover {
  text-decoration: none;
  color: var(--dorado);
}

.footer-image-svg {
  width: 100%;
  display: block;
  margin-top: -1px;
  /* para evitar espacios indeseados */
  line-height: 0;
}

.footer-image-svg img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin: 10px 0;
  }

  .social-iconos {
    justify-content: center;
  }
  .terminos {
    align-items: center;
  }
  .links {
    align-items: center;
  }

  .footer-bottom {
    font-size: 14px;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .footer-column p,
  .footer-column a {
  font-size: 15px;
  }
}