/* HERO */
#container {
    width: 1200px;
    margin-inline: auto;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
    box-sizing: border-box;
}

#container #logo {
    width: 125px;
    position: absolute;
    top: 21px;
    left: 21px;
}

#container #character {
    width: 270px;
    height: auto;
    opacity: 0;
    transform: translateX(-350px);
    position: relative;
    aspect-ratio: 1.0;
    object-fit: contain;
}

#container #text {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 65px;
    letter-spacing: -3.8px;
    text-align: center;
    color: rgb(0, 17, 34);
    opacity: 0;
    transform: translateY(100px);
    max-width: 663px;
    line-height: 1.1;
}

#container #additional-section {
    text-align: center;
    margin-top: 0px;
    font-family: Inter, sans-serif;
    color: rgb(136, 136, 136);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(50px);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.7px;
    width: 100%;
}

#container #logos-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px 100px;
    box-sizing: border-box;
}

#container #logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    opacity: 0;
    transform: translateY(50px);
    width: 100%;
    max-width: 1000px;
    flex-wrap: wrap;
    /* margin-top: 60px; */
}

#container .logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

#container .logo-icon {
    width: 36px;
    height: 36px;
    color: rgb(153, 153, 153);
}

#container .logo-text {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -2.2px;
    color: rgb(153, 153, 153);
    line-height: 1;
}

#container button {
    margin-top: 20px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background-color: rgb(34, 34, 34);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0.7px 0.7px -0.6px rgba(0, 0, 0, 0.15),
        0 1.8px 1.8px -1.2px rgba(0, 0, 0, 0.15),
        0 3.6px 3.6px -1.9px rgba(0, 0, 0, 0.14),
        0 6.9px 6.9px -2.5px rgba(0, 0, 0, 0.13),
        0 13.6px 13.6px -3.1px rgba(0, 0, 0, 0.11),
        0 30px 30px -3.8px rgba(0, 0, 0, 0.05);
}

#additional-section button {
  margin-top: 20px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background-color: rgb(34, 34, 34);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;  /* Evita que se seleccione el texto */
  box-shadow: 0 0.7px 0.7px -0.6px rgba(0, 0, 0, 0.15),
              0 1.8px 1.8px -1.2px rgba(0, 0, 0, 0.15),
              0 3.6px 3.6px -1.9px rgba(0, 0, 0, 0.14),
              0 6.9px 6.9px -2.5px rgba(0, 0, 0, 0.13),
              0 13.6px 13.6px -3.1px rgba(0, 0, 0, 0.11),
              0 30px 30px -3.8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

/* Cambio de color al pasar el cursor sobre el botón */
#additional-section button:hover {
  background-color: rgb(75, 75, 75); /* Puedes ajustar el color según prefieras */
}


@media (min-width: 810px) and (max-width: 1199px) {
    #container {
        width: 810px;
        padding: 100px 50px;
        gap: 50px;
    }

    #container #text {
        font-size: 65px;
    }

    #container #logos-section {
        padding: 80px 40px;
    }
}

@media (max-width: 809px) {
    #container {
        width: 390px;
        padding: 30px 30px 0;
        gap: 0;
        min-height: 576px;
    }

    #container #character {
        width: 179px;
        /* 46% de 390px */
        height: 121px;
        /* 21% de 576px */
        border-radius: 26px;
        padding: 0;
        z-index: 1;
        aspect-ratio: 1.0;
    }

    #container #text {
        font-size: 46px;
        width: 298px;
        padding: 20px 0 0;
        letter-spacing: -3.8px;
    }

    #container #additional-section {
        font-size: 17px;
        line-height: 1.3;
        padding: 0 20px;
    }

    #container #logos-section {
        padding: 22px 20px;
    }

    #container #logos {
        gap: 20px;
        margin-top: 30px;
    }

    #container .logo-text {
        font-size: 24px;
    }
}

/* Como lo hacemos - 1 */

.como1 {
    width: 100%;
}

.como1 .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    background-color: #f7f7f7;
    padding-top: 0px;
}

.como1 .container .content {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.como1 .container h1 {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2em;
    text-align: center;
    opacity: 0;
    transform: translateX(-20px);
}


.como1 .container h2 {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2em;
    text-align: center;
    opacity: 0;
    transform: translateX(-20px);
}

.como1 .container h2 {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2em;
    text-align: center;
    opacity: 0;
    transform: translateX(-20px);
}


.como1 .container p {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #333333;
    line-height: 1.2em;
    letter-spacing: -2px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-20px);
}

