@media screen and (max-width: 479px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        z-index: 9999;
    }

    .container {
        max-width: 350px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button {
        display: inline-block;
        font-family: 'Outfit';
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 34px;
        line-height: 34px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    dialog {
        width: 80%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    input {
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #333;
        width: 100%;
        /* El ancho ocupa todo el contenedor .input-field */
        border: 2px solid #333;
        border-radius: 5px;
        height: 35px;
        line-height: 35px;
        box-sizing: border-box;
        /* Asegura que bordes y padding no excedan el ancho */
        padding: 0;
        /* Elimina cualquier relleno interno */
        margin: 0;
        /* Alineación precisa */
    }

    .label-checkbox {
        font-size: 15px;
        font-weight: 400;
    }

    input[type="checkbox"] {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: #f12a2a;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .input-field {
        width: 100%;
        margin-top: .5rem;
    }

    .input-box {
        display: inline-flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        padding: 5% 0;
    }

    nav {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    section {
        background-size: cover;
        text-align: center;
        height: auto;
    }

    table {
        width: 100%;
        border-spacing: 0;
    }

    h1 {
        font-size: 5.5rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h2 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h3 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    footer {
        background-image: url(../image/arcobit_background3.jpg);
        background-size: cover;
        position: relative;
        text-align: center;
        display: flex;
        height: 100vh;
    }

    /*::::::::::::::: ELEMENTOS DE EDICIÓN :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d6d6d6;
        padding: .5rem 0;
    }

    .nav-menuIcon {
        display: inline-block;
    }

    .nav_logo {
        display: inline-block;
        width: 165px;
    }

    .nav_a {
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease-out;
    }

    .navbar {
        background-color: #ffffff;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1.5rem;
        top: 60px;
        left: 20px;
        width: 100px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .navbar.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    ._colorBlog:hover {
        color: #b07b50;
    }

    ._colorAssistance:hover {
        color: #cf0466;
    }

    ._colorSuite:hover {
        color: #6bacf9;
    }

    ._colorStudio:hover {
        color: #f18b26;
    }

    ._colorNosotros:hover {
        color: #9e9e9e;
    }

    .btn-whatsapp {
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        background-color: #25d366;
        display: none;
        padding: 0 16px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-whatsapp:hover {
        background-color: #34e777;
    }

    .btn-whatsapp_mobile {
        color: #fff;
        background-color: #25d366;
        display: inline-block;
        padding: 0 8px;
        height: 28px;
        line-height: 28px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .svg-whatsapp {
        width: 20px;
        height: 20px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    /*:::::::::::::: BOTONES - ENLACES ::::::::::::::::::*/
    .btn {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    /*::::::::::::::: CARDS :::::::::::::::::::*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    /*::::::::::::::: SECCIÓN FOOTER :::::::::::::::::::*/
    .pictureBox-footer {
        display: inline-block;
        width: 65%;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    ._colFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        gap: 1rem;
    }

    .textBox-footer {
        text-align: center;
    }

    ._footerTitle {
        font-size: 4.5rem;
        color: #333;
        padding-bottom: 20px;
    }

    ._footerText {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    footer .social_a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 2%;
        transition: transform 0.3s ease-in-out;
    }

    footer .social_a:hover {
        transform: scale(1.1);
    }

    ._backgroundFooter-copyright {
        background-color: #ffffff42;
    }

    .footerWrapper-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid #a4a4a4;

    }

    .copyrightBox-link {
        display: flex;
        gap: 1rem;
    }

    .copyright_a {
        font-weight: 600;
        color: #16699e;
        transition: color 0.2s ease-out;
    }

    .copyright_a:hover {
        color: #333;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .copyright-text {
        font-weight: 500;
        color: #333;
        margin: 0;
    }

     /*:::::::::: BANNER COOKIES ::::::::::::*/
     .bannerInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #393939c2;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        z-index: 9999;
    }

    .bannerText {
        margin: 0;
        padding-bottom: 10px;
    }

    .link-cookiesInfo {
        color: #ffd700;
    }

    .btn-accepts {
        background-color: #e9a434;
    }

    .btn-accepts:hover {
        background-color: #f5b449;
    }

    .btn-rejects {
        background-color: #989898;
        margin-left: 2px;
    }

    .btn-rejects:hover {
        background-color: #b8b8b8;
        margin-left: 2px;
    }

    /* Mostrar con fade-in (ya lo tienes) */
    #cookie-banner {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    #cookie-banner.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Ocultar con fade-out */
    #cookie-banner.fade-out {
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        z-index: 9999;
    }

    .container {
        max-width: 700px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button {
        display: inline-block;
        font-family: 'Outfit';
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 34px;
        line-height: 34px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    dialog {
        width: 80%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    input {
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #333;
        width: 100%;
        /* El ancho ocupa todo el contenedor .input-field */
        border: 2px solid #333;
        border-radius: 5px;
        height: 35px;
        line-height: 35px;
        box-sizing: border-box;
        /* Asegura que bordes y padding no excedan el ancho */
        padding: 0;
        /* Elimina cualquier relleno interno */
        margin: 0;
        /* Alineación precisa */
    }

    .label-checkbox {
        font-size: 15px;
        font-weight: 400;
    }

    input[type="checkbox"] {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: #f12a2a;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .input-field {
        width: 100%;
        margin-top: .5rem;
    }

    .input-box {
        display: inline-flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        padding: 5% 0;
    }

    nav {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    section {
        background-size: cover;
        text-align: center;
        height: auto;
    }

    table {
        width: 100%;
        border-spacing: 0;
    }

    h1 {
        font-size: 5.5rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h2 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h3 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    footer {
        background-image: url(../image/arcobit_background3.jpg);
        background-size: cover;
        position: relative;
        text-align: center;
        display: flex;
        height: 100vh;
    }

    /*::::::::::::::: ELEMENTOS DE EDICIÓN :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d6d6d6;
        padding: .5rem 0;
    }

    .nav-menuIcon {
        display: inline-block;
    }

    .nav_logo {
        display: inline-block;
        width: 230px;
    }

    .nav_a {
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease-out;
    }

    .navbar {
        background-color: #ffffff;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1.5rem;
        top: 60px;
        left: 20px;
        width: 100px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .navbar.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    ._colorBlog:hover {
        color: #b07b50;
    }

    ._colorAssistance:hover {
        color: #cf0466;
    }

    ._colorSuite:hover {
        color: #6bacf9;
    }

    ._colorStudio:hover {
        color: #f18b26;
    }

    ._colorNosotros:hover {
        color: #9e9e9e;
    }

    .btn-whatsapp {
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        background-color: #25d366;
        display: none;
        padding: 0 16px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-whatsapp:hover {
        background-color: #34e777;
    }

    .btn-whatsapp_mobile {
        color: #fff;
        background-color: #25d366;
        display: inline-block;
        padding: 0 8px;
        height: 35px;
        line-height: 35px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .svg-whatsapp {
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    /*:::::::::::::: BOTONES - ENLACES ::::::::::::::::::*/
    .btn {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    /*::::::::::::::: CARDS :::::::::::::::::::*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    /*::::::::::::::: SECCIÓN FOOTER :::::::::::::::::::*/
    .pictureBox-footer {
        display: inline-block;
        width: 65%;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    ._colFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        gap: 1rem;
    }

    .textBox-footer {
        text-align: center;
    }

    ._footerTitle {
        font-size: 4.5rem;
        color: #333;
        padding-bottom: 20px;
    }

    ._footerText {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    footer .social_a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 2%;
        transition: transform 0.3s ease-in-out;
    }

    footer .social_a:hover {
        transform: scale(1.1);
    }

    ._backgroundFooter-copyright {
        background-color: #ffffff42;
    }

    .footerWrapper-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid #a4a4a4;

    }

    .copyrightBox-link {
        display: flex;
        gap: 1rem;
    }

    .copyright_a {
        font-weight: 600;
        color: #16699e;
        transition: color 0.2s ease-out;
    }

    .copyright_a:hover {
        color: #333;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .copyright-text {
        font-weight: 500;
        color: #333;
        margin: 0;
    }

    /*:::::::::: BANNER COOKIES ::::::::::::*/
    .bannerInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #393939c2;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        z-index: 9999;
    }

    .bannerText {
        margin: 0;
        padding-bottom: 10px;
    }

    .link-cookiesInfo {
        color: #ffd700;
    }

    .btn-accepts {
        background-color: #e9a434;
    }

    .btn-accepts:hover {
        background-color: #f5b449;
    }

    .btn-rejects {
        background-color: #989898;
        margin-left: 2px;
    }

    .btn-rejects:hover {
        background-color: #b8b8b8;
        margin-left: 2px;
    }

    /* Mostrar con fade-in (ya lo tienes) */
    #cookie-banner {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    #cookie-banner.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Ocultar con fade-out */
    #cookie-banner.fade-out {
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        z-index: 9999;
    }

    .container {
        max-width: 735px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button {
        display: inline-block;
        font-family: 'Outfit';
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 34px;
        line-height: 34px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    dialog {
        width: 80%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    input {
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #333;
        width: 100%;
        /* El ancho ocupa todo el contenedor .input-field */
        border: 2px solid #333;
        border-radius: 5px;
        height: 35px;
        line-height: 35px;
        box-sizing: border-box;
        /* Asegura que bordes y padding no excedan el ancho */
        padding: 0;
        /* Elimina cualquier relleno interno */
        margin: 0;
        /* Alineación precisa */
    }

    .label-checkbox {
        font-size: 15px;
        font-weight: 400;
    }

    input[type="checkbox"] {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: #f12a2a;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .input-field {
        width: 100%;
        margin-top: .5rem;
    }

    .input-box {
        display: inline-flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        padding: 5% 0;
    }

    nav {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    section {
        background-size: cover;
        text-align: center;
        height: auto;
    }

    table {
        width: 100%;
        border-spacing: 0;
    }

    h1 {
        font-size: 5.5rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h2 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h3 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    footer {
        background-image: url(../image/arcobit_background3.jpg);
        background-size: cover;
        position: relative;
        text-align: center;
        display: flex;
        height: 100vh;
    }

    /*::::::::::::::: ELEMENTOS DE EDICIÓN :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d6d6d6;
        padding: .5rem 0;
    }

    .nav-menuIcon {
        display: inline-block;
    }

    .nav_logo {
        display: inline-block;
        width: 260px;
    }

    .nav_a {
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease-out;
    }

    .navbar {
        background-color: #ffffff;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1.5rem;
        top: 60px;
        left: 20px;
        width: 100px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .navbar.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    ._colorBlog:hover {
        color: #b07b50;
    }

    ._colorAssistance:hover {
        color: #cf0466;
    }

    ._colorSuite:hover {
        color: #6bacf9;
    }

    ._colorStudio:hover {
        color: #f18b26;
    }

    ._colorNosotros:hover {
        color: #9e9e9e;
    }

    .btn-whatsapp {
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        background-color: #25d366;
        display: none;
        padding: 0 16px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-whatsapp:hover {
        background-color: #34e777;
    }

    .btn-whatsapp_mobile {
        color: #fff;
        background-color: #25d366;
        display: inline-block;
        padding: 0 8px;
        height: 40px;
        line-height: 40px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .svg-whatsapp {
        width: 28px;
        height: 28px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    /*:::::::::::::: BOTONES - ENLACES ::::::::::::::::::*/
    .btn {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    /*::::::::::::::: CARDS :::::::::::::::::::*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    /*::::::::::::::: SECCIÓN FOOTER :::::::::::::::::::*/
    .pictureBox-footer {
        display: inline-block;
        width: 65%;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    ._colFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        gap: 1rem;
    }

    .textBox-footer {
        text-align: center;
    }

    ._footerTitle {
        font-size: 4.5rem;
        color: #333;
        padding-bottom: 20px;
    }

    ._footerText {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    footer .social_a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 2%;
        transition: transform 0.3s ease-in-out;
    }

    footer .social_a:hover {
        transform: scale(1.1);
    }

    ._backgroundFooter-copyright {
        background-color: #ffffff42;
    }

    .footerWrapper-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid #a4a4a4;

    }

    .copyrightBox-link {
        display: flex;
        gap: 1rem;
    }

    .copyright_a {
        font-weight: 600;
        color: #16699e;
        transition: color 0.2s ease-out;
    }

    .copyright_a:hover {
        color: #333;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .copyright-text {
        font-weight: 500;
        color: #333;
        margin: 0;
    }

    /*:::::::::: BANNER COOKIES ::::::::::::*/
    .bannerInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #393939c2;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        z-index: 9999;
    }

    .bannerText {
        margin: 0;
        padding-bottom: 10px;
    }

    .link-cookiesInfo {
        color: #ffd700;
    }

    .btn-accepts {
        background-color: #e9a434;
    }

    .btn-accepts:hover {
        background-color: #f5b449;
    }

    .btn-rejects {
        background-color: #989898;
        margin-left: 2px;
    }

    .btn-rejects:hover {
        background-color: #b8b8b8;
        margin-left: 2px;
    }

    /* Mostrar con fade-in (ya lo tienes) */
    #cookie-banner {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    #cookie-banner.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Ocultar con fade-out */
    #cookie-banner.fade-out {
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        z-index: 9999;
    }

    .container {
        max-width: 930px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button {
        display: inline-block;
        font-family: 'Outfit';
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 34px;
        line-height: 34px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    dialog {
        width: 80%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    input {
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #333;
        width: 100%;
        /* El ancho ocupa todo el contenedor .input-field */
        border: 2px solid #333;
        border-radius: 5px;
        height: 35px;
        line-height: 35px;
        box-sizing: border-box;
        /* Asegura que bordes y padding no excedan el ancho */
        padding: 0;
        /* Elimina cualquier relleno interno */
        margin: 0;
        /* Alineación precisa */
    }

    .label-checkbox {
        font-size: 15px;
        font-weight: 400;
    }

    input[type="checkbox"] {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: #f12a2a;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .input-field {
        width: 100%;
        margin-top: .5rem;
    }

    .input-box {
        display: inline-flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        padding: 5% 0;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    section {
        background-size: cover;
        text-align: center;
        height: auto;
    }

    table {
        width: 100%;
        border-spacing: 0;
    }

    h1 {
        font-size: 5.5rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h2 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h3 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    footer {
        background-image: url(../image/arcobit_background3.jpg);
        background-size: cover;
        position: relative;
        text-align: center;
        display: flex;
        height: 100vh;
    }

    /*::::::::::::::: ELEMENTOS DE EDICIÓN :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d6d6d6;
        padding: .5rem 0;
    }

    .nav-menuIcon {
        display: none;
    }

    .nav_logo {
        display: inline-block;
        width: 200px;
    }

    .nav_a {
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease-out;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    ._colorBlog:hover {
        color: #b07b50;
    }

    ._colorAssistance:hover {
        color: #cf0466;
    }

    ._colorSuite:hover {
        color: #6bacf9;
    }

    ._colorStudio:hover {
        color: #f18b26;
    }

    ._colorNosotros:hover {
        color: #9e9e9e;
    }

    .btn-whatsapp {
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        background-color: #25d366;
        display: inline-block;
        padding: 0 16px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-whatsapp:hover {
        background-color: #34e777;
    }

    .btn-whatsapp_mobile {
        color: #fff;
        background-color: #25d366;
        display: none;
        padding: 0 8px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .svg-whatsapp {
        width: 22px;
        height: 22px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    /*:::::::::::::: BOTONES - ENLACES ::::::::::::::::::*/
    .btn {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    /*::::::::::::::: CARDS :::::::::::::::::::*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    /*::::::::::::::: SECCIÓN FOOTER :::::::::::::::::::*/
    .pictureBox-footer {
        display: inline-block;
        width: 65%;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    ._colFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        gap: 1rem;
    }

    .textBox-footer {
        text-align: center;
    }

    ._footerTitle {
        font-size: 4.5rem;
        color: #333;
        padding-bottom: 20px;
    }

    ._footerText {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    footer .social_a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 2%;
        transition: transform 0.3s ease-in-out;
    }

    footer .social_a:hover {
        transform: scale(1.1);
    }

    ._backgroundFooter-copyright {
        background-color: #ffffff42;
    }

    .footerWrapper-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid #a4a4a4;

    }

    .copyrightBox-link {
        display: flex;
        gap: 1rem;
    }

    .copyright_a {
        font-weight: 600;
        color: #16699e;
        transition: color 0.2s ease-out;
    }

    .copyright_a:hover {
        color: #333;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .copyright-text {
        font-weight: 500;
        color: #333;
        margin: 0;
    }

     /*:::::::::: BANNER COOKIES ::::::::::::*/
    /*:::::::::: BANNER COOKIES ::::::::::::*/
    .bannerInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #393939c2;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        z-index: 9999;
    }

    .bannerText {
        margin: 0;
        padding-bottom: 10px;
    }

    .link-cookiesInfo {
        color: #ffd700;
    }

    .btn-accepts {
        background-color: #e9a434;
    }

    .btn-accepts:hover {
        background-color: #f5b449;
    }

    .btn-rejects {
        background-color: #989898;
        margin-left: 2px;
    }

    .btn-rejects:hover {
        background-color: #b8b8b8;
        margin-left: 2px;
    }

    /* Mostrar con fade-in (ya lo tienes) */
    #cookie-banner {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    #cookie-banner.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Ocultar con fade-out */
    #cookie-banner.fade-out {
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (min-width: 1200px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        z-index: 9999;
    }

    .container {
        max-width: 1200px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button {
        font-family: 'Outfit';
        display: inline-block;
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 34px;
        line-height: 34px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    dialog {
        width: 80%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    input {
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #333;
        width: 100%;
        /* El ancho ocupa todo el contenedor .input-field */
        border: 2px solid #333;
        border-radius: 5px;
        height: 35px;
        line-height: 35px;
        box-sizing: border-box;
        /* Asegura que bordes y padding no excedan el ancho */
        padding: 0;
        /* Elimina cualquier relleno interno */
        margin: 0;
        /* Alineación precisa */
    }

    .label-checkbox {
        font-size: 15px;
        font-weight: 400;
    }

    input[type="checkbox"] {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: #f12a2a;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .input-field {
        width: 100%;
        margin-top: .5rem;
    }

    .input-box {
        display: inline-flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        padding: 5% 0;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    section {
        background-size: cover;
        text-align: center;
        height: auto;
    }

    table {
        width: 100%;
        border-spacing: 0;
    }

    h1 {
        font-size: 5.5rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h2 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h3 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    footer {
        background-image: url(../image/arcobit_background3.jpg);
        background-size: cover;
        position: relative;
        text-align: center;
        display: flex;
        height: 100vh;
    }

    /*::::::::::::::: ELEMENTOS DE EDICIÓN :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d6d6d6;
        padding: .5rem 0;
    }

    .nav-menuIcon {
        display: none;
    }

    .nav_logo {
        display: inline-block;
        width: 200px;
    }

    .nav_a {
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease-out;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    ._colorBlog:hover {
        color: #b07b50;
    }

    ._colorAssistance:hover {
        color: #cf0466;
    }

    ._colorSuite:hover {
        color: #6bacf9;
    }

    ._colorStudio:hover {
        color: #f18b26;
    }

    ._colorNosotros:hover {
        color: #9e9e9e;
    }

    .btn-whatsapp {
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        background-color: #25d366;
        display: inline-block;
        padding: 0 16px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-whatsapp:hover {
        background-color: #34e777;
    }

    .btn-whatsapp_mobile {
        color: #fff;
        background-color: #25d366;
        display: none;
        padding: 0 8px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .svg-whatsapp {
        width: 22px;
        height: 22px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    /*:::::::::::::: BOTONES - ENLACES ::::::::::::::::::*/
    .btn {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    /*::::::::::::::: CARDS :::::::::::::::::::*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    /*::::::::::::::: SECCIÓN FOOTER :::::::::::::::::::*/
    .pictureBox-footer {
        display: inline-block;
        width: 65%;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    ._colFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        gap: 1rem;
    }

    .textBox-footer {
        text-align: center;
    }

    ._footerTitle {
        font-size: 4.5rem;
        color: #333;
        padding-bottom: 20px;
    }

    ._footerText {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    footer .social_a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 2%;
        transition: transform 0.3s ease-in-out;
    }

    footer .social_a:hover {
        transform: scale(1.1);
    }

    ._backgroundFooter-copyright {
        background-color: #ffffff42;
    }

    .footerWrapper-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid #a4a4a4;

    }

    .copyrightBox-link {
        display: flex;
        gap: 1rem;
    }

    .copyright_a {
        font-weight: 600;
        color: #16699e;
        transition: color 0.2s ease-out;
    }

    .copyright_a:hover {
        color: #333;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .copyright-text {
        font-weight: 500;
        color: #333;
        margin: 0;
    }

    /*:::::::::: BANNER COOKIES ::::::::::::*/
    .bannerInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #393939c2;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        z-index: 9999;
    }

    .bannerText {
        margin: 0;
        padding-bottom: 10px;
    }

    .link-cookiesInfo {
        color: #ffd700;
    }

    .btn-accepts {
        background-color: #e9a434;
    }

    .btn-accepts:hover {
        background-color: #f5b449;
    }

    .btn-rejects {
        background-color: #989898;
        margin-left: 2px;
    }

    .btn-rejects:hover {
        background-color: #b8b8b8;
        margin-left: 2px;
    }

    /* Mostrar con fade-in (ya lo tienes) */
    #cookie-banner {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    #cookie-banner.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Ocultar con fade-out */
    #cookie-banner.fade-out {
        opacity: 0;
        pointer-events: none;
    }
}


/*::::::::::::::: LANDSCAPE DESIGN :::::::::::::::*/
@media screen and (min-width: 769px) and (max-width: 1023px) and (orientation: landscape) {
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        z-index: 9999;
    }

    .container {
        max-width: 780px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button {
        display: inline-block;
        font-family: 'Outfit';
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 34px;
        line-height: 34px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    dialog {
        width: 80%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    input {
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #333;
        width: 100%;
        /* El ancho ocupa todo el contenedor .input-field */
        border: 2px solid #333;
        border-radius: 5px;
        height: 35px;
        line-height: 35px;
        box-sizing: border-box;
        /* Asegura que bordes y padding no excedan el ancho */
        padding: 0;
        /* Elimina cualquier relleno interno */
        margin: 0;
        /* Alineación precisa */
    }

    .label-checkbox {
        font-size: 15px;
        font-weight: 400;
    }

    input[type="checkbox"] {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: #f12a2a;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .input-field {
        width: 100%;
        margin-top: .5rem;
    }

    .input-box {
        display: inline-flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        padding: 5% 0;
    }

    nav {
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    section {
        background-size: cover;
        text-align: center;
        height: auto;
    }

    table {
        width: 100%;
        border-spacing: 0;
    }

    h1 {
        font-size: 5.5rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h2 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h3 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    footer {
        background-image: url(../image/arcobit_background3.jpg);
        background-size: cover;
        position: relative;
        text-align: center;
        display: flex;
        height: 100vh;
    }

    /*::::::::::::::: ELEMENTOS DE EDICIÓN :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d6d6d6;
        padding: .5rem 0;
    }

    .nav-menuIcon {
        display: inline-block;
    }

    .nav_logo {
        display: inline-block;
        width: 200px;
    }

    .nav_a {
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease-out;
    }

    .navbar {
        background-color: #ffffff;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1.5rem;
        top: 60px;
        left: 20px;
        width: 100px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .navbar.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    ._colorBlog:hover {
        color: #b07b50;
    }

    ._colorAssistance:hover {
        color: #cf0466;
    }

    ._colorSuite:hover {
        color: #6bacf9;
    }

    ._colorStudio:hover {
        color: #f18b26;
    }

    ._colorNosotros:hover {
        color: #9e9e9e;
    }

    .btn-whatsapp {
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        background-color: #25d366;
        display: none;
        padding: 0 16px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-whatsapp:hover {
        background-color: #34e777;
    }

    .btn-whatsapp_mobile {
        color: #fff;
        background-color: #25d366;
        display: inline-block;
        padding: 0 8px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .svg-whatsapp {
        width: 22px;
        height: 22px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    /*:::::::::::::: BOTONES - ENLACES ::::::::::::::::::*/
    .btn {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    /*::::::::::::::: CARDS :::::::::::::::::::*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    /*::::::::::::::: SECCIÓN FOOTER :::::::::::::::::::*/
    .pictureBox-footer {
        display: inline-block;
        width: 65%;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    ._colFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        gap: 1rem;
    }

    .textBox-footer {
        text-align: center;
    }

    ._footerTitle {
        font-size: 4.5rem;
        color: #333;
        padding-bottom: 20px;
    }

    ._footerText {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    footer .social_a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 2%;
        transition: transform 0.3s ease-in-out;
    }

    footer .social_a:hover {
        transform: scale(1.1);
    }

    ._backgroundFooter-copyright {
        background-color: #ffffff42;
    }

    .footerWrapper-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid #a4a4a4;

    }

    .copyrightBox-link {
        display: flex;
        gap: 1rem;
    }

    .copyright_a {
        font-weight: 600;
        color: #16699e;
        transition: color 0.2s ease-out;
    }

    .copyright_a:hover {
        color: #333;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .copyright-text {
        font-weight: 500;
        color: #333;
        margin: 0;
    }

    /*:::::::::: BANNER COOKIES ::::::::::::*/
    .bannerInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #393939c2;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        z-index: 9999;
    }

    .bannerText {
        margin: 0;
        padding-bottom: 10px;
    }

    .link-cookiesInfo {
        color: #ffd700;
    }

    .btn-accepts {
        background-color: #e9a434;
    }

    .btn-accepts:hover {
        background-color: #f5b449;
    }

    .btn-rejects {
        background-color: #989898;
        margin-left: 2px;
    }

    .btn-rejects:hover {
        background-color: #b8b8b8;
        margin-left: 2px;
    }

    /* Mostrar con fade-in (ya lo tienes) */
    #cookie-banner {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    #cookie-banner.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Ocultar con fade-out */
    #cookie-banner.fade-out {
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) and (orientation: landscape) {
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: "Outfit", serif;
        margin: 0;
    }

    header {
        position: absolute;
        width: 100%;
        z-index: 9999;
    }

    .container {
        max-width: 990px;
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    button {
        display: inline-block;
        font-family: 'Outfit';
        font-size: 12px;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 34px;
        line-height: 34px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    dialog {
        width: 80%;
        opacity: 0;
        border: none;
        border-radius: 8px;
        pointer-events: none;
        padding: 24px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-40px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    dialog.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .button-close {
        float: right;
        margin-top: -4%;
        margin-right: -4%;
    }

    input {
        font-family: "Outfit", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        color: #333;
        width: 100%;
        /* El ancho ocupa todo el contenedor .input-field */
        border: 2px solid #333;
        border-radius: 5px;
        height: 35px;
        line-height: 35px;
        box-sizing: border-box;
        /* Asegura que bordes y padding no excedan el ancho */
        padding: 0;
        /* Elimina cualquier relleno interno */
        margin: 0;
        /* Alineación precisa */
    }

    .label-checkbox {
        font-size: 15px;
        font-weight: 400;
    }

    input[type="checkbox"] {
        appearance: none;
        background-color: #fff;
        width: 18px;
        height: 18px;
        vertical-align: middle;
        border: 2px solid #494b5a;
        border-radius: 4px;
        transform: translateY(-0.075em);
        display: grid;
        place-content: center;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

    input[type="checkbox"]::before {
        content: "";
        width: 0.65em;
        height: 0.65em;
        transform: scale(0);
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em var(--form-control-color);
        background-color: #f12a2a;
        transform-origin: bottom left;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    }

    .input-field {
        width: 100%;
        margin-top: .5rem;
    }

    .input-box {
        display: inline-flex;
        vertical-align: middle;
        align-items: center;
        justify-content: center;
        padding: 5% 0;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    section {
        background-size: cover;
        text-align: center;
        height: auto;
    }

    table {
        width: 100%;
        border-spacing: 0;
    }

    h1 {
        font-size: 5.5rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h2 {
        font-size: 4.2rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h3 {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        color: #333;
        margin: 0;
    }

    footer {
        background-image: url(../image/arcobit_background3.jpg);
        background-size: cover;
        position: relative;
        text-align: center;
        display: flex;
        height: 100vh;
    }

    /*::::::::::::::: ELEMENTOS DE EDICIÓN :::::::::::::::*/
    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #d6d6d6;
        padding: .5rem 0;
    }

    .nav-menuIcon {
        display: none;
    }

    .nav_logo {
        display: inline-block;
        width: 200px;
    }

    .nav_a {
        font-weight: 600;
        color: #333;
        transition: color 0.2s ease-out;
    }

    .svg-icon {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }

    ._colorBlog:hover {
        color: #b07b50;
    }

    ._colorAssistance:hover {
        color: #cf0466;
    }

    ._colorSuite:hover {
        color: #6bacf9;
    }

    ._colorStudio:hover {
        color: #f18b26;
    }

    ._colorNosotros:hover {
        color: #9e9e9e;
    }

    .btn-whatsapp {
        font-size: 15px;
        font-weight: 600;
        text-transform: capitalize;
        color: #fff;
        background-color: #25d366;
        display: inline-block;
        padding: 0 16px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .btn-whatsapp:hover {
        background-color: #34e777;
    }

    .btn-whatsapp_mobile {
        color: #fff;
        background-color: #25d366;
        display: none;
        padding: 0 8px;
        height: 32px;
        line-height: 32px;
        border-radius: 5px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    .svg-whatsapp {
        width: 22px;
        height: 22px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

    /*:::::::::::::: BOTONES - ENLACES ::::::::::::::::::*/
    .btn {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        background-color: #23a877;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        height: 32px;
        line-height: 32px;
        padding: 0 16px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
        transition: background-color 0.2s ease-out;
    }

    /*::::::::::::::: CARDS :::::::::::::::::::*/
    .card {
        background-color: #fff;
        border-radius: 8px;
        height: auto;
        box-sizing: border-box;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    }

    .card-content {
        text-align: center;
        padding: 24px;
    }

    /*::::::::::::::: SECCIÓN FOOTER :::::::::::::::::::*/
    .pictureBox-footer {
        display: inline-block;
        width: 65%;
        padding-top: 5%;
        padding-bottom: 10%;
    }

    ._colFooter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        justify-items: center;
        gap: 1rem;
    }

    .textBox-footer {
        text-align: center;
    }

    ._footerTitle {
        font-size: 4.5rem;
        color: #333;
        padding-bottom: 20px;
    }

    ._footerText {
        font-size: 1.1rem;
        padding-bottom: 15px;
    }

    footer .social_a {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin: 0 2%;
        transition: transform 0.3s ease-in-out;
    }

    footer .social_a:hover {
        transform: scale(1.1);
    }

    ._backgroundFooter-copyright {
        background-color: #ffffff42;
    }

    .footerWrapper-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        border-top: 1px solid #a4a4a4;

    }

    .copyrightBox-link {
        display: flex;
        gap: 1rem;
    }

    .copyright_a {
        font-weight: 600;
        color: #16699e;
        transition: color 0.2s ease-out;
    }

    .copyright_a:hover {
        color: #333;
    }

    .copyright-footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .copyright-text {
        font-weight: 500;
        color: #333;
        margin: 0;
    }

    /*:::::::::: BANNER COOKIES ::::::::::::*/
    .bannerInfo {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #393939c2;
        color: #fff;
        padding: 15px;
        font-size: 14px;
        text-align: center;
        z-index: 9999;
    }

    .bannerText {
        margin: 0;
        padding-bottom: 10px;
    }

    .link-cookiesInfo {
        color: #ffd700;
    }

    .btn-accepts {
        background-color: #e9a434;
    }

    .btn-accepts:hover {
        background-color: #f5b449;
    }

    .btn-rejects {
        background-color: #989898;
        margin-left: 2px;
    }

    .btn-rejects:hover {
        background-color: #b8b8b8;
        margin-left: 2px;
    }

    /* Mostrar con fade-in (ya lo tienes) */
    #cookie-banner {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s ease;
    }

    #cookie-banner.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Ocultar con fade-out */
    #cookie-banner.fade-out {
        opacity: 0;
        pointer-events: none;
    }
}