.footer {
    background: black;
    padding: 1.5em 0;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .footer .footer-content {
        flex-wrap: wrap;
    }

    .footer .footer-content .social-icons {
        justify-content: flex-start !important;
    }
}

.footer__title,
.footer__text {
    color: white;
    margin: 0;
}

.footer__title {
    font-weight: 700;
}

.footer__text {
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.footer__text span {
    margin: 0.5em 0;
    display: block;
}

.footer .footer-social {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .footer .footer-social {
        order: -1;
        margin: 1em 0;
        display: flex;
        flex-direction: row;
    }

    .footer .footer-social .iso-container {
        margin-top: 0;
    }
}

.footer .footer-social .pdp-img {
    max-width: 116px;
    height: 67px;
}

.footer .social-icons {
    display: flex;
    justify-content: flex-end;
}

.footer__logo {
    max-width: 237px;
    margin-top: 2em;
}

.footer__link {
    display: inline-block;
    width: 58px;
    height: 50px;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1em;
}

.footer__link img {
    width: 50%;
}

.footer .iso-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 1em;
}

.footer .iso-certification {
    -width: 69px;
    height: 70px;
}

@media (max-width: 767px) {
    .footer .language-selector-container {
        order: -1;
        margin: 1em 0;
    }
}

.footer .language-selector-container .language-selector {
    border: solid 2px #d02c2f;
    background-color: transparent;
    padding: 0.7em;
    color: white;
    font-family: "avenir";
    outline: none;
    min-width: 200px;
    max-width: 100%;
    min-height: 48px;
}

.footer .language-selector-container .language-selector option {
    color: #707070;
}

.footer .politicas {
    color: white;
    text-align: right;
    font-size: 0.6rem;
    width: 100%;
}

@media (max-width: 767px) {
    .footer .footer-info {
        -width: 50%;
        order: 0;
    }

    .footer .footer-social {
        -width: 50%;
        order: 1;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

@media (max-width: 369px) {
    .footer .footer-info {
        width: 100%;
    }

    .footer .footer-social {
        width: 100%;
        justify-content: flex-start;
    }

    .footer .politicas {
        text-align: left;
    }
}

body {
    background-color: #f0f0f0 !important;
}

.faq-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    flex-wrap: wrap;
    padding: 162px 80px 80px 80px;
    /* clave para mobile */
}

.faq-container-elements {
    display: flex;
    gap: 200px;
}

.faq-section {
    flex: 2;
}

.support-form {
    flex: 1;
    position: sticky;
    top: 7rem;
    align-self: flex-start;
    border: 1px solid #ccc;
    min-width: 320px;
    width: 440px;
    border-radius: 8px;
    padding: 1rem;
    background-color: #ffffff;
}

@media (max-width: 905px) {
    .faq-container-elements {
        gap: 40px;
    }

    .support-form {
        position: inherit;
        top: unset;
    }
}

@media (max-width: 763px) {
    .faq-container-elements {
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .faq-container {
        padding: 100px 10px 10px 10px;
        height: unset;
    }

    .faq-container-elements {
        max-width: 95vw;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .support-form {
        max-width: 95vw;
    }
}

.faq-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-section p {
    color: #555;
    margin-bottom: 20px;
}

.btn-send {
    padding: 10px 20px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
}

details {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
}

summary {
    font-weight: bold;
    cursor: pointer;
}

.support-form h4 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hidden {
    display: none;
}

button {
    padding: 10px 20px;
    background-color: #c00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


details summary {
    position: relative;
    padding-right: 20px;
    /* espacio para el caret */
    list-style: none;
    /* quita el caret nativo */
}

details summary::-webkit-details-marker {
    display: none;
    /* oculta caret nativo en WebKit */
}

details summary::after {
    content: "∧";
    /* o "▼" o usar SVG si querés */
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(0deg);
    transition: transform 0.2s;
}

details[open] summary::after {
    transform: rotate(180deg);
    /* cambia dirección al abrir */
}

.show-success {
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
    box-sizing: border-box;
    appearance: none;
}

form select {
    color: #000 !important;
}

.danger {
    color: red;
    font-weight: bold;
}

textarea, input {
    color: #000 !important;
}

@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}