.como1 .container .animatespring {
    animation: springIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes springIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    60% {
        transform: translateX(5px);
    }

    80% {
        transform: translateX(-2px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1199px) {
    .como1 .container h2 {
        font-size: 50px;
    }

    .como1 .container p {
        font-size: 35px;
    }
}

@media (max-width: 809px) {
    .como1 .container .content {
        padding: 0 30px;
    }

    .como1 .container h2 {
        font-size: 36px;
        text-align: left;
    }

    .como1 .container p {
        font-size: 31px;
        text-align: left;
        margin: 0;
    }
}

/* Reasons */
.reasons {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #333;
    background: #f7f7f7;
    width: 100%;
}

.reasons .section {
    max-width: 900px;
    margin-inline: auto;
    padding: 80px 20px;
    background: #f7f7f7;
}

.reasons .section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reasons .section .content-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.reasons .section .content-grid:last-child {
    margin-bottom: 0;
}

.reasons .section .placeholder {
    width: 100%;
    aspect-ratio: 13/11;
    background-color: #e0e0e0;
    border-radius: 20px;
    /* Añadir estas propiedades */
    overflow: hidden;
    position: relative;
}

.reasons .section .placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Esto equivale a "Fill" */
    object-position: center;
    /* Esto equivale a "Center" */
}


.reasons .section .img-container {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
}

.reasons .section .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.reasons .section h2 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #333333;
}

.reasons .section .juntos {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #333333;
    font-size: 47px;
    letter-spacing: -3.4px;
    line-height: 1.3;
}

.reasons .section .highlight {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #333333;
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 1.3;
}

.reasons .section .description {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    color: #888888;
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.reasons .section .info {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #888888;
    font-size: 22px;
    letter-spacing: -0.5px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.reasons .section .buttons {
    display: flex;
    gap: 15px;
}

.reasons .section .button {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s;
}

.reasons .section .button:hover {
    transform: translateY(-2px);
}

.reasons .section .button-primary {
    background: #222;
    color: white;
}

.reasons .section .button-secondary {
    background: #ebebeb;
    color: #333;
}

/* Tablet */
@media (max-width: 1199px) {

    .reasons .section h2,
    .reasons .section .highlight {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .reasons .section .juntos {
        font-size: 42px;
    }

    .reasons .section .info {
        font-size: 20px;
    }

    .reasons .section .description {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 809px) {
    .reasons .section {
        padding: 25px 20px;
    }

    .reasons .section .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .reasons .section .content-grid .placeholder,
    .reasons .section .content-grid .img-container {
        grid-row: 1;
    }

    .reasons .section h2,
    .reasons .section .highlight {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .reasons .section .juntos {
        font-size: 36px;
    }

    .reasons .section .info {
        font-size: 18px;
    }

    .reasons .section .description {
        font-size: 15px;
    }

    .reasons .section .section {
        padding: 40px 20px;
    }
}

/* Como lo hacemos */
.how {
    color: #333;
    background-color: #fff;
    width: 100%;
}

.how .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 32, 32, 0.85);
    z-index: 999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.how .lightbox.active {
    display: flex;
    opacity: 1;
}

.how .lightbox-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.how .lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.how .lightbox-close {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.how .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 16px;
}

.how .header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .how .header {
        display: grid;
        grid-template-columns: 1fr;
    }

    .how .id-card-container {
        order: -1;
        /* This moves it to the top */
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .how .header {
        grid-template-columns: 1fr 1fr;
    }
}

.how h2 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -2.1px;
    color: #001122;
    margin-bottom: 16px;
}

.how .badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.how .badge {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.how .badge:hover {
    background-color: #e5e7eb;
}

.how .badge.active {
    background-color: #e5e7eb;
}

.how .feature {
    margin-bottom: 32px;
}

.how .feature h3 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.how .feature p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.how .id-card-container {
    display: flex;
    justify-content: center;
    height: 100%;
    margin-top: -55px;
}

.how .id-card {
    width: 285px;
    transform-origin: top center;
    cursor: grab;
    touch-action: none;
}

.how .id-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.how .id-card.dragging {
    cursor: grabbing;
}

.how .video-player {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 48px;
}

.how .video-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.how .video-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how .video-icon:hover {
    transform: scale(1.05);
}

.how .video-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    color: #111827;
}

.how .video-text p {
    color: #6b7280;
    margin: 8px 0 0 0;
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ */
.faq {
    width: 100%;
}

.faq .faq-section {
    width: 100%;
    background-color: #f7f7f7;
    padding: 60px 0;
}

.faq .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq h2 {
    text-align: center;
    color: #001122;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 60px;
}

.faq .faq-item {
    background-color: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq .faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq .faq-question h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #001122;
}

.faq .faq-toggle {
    margin-right: 24px;
    width: 16px;
    height: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq .faq-toggle::before,
.faq .faq-toggle::after {
    content: '';
    position: absolute;
    background-color: black;
    transition: transform 0.3s ease;
}

.faq .faq-toggle::before {
    width: 16px;
    height: 2px;
    top: 7px;
}

.faq .faq-toggle::after {
    width: 2px;
    height: 16px;
    left: 7px;
}

.faq .faq-answer {
    padding: 0 20px 0 60px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq .faq-answer p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px 60px;
}

.faq .faq-item.active .faq-answer p {
    opacity: 1;
}

@media (max-width: 809px) {
    .faq .faq-container {
        padding: 0 20px;
    }
}

/* Tarifas */
.tarifas {
    width: 100%;
}

.tarifas .container {
    max-width: 1200px;
    margin-inline: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tarifas .header {
    padding: 86px 40px 0;
    text-align: center;
    width: 100%;
}

.tarifas .header h2 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2.1px;
    color: rgb(0, 17, 34);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

.tarifas .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 68px 40px;
    flex-wrap: nowrap;
    /* Cambiado de wrap a nowrap */
    max-width: 1000px;
    width: 100%;
}

.tarifas .card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0.8px 2.4px,
        rgba(0, 0, 0, 0.05) 0px 2.4px 7.2px,
        rgba(0, 0, 0, 0.05) 0px 6.4px 19.2px,
        rgba(0, 0, 0, 0.05) 0px 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transform-origin: center;
    transform: scale(1);
    transition: all 0.3s ease;
    z-index: 1;
}

.tarifas .card:hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}



.tarifas .card:nth-child(2) {
    animation-delay: 0.2s;
}

.tarifas .card:nth-child(3) {
    animation-delay: 0.4s;
}

.tarifas .plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.tarifas .price {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -3px;
    color: #333;
}

.tarifas .features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tarifas .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.tarifas .check-icon {
    width: 24px;
    height: 24px;
    fill: #333;
}

.tarifas .btn {
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    min-width: 120px;
}

.tarifas .btn-light {
    background-color: #f2f2f2;
    color: #111;
}

.tarifas .btn-dark {
    background-color: #222;
    color: white;
    box-shadow: 0 0.7px 0.7px rgba(0, 0, 0, 0.15),
        0 1.8px 1.8px rgba(0, 0, 0, 0.15),
        0 3.6px 3.6px rgba(0, 0, 0, 0.15),
        0 6.9px 6.9px rgba(0, 0, 0, 0.15),
        0 13.6px 13.6px rgba(0, 0, 0, 0.15),
        0 30px 30px rgba(0, 0, 0, 0.05);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1199px) {
    .tarifas .container {
        max-width: 810px;
    }

    .tarifas .pricing-cards {
        flex-wrap: wrap;
        /* Permite wrap solo en tablets */
    }

    .tarifas .card {
        flex: 0 0 calc(50% - 20px);
        /* Ajusta dos tarjetas por fila */
        min-width: 300px;
    }
}

@media (max-width: 809px) {
    .tarifas .container {
        max-width: 390px;
    }

    .tarifas .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .tarifas .header h2 {
        font-size: 40px;
    }

    .tarifas .card {
        flex: 0 0 100%;
        /* Una tarjeta por fila */
        max-width: 320px;
    }
}

/* Bottom */
@keyframes springFadeInShort {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes springFadeInLong {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bottom {
    width: 100%;
    opacity: 0;
}

.animFadeIn {
    opacity: 0;
}

.bottom.appear,
.animFadeIn.appear {
    animation: springFadeInShort 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.bottom .hero h2 {
    opacity: 0;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -2.1px;
    color: #001122;
}

.bottom.appear .hero h2 {
    animation: springFadeInShort 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.bottom .highlight {
    color: #ff2d04;
    opacity: 0;
}

.bottom.appear .highlight {
    animation: springFadeInLong 6.5s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bottom .hero {
    text-align: center;
    padding: 86px 40px;
}

.bottom .btn {
    background-color: #222;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bottom .btn:hover {
    background-color: #444;
}

.bottom .footer {
    background-color: #222;
    color: #e6e6e6;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom .footer p {
    margin: 0;
}

.bottom .social-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: opacity 0.3s ease;
}

.bottom .social-links a:hover {
    opacity: 0.8;
}

@media (max-width: 809px) {
    .bottom h2 {
        font-size: 32px;
    }

    .bottom .footer {
        flex-direction: column;
        gap: 10px;
        padding: 30px;
    }
}













/* Contenedor principal del footer */
.footer-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo alineado a la izquierda */
.footer-container img {
  width: 80px;
  padding-bottom: 16px;
  /* Quitar margin: 0 auto para que quede a la izquierda */
  margin: 0;
}

/* Contenedor para la descripción y columnas */
.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}

/* Descripción y redes sociales */
.footer-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  row-gap: 16px;
}

.footer-description span,
.footer-description p {
  text-align: left; /* Alinea el texto a la izquierda */
  margin: 0;
}

/* Lista de redes sociales */
.footer-social {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social a {
  color: #4a5568; /* Aproximado a text-gray-600 */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #3182ce; /* Cambia a un tono azul al pasar el cursor */
}

/* Sección de enlaces (Servicios, Recursos, Compañía) */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.footer-links div p {
  font-size: 1.25em; /* Aproximadamente text-xl */
  font-weight: bold;
  padding-bottom: 8px;
  margin: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

/* Pie de página (parte inferior) */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 0px solid #000;
  margin-top: 200px;
  max-width: 1280px;
  margin: 10px auto 0;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 36px;
}

.footer-bottom p {
  text-align: center;
  margin: 0;
}

.footer-bottom span a {
  text-decoration: none;
  color: inherit;
}

/* Ajustes responsivos para pantallas medianas en adelante */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
  .footer-description {
    width: 20%;
  }
  .footer-links {
    width: 75%;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
  .footer-bottom p {
    text-align: left;
  }
}
