:root {
    --primary: #ad0303;
    --light: #ffffff;
    --dark: #1e1e1e;
    --gray: #f4f4f4;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito";
    background-color: var(--light);
    color: var(--dark);
    scroll-behavior: smooth;
}

textarea {
    padding: 12px 15px;
    width: 100%;
}

a {
    color: #ad0303;
    text-decoration: none;
}

.hentry {
    margin: 0 0 1.5em;
}

.nosotros ul,
.nosotros ol {
    margin: 0 20px;
}

p {
    margin-bottom: 1.5em;
}

header {
    background-color: var(--light);
    padding: 0rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    border-top: 6px solid #ad0303;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
}

.logo-img {
    max-width: 200px;
}

.right_side {
    display: flex;
    align-items: anchor-center;
    gap: 30px;
}

.right_side nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.right_side nav ul li {
    border-right: 1px solid #c4daff;
    padding: 0 12px;
}

.right_side nav ul li:last-child {
    border-right: none;
}

.right_side nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
}

.right_side nav a:hover {
    color: #b62c1c;
}

.right_side .login-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    max-height: 40px;
}

.right_side .login-btn:hover {
    background-color: #b40000;
}

section {
    scroll-margin-top: 0px;
    /* ajusta segÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Âºn el alto de tu header */
}

.flex {
    display: flex;
}

.flex-item {
    flex: 1;
}

.col-3-2 {
    width: 66.66%;
}

.widget-area {
    -ms-flex-order: -1;
    order: -1;
    padding-bottom: 45px;
    margin-right: auto;
}

@media (max-width: 600px) {
    .widget-area {
        -ms-flex-order: 0;
        order: 0;
    }
}

.first {
    -ms-flex-order: -1;
    order: -1;
}

@media (max-width: 600px) {
    .first {
        -ms-flex-order: 1;
        order: 1;
    }
}

.mobile {
    display: none;
}

@media (max-width: 600px) {
    .mobile {
        display: block;
    }
}

/* Pantallas medianas: tablets y laptops pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±os */
@media (max-width: 992px) {
    .flex {
        flex-direction: column;
        width: 95%;
        /* Un poco mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡s ancho en pantallas medianas */
        padding: 0 20px;
        /* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡s padding para mejor espacio */
    }
}

/* Pantallas pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±as: mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles grandes y tablets verticales */
@media (max-width: 768px) {
    .flex {
        width: 98%;
        /* Casi todo el ancho disponible */
        padding: 0 15px;
        /* Padding lateral */
    }
}

/* Pantallas muy pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±as: mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±os */
@media (max-width: 480px) {
    .flex {
        width: 100%;
        /* Usa todo el ancho disponible */
        padding: 0 10px;
        /* Menos padding para aprovechar espacio */
    }
}

.container-flex {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1330px;
    margin: 0 auto;
    padding: 14px;
    box-sizing: border-box;
}

@media (max-width:980px) {
    .logo-img {
        max-width: 200px;
        display: block;
        margin: 12px auto;
    }

    .container-flex {
        flex-direction: column;
    }

    .right_side {
        flex-direction: column;
    }

    .right_side nav ul {
        gap: 0;
    }

    .banner-text h1 {
        font-size: 1.4rem !important;
    }
}

.container {
    width: 90%;
    max-width: 1360px;
    margin: 12px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Pantallas medianas: tablets y laptops pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±os */
@media (max-width: 992px) {
    .container {
        width: 95%;
        /* Un poco mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡s ancho en pantallas medianas */
        padding: 0 20px;
        /* MÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡s padding para mejor espacio */
    }
}

/* Pantallas pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±as: mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles grandes y tablets verticales */
@media (max-width: 768px) {
    .container {
        width: 98%;
        /* Casi todo el ancho disponible */
        padding: 0 15px;
        /* Padding lateral */
    }
}

/* Pantallas muy pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±as: mÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³viles pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±os */
@media (max-width: 480px) {
    .container {
        width: 100%;
        /* Usa todo el ancho disponible */
        padding: 0 10px;
        /* Menos padding para aprovechar espacio */
    }
}


/* Banner */
.banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 2rem;
}

.banner-text {
    max-width: 500px;
}

.banner-text h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.banner-text p {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.6;
}

.banner-buttons {
    margin-top: 1.5rem;
}

.banner-buttons button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    margin-top: 8px;
    border-radius: 5px;
    margin-right: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-buttons button:hover {
    background-color: #ca0000;
}

.banner-image {
    max-width: 780px;
}

.banner-image video {
    border-radius: 12px;
    max-width: 100%;
}

.banner-image img {
    width: 100%;
    border-radius: 10px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

@media (max-width: 768px) {
    .banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .banner-buttons button {
        width: 100%;
        margin-bottom: 0.7rem;
    }
}


#loginLModal .modal-content {
    background: white;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    min-width: 330px;
    max-width: 45%;
    border-left: 4px solid #ad0303;
}

#loginLModal .modal-content h3 {
    color: #fff;
    padding: 24px;
}

.login-flex .login-option:first-child {
    background-color: #e06666;
}

.login-flex .login-option:last-child {
    background-color: #3c78d8;
}

.login-option {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    min-width: 50%;
    padding: 26px;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: background 0.2s;
    flex-direction: column;
    transition: all 0.3s linear;
}

.login-option:hover {
    transform: scale(1.052);
}

.login-option img {
    min-width: auto;
    width: 100%;
    height: 100%;
    margin-right: 15px;
    border-radius: 12px;
}

.login-text {
    flex-grow: 1;
    font-size: 24px;
    text-align: left;
    color: #fff;
}

.login-flex {
    display: flex;
    gap: 12px;
    padding: 20px;
}

.sign-platforms {
    background: #f9f9f9;
    padding: 2rem;
    text-align: center;
}

.sign-platforms h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.sign-platforms .plataformas {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sign-platforms .opcion {
    border-radius: 12px;
    padding: 2rem 1.5rem;
    width: 280px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.sign-platforms .red {
    background-color: #ef4444;
}

.sign-platforms .azul {
    background-color: #3b82f6;
}

.sign-platforms .opcion i {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.sign-platforms .opcion h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

.sign-platforms .opcion p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.sign-platforms .btn {
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.sign-platforms .btn:hover {
    background-color: #e5e5e5;
}

.sign-platforms .descargas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.sign-platforms .descargas a {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}

.sign-platforms .descargas a:hover {
    transform: scale(1.2);
}

.close-btn {
    margin-top: 15px;
    background: #ccc;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        align-items: flex-start;
    }

    .right_side {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .right_side nav ul {
        flex-direction: row;
        gap: 1.2rem;
        padding: 0;
    }

    .right_side nav ul li {
        border: none;
        padding: 0;
    }

    .login-flex {
        flex-direction: column;
        align-items: center;
    }

    .sign-platforms .plataformas {
        flex-direction: column;
        align-items: center;
    }

    .banner {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .banner-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .banner-text p {
        font-size: 1rem;
        text-align: center;
    }

    .banner-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-buttons button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .sign-platforms .opcion {
        width: 100%;
        max-width: 320px;
    }
}


/* Nuestros Clientes */
.clientes {
    background-color: var(--gray);
    padding: 3rem 2rem;
    text-align: center;
}

.clientes h2 {
    color: #ad0303;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.clientes-slider {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
    width: auto;
    justify-content: center;
}

.slider-container {
    overflow: hidden;
    max-width: 100%;
}

.clientes-slider img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.clientes-slider img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .clientes-slider {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 10px;
    }

    .clientes-slider img {
        flex-shrink: 0;
        scroll-snap-align: center;
        height: 70px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
    }

    nav ul {
        display: none;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-btn {
        margin-top: 1rem;
    }
}

/**/
.features-section {
    display: grid;
    max-width: 1080px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    margin: 40px auto;
    color: #222222;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .feature {
        flex-direction: column;
    }
}


.solutions__items .icon img {
    max-width: 90px;
}

.icon {
    flex-shrink: 0;
}

/**/
.page-header.planes {
    background: #ad0303;
    color: #fff;
    text-align: center;
    padding: 40px 0 70px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 70%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 70%);
}

.page-header.planes .page-title {
    margin: 95px 0 0;
    font-weight: normal;
    font-size: 2.5rem;
    line-height: 1.2;
}

.page-header.planes a {
    color: #fff;
    text-decoration: underline;
}

.stores-links {
    margin: 10px 0 0;
}

.planes .content {
    margin: 0 auto;
    text-align: center;
    max-width: 750px;
}

.planes .content .subtitle {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #ad0303;
    font-weight: bold;
    font-family: "Nunito", sans-serif;
    margin-bottom: 0;
}

.planes-table {
    margin-top: 60px;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.planes-table thead .plan {
    padding-top: 25px;
}

.planes-table thead th {
    position: relative;
}

.planes-table thead td {
    border-bottom: 1px solid #e6e6e6;
}

.planes-table thead .recomended {
    position: absolute;
    font-size: 0.8rem;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c63f3f;
    color: #fff;
    padding: 7px 15px 3px;
    border-radius: 4px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .planes-table thead .recomended {
        font-size: 0.6rem;
        top: -22px;
    }
}

.planes-table tbody {
    font-size: 0.9rem;
}

.planes-table tbody ul {
    text-align: left;
    margin: 0;
    padding-left: 20px;
}

.planes-table tbody td {
    border-bottom: 1px solid #e6e6e6;
    padding: 7px;
}

.planes-table tbody .list {
    position: relative;
}

.planes-table tbody .list .name {
    border-bottom: 1px dotted;
}

.planes-table tbody .list .name:hover+.tooltip {
    opacity: 1;
}

.planes-table tfoot td {
    border: 0;
    text-align: center;
}

.planes-table tfoot .plan {
    color: #ad0303;
    font-family: "Nunito", sans-serif;
    padding: 15px;
}

@media (max-width: 768px) {
    .planes-table {
        font-size: 0.8rem;
    }

    .planes-table .plan__description {
        font-size: 0.7rem;
    }

    .planes-table .precio {
        font-size: 1rem;
    }

    .planes-table tfoot .mensualidad {
        font-size: 1rem;
    }
}

.planes-table tfoot .precio {
    font-size: 1.4rem;
    font-weight: bold;
}

.planes-table tfoot .precio span {
    font-size: 0.8rem;
    margin-left: 4px;
}

.planes-table tfoot .nota {
    font-size: 0.8rem;
}

.planes-table tfoot .separator {
    border-top: 1px solid #eaeaea;
    margin: 10px 0;
}

.planes-table tfoot .mensualidad {
    font-weight: bold;
    font-size: 1.2rem;
}

.planes-table tfoot .button {
    margin-top: 10px;
}

.planes-table tfoot .plan-name {
    text-transform: uppercase;
}

.planes-table th:nth-child(3n),
.planes-table td:nth-child(3n) {
    background: #f5dcdc;
}

.planes-table .tooltip {
    position: absolute;
    top: 110%;
    background: #ad0303;
    color: #fff;
    padding: 15px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.planes-table .tooltip::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: inherit;
    top: -3px;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
}

@media (max-width: 600px) {
    .planes-table .tooltip {
        position: fixed;
        width: auto;
        pointer-events: none;
        z-index: 30;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .planes-table .tooltip ul {
        background: #8dc63f;
        padding: 25px 40px;
    }

    .planes-table .tooltip__name {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .planes-table .tooltip::before {
        display: none;
    }
}

.planes-table .icon-check {
    display: inline-block;
    background: url("images/check.svg") no-repeat center center;
    background-size: 100% auto;
    width: 30px;
    height: 30px;
}

.planes-table .plan {
    text-align: center;
    width: 200px;
}

.planes-table .plan i {
    font-size: 20px;
    color: #ad0303;
}

@media (max-width: 600px) {
    .planes-table .plan {
        width: auto;
    }
}


.planes-table .plan__title {
    text-transform: uppercase;
    color: #ad0303;
    font-size: 1.6rem;
    font-family: "Nunito", sans-serif;
}

@media (max-width: 600px) {
    .planes-table .plan__title {
        transform: rotate(-90deg) translateX(-2px);
    }
}

.planes-table .plan__description {
    font-size: 0.8rem;
    padding: 0 15px 10px;
    font-weight: normal;
    text-align: center;
}

.planes-table .planes-feature {
    background: #f3f3ff;
    width: 300px;
    padding: 10px 25px;
    font-weight: bold;
}

.planes-table .planes-feature .description {
    font-size: 0.8rem;
    font-weight: normal;
    font-style: italic;
    color: #888;
}

@media (max-width: 600px) {
    .planes-table .planes-feature {
        font-size: 0.8rem;
        padding: 7px;
        width: 50%;
    }

    .planes-table .planes-feature .description {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .planes-table {
        table-layout: fixed;
    }

    .planes-table thead tr {
        width: 100%;
    }

    .planes-table thead th {
        height: 85px;
    }

    .planes-table thead td {
        display: none;
    }

    .planes-table thead .feature {
        background: none;
    }

    .planes-table .plan {
        width: 16.6%;
        padding: 4px;
    }

    .planes-table .plan__title {
        font-size: 0.8rem;
    }

    .planes-table .icon-check {
        width: 20px;
        height: 20px;
    }

    .planes-table tfoot {
        display: block;
        width: calc(100vw - 30px);
    }

    .planes-table tfoot tr {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .planes-table tfoot tr .plan {
        width: 100%;
    }
}

.planes-note {
    margin-top: 70px;
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
    text-align: center;
    color: #888;
}

.planes-note p {
    padding-top: 0;
}

.site-main .row {
    justify-content: center;
    gap: 60px;
}

.equipos .page-content {
    max-width: 800px;
    margin: 35px auto 0;
    text-align: center;
}

.equipos .equipo {
    text-align: center;
    margin-top: 25px;
}

.equipos .equipo__title {
    font-family: "Nunito", sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
}

.equipos .col-4-1 {
    width: 20%;
}

.equipo .info {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.equipo .info .precio {
    font-family: "Nunito", sans-serif;
    color: #ad0303;
    font-size: 2rem;
    font-weight: bold;
}

.equipo .info .precio .label {
    font-size: 1rem;
    font-weight: normal;
}

@media (max-width: 992px) {
    .equipos .col-4-1 {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .equipos .col-4-1 {
        width: 100%;
    }
}


.node_right ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.feature-row span {
    background: white;
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    text-align: left;
}

.feature-row span:first-child {
    justify-content: flex-start;
    font-weight: bold;
}

.feature-row a {
    color: #007cc2;
    text-decoration: underline;
}

.cta-buttons {
    grid-column: span 7;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #fff;
}

.btn {
    background: var(--primary);
    padding: 12px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    color: white;
    border-radius: 5px;
}

.btn:hover {
    background-color: #c50a0a;
}

/**/
.section__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: normal;
    color: #ad0303;
}

.section__description {
    margin: 15px 0;
}

.section__description p {
    font-size: 22px;
    text-align: justify;
}

.section__image {
    margin-left: auto;
    max-width: 600px;
}

@media (max-width:1200px) {
    .l-center {
        max-width: 80% !important;

    }

    .section__title {
        font-size: 1.4rem;
    }

    .section__description p {
        font-size: 16px;
    }
}

@media (max-width: 1100px) {
    .section__image {
        width: 50%;
    }
}



.section.right .section__image {
    -ms-flex-order: -1;
    order: -1;
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 600px) {
    .section.right .section__image {
        -ms-flex-order: 0;
        order: 0;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 12px 0;
    }
}

.section .row {
    -ms-flex-align: center;
    align-items: center;
}

.row {
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.section__content {
    width: 400px;
    position: relative;
    z-index: 20;
}

.l-center {
    width: 1124px;
    max-width: 100%;
    margin: 20px auto;
    position: relative;
}

.nosotros {
    justify-content: center;
    align-content: baseline;
    text-align: justify;
    gap: 100px;
}

.nosotros .col-3-2 {}

.nosotros .col-3-2:first-child {
    width: 60%;
}



/**/
.solutions {
    max-width: 100%;
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 200;
    background: #ad0303;
    padding: 40px 0;
}

@media (max-width: 600px) {
    .solutions {
        background: #ad0303;
        padding: 20px 0;
        margin-top: 0;
    }
}

.solutions .back1 {
    position: absolute;
    width: 100%;
    left: 0;
    top: -45px;
    pointer-events: none;
}

@media (max-width: 600px) {
    .solutions .back1 {
        display: none;
    }
}

.solutions .l-center {
    position: relative;
    z-index: 10;
    max-width: 100%;
}

.solutions__title {
    margin-top: 25px;
    font-size: 2.6rem;
    padding: 0 15%;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: normal;
}

@media (max-width: 1100px) {
    .solutions__title {
        padding: 0 25px;
    }
}

@media (max-width: 600px) {
    .solutions__title {
        margin-top: 15px;
        font-size: 2.2rem;
    }
}

.solutions__description {
    font-size: 1.3rem;
}

@media (max-width: 600px) {
    .solutions__description {
        font-size: 1rem;
    }
}

.solutions__items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 25px;
}

.solutions__items a:visited {
    color: #fff;
}

@media (max-width: 600px) {
    .solutions__items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.solutions__item {
    max-width: 200px;
    min-height: 240px;
    margin: 0 10px;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .solutions__item {
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        margin: 0;
    }
}

.solutions__item:hover {
    background: #870101;
    color: #fff;
}

.solutions__item .label {
    text-transform: uppercase;
    margin-top: 7px;
}

.solutions__item .icon svg {
    height: 80px;
}

.solutions__footer {
    padding: 40px 0;
}

/**/
.plans-container {
    display: flex;
    gap: 20px;
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
    overflow-x: auto;
    scroll-padding: 20px;
}

.plan-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgb(0 0 0 / 0.1);
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgb(0 0 0 / 0.15);
}

.plan-header {
    background-color: var(--primary);
    color: white;
    padding: 20px 15px;
    border-radius: 12px 12px 0 0;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    line-height: 1.2;
    user-select: none;
}

.plan-price {
    font-size: 1rem;
    margin-top: 6px;
    font-weight: 600;
    color: #cccccc;
    letter-spacing: 0.04em;
}

.features-list {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    flex-grow: 1;
    font-size: 0.9rem;
    color: #555;
    overflow-y: auto;
}

.features-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

.buy-button {
    margin: 15px 20px 20px;
    background-color: #ad0303;
    border: none;
    padding: 12px 0;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.buy-button:hover {
    background-color: #bc0505;
}

/* Responsive */
@media (max-width: 768px) {
    .plans-container {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .plan-card {
        flex: 0 0 80vw;
    }
}

/**/
h2.title {
    text-align: center;
    font-weight: 400;
    font-size: 1.8rem;
    color: #6e6e6e;
    margin-bottom: 60px;
}

/* CONTENEDOR DE LOS 3 ICONOS + TEXTOS */
.summary-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 100px auto;
    gap: 40px;
    flex-wrap: wrap;
}

.summary-item {
    flex: 1 1 280px;
    text-align: center;
}

.summary-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    fill: #ad0303;
}

.summary-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CONTENEDOR MISION/VISION */
.mv-container {
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.mv-left {
    flex: 1 1 280px;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ad0303;
    margin-bottom: 20px;
}

.mv-right {
    flex: 2 1 600px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    border: 1px solid #ad0303;
    border-radius: 15px 15px 5px 15px;
    padding: 20px;
    flex: 1 1 280px;
    background: #fff;
    box-shadow: 2px 4px 12px rgba(0, 75, 51, 0.08);
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ad0303;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

/* Icono pequeÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â±o */
.icon-clock {
    width: 20px;
    height: 20px;
    fill: #671513;
}

/* Responsive */
@media (max-width: 720px) {
    .summary-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .mv-container {
        flex-direction: column;
    }

    .mv-right {
        flex-direction: column;
    }

    .mv-left {
        margin-bottom: 10px;
    }
}

.section__image img {
    max-width: 500px;
    border-radius: 12px;
}

@media (max-width: 600px) {
    .section__image {
        width: 100%;
    }
}

/**/
/* ===== FONDO MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 50px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

/* ===== CONTENIDO MODAL ===== */
.modal-content {
    background: white;
    margin: 5% auto;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal-header {
    background: #ad0303;
    color: white;
    padding: 1.5rem;
    font-size: 24px;
    text-align: center;
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
}

.formulario,
.info-contacto {
    flex: 1 1 300px;
    padding: 1rem;
    border-radius: 10px;
}

.formulario {
    background: #f9f9f9;
    margin-right: 1rem;
}

.formulario input,
.formulario textarea,
.formulario select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    resize: none;
}

.formulario button {
    background: #ad0303;
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    float: right;
}

.info-contacto {
    background: #f9f9f9;
}

.info-contacto p {
    margin: 32px 12px;
}

.info-contacto strong {
    color: #ad0303;
}

.experience {
    text-align: center;
    padding: 75px;
    background: url("images/mapa.jpg") no-repeat right top;
    background-size: cover;
    font-size: 2.4rem;
    line-height: 1.2;
    font-family: "Nunito", sans-serif;
    color: #fff;
}

@media (max-width: 600px) {
    .experience {
        font-size: 1.8rem;
        padding: 45px 15px;
    }
}

/* BOTON CERRAR */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }

    .formulario {
        margin-right: 0;
    }
}

.contact-section {
    background-color: #ad0303;
    /* azul */
    color: white;
    text-align: center;
    padding: 80px 0 150px;
    position: relative;
    margin: 0;
}

.contact-section h2 {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-weight: 300;
}

form {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    padding: 10px 12px;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
}

button {
    background-color: #c0120f;
    /* verde */
    border: none;
    color: white;
    padding: 12px 22px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #b40000;
}

@media (max-width: 580px) {
    form {
        gap: 20px;
        align-items: center;
    }

}

.pdf-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.pdf-popup-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    height: 80%;
    border-radius: 10px;
    position: relative;
}

.pdf-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.cotizar-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ad0303;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.cotizar-btn:hover {
    background-color: #cf0a0a;
}

.page-header.cotizar {
    padding-bottom: 10px;
}

.page-content.cotizar {
    position: relative;
    margin-top: 0;
}

.page-content.cotizar::before {
    content: "";
    display: block;
    background: #ffffff;
    height: 300px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 70%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 70%);
}

@media (max-width: 600px) {
    .page-content.cotizar::before {
        -webkit-clip-path: initial;
        clip-path: initial;
    }
}

.page-content.cotizar .response {
    text-align: center;
    padding: 15px 35px;
    margin: 0 auto 30px;
    max-width: 600px;
}

.page-content.cotizar .response.error {
    background: rgba(255, 0, 0, 0.6);
    color: #fff;
}

.page-content.cotizar .response.success {
    background: rgba(0, 128, 0, 0.6);
    color: #fff;
}

.page-content.cotizar .ver-mas {
    text-align: center;
    padding-bottom: 80px;
}

@media (max-width: 600px) {
    .page-content.cotizar .ver-mas {
        padding-bottom: 30px;
    }
}

.page-content.cotizar .ver-mas a {
    color: #fff;
}

.page-content.cotizar .ver-mas .jumping-text {
    display: inline-block;
    padding: 9px 0;
    font-size: 1.2rem;
    border: 2px solid #fff;
    border-radius: 50%;
    line-height: 1;
    height: 45px;
    width: 45px;
    margin-bottom: 7px;
    animation-name: bounce;
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.page-content.cotizar .ver-mas .label {
    display: block;
    text-transform: uppercase;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(90deg);
    }

    50% {
        transform: translateY(-10px) rotate(90deg);
    }
}

.quote-form {
    background: rgba(255, 255, 255, 0.85);
    padding: 45px;
    border-radius: 10px;
    max-width: 600px;
    height: 870px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .quote-form {
        height: auto;
        padding: 15px;
    }
}

.quote-form .page {
    position: absolute;
    top: 55px;
    left: 55px;
    bottom: 55px;
    right: 55px;
    transition: transform 0.5s;
}

@media (max-width: 600px) {
    .quote-form .page {
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        padding: 15px;
    }
}

.quote-form .page.contact-info {
    transform: translateX(150%);
}

.quote-form .page.necesidades {
    transform: translateX(-150%);
}

.quote-form .page.active {
    transform: translateX(0);
}

@media (max-width: 600px) {
    .quote-form .page.active {
        position: relative;
    }
}

.quote-form label {
    display: block;
    margin: 7px 0;
    font-size: 0.9rem;
}

.quote-form label.center {
    text-align: center;
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .quote-form label.center {
        font-size: 1rem;
    }
}

.quote-form label span {
    color: red;
    font-weight: bold;
    margin-left: 4px;
}

.quote-form .radio-wrap {
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 600px) {
    .quote-form .radio-wrap {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.quote-form .radio-wrap .radio {
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    padding: 10px;
}

@media (max-width: 600px) {
    .quote-form .radio-wrap .radio {
        padding: 0;
    }
}

.quote-form .radio-wrap label {
    display: block;
    background: #fff;
    padding: 25px;
    cursor: pointer;
    border: 2px solid #ad0303;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ad0303;
    font-family: "Nunito", sans-serif;
}

@media (max-width: 600px) {
    .quote-form .radio-wrap label {
        padding: 15px 10px;
    }
}

.quote-form .radio-wrap input[type="radio"] {
    display: none;
}

.quote-form .radio-wrap input[type="radio"]:checked+label {
    color: #fff;
    background: #8dc63f;
    border-color: #8dc63f;
}

.quote-form .input-cantidad {
    font-size: 2rem;
    text-align: center;
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 600px) {
    .quote-form .input-cantidad {
        font-size: 1.6rem;
        max-width: 70px;
    }
}

.quote-form .accesorios-wrap {
    columns: 2;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .quote-form .accesorios-wrap {
        columns: 1;
    }
}

.quote-form .form-field {
    margin-top: 25px;
}

.quote-form__header {
    text-align: center;
}

@media (max-width: 600px) {
    .quote-form__header svg {
        width: 40px;
        height: 40px;
    }
}

.quote-form__title {
    text-align: center;
    font-size: 1.6rem;
    color: #ad0303;
    margin-top: 0;
}

@media (max-width: 600px) {
    .quote-form__title {
        line-height: 1.2;
        margin-top: 20px;
    }
}

.quote-form__footer {
    margin-top: 25px;
    text-align: right;
}

.map {
    height: 400px;
    margin-top: 70px;
}

.contact_form {
    background: rgba(255, 255, 255, 0.85);
    padding: 45px;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .contact_form {
        padding: 15px;
    }
}

.contact_form label {
    display: block;
    margin: 7px 0;
    font-size: 0.9rem;
}

.contact_form label.center {
    text-align: center;
    font-size: 1.2rem;
}

.contact_form label span {
    color: red;
    font-weight: bold;
    margin-left: 4px;
}

.contacto .form-container {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 0;
}

@media (max-width: 600px) {
    .contacto .form-container {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contacto .info-empresa {
    border: 1px solid #e6e6e6;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 35px 50px;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .contacto .info-empresa {
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 20px;
        padding: 0 15px 20px;

    }
}

.contacto .info-empresa .info {
    margin-top: 25px;
    font-size: 0.9rem;
}

.contacto .info-empresa .title {
    text-transform: uppercase;
    color: #ad0303;
    font-weight: bold;
}

.contact_form .page.contact-info {
    width: 100%;
}

.contact_form .page.contact-info input,
.contact_form .page.contact-info textarea,
.contact_form .page.contact-info select {
    min-width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: 'Nunito';
    color: #444;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    resize: none;
}

/**/
.device-access-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
    width: 100%;
    border-top: 6px solid #ad0303;
    overflow: hidden;
}

.device-access-image {
    flex: 1;
    min-width: 300px;
    background-image: url('app.jpg');
    background-size: cover;
    background-position: center;
    height: auto;
}

.device-access-content {
    flex: 1;
    min-width: 300px;
    background-color: #f4f4f4;
    color: #292929;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    -webkit-clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 0 0);
}

.device-access-text {
    max-width: 400px;
}

.device-access-text h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.device-access-text p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
}

.device-access-buttons img {
    height: 45px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .device-access-section {
        flex-direction: column;
    }

    .device-access-content {
        clip-path: none;
        text-align: center;
        padding: 20px;
    }

    .device-access-text {
        max-width: 100%;
    }

    .device-access-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .device-access-buttons img {
        margin: 5px;
    }
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: white;
    font-family: sans-serif;
    z-index: 9999;
}

.chat-header {
    background-color: #ad0303;
    color: white;
    padding: 10px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
}

.chat-header img {
    height: 24px;
    margin-right: 8px;
    border-radius: 6px;
}

.chat-body {
    padding: 15px;
    font-size: 14px;
}

.chat-body textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px;
    resize: none;
    height: 60px;
    margin-top: 10px;
}

.chat-footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #888;
}

.chat-footer a {
    text-decoration: none;
    color: #ad0303;
}

.send-button {
    background-color: #ad0303;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
}

.chat-toggle {
    position: fixed;
    display: none;
    bottom: 20px;
    right: 20px;
    text-indent: -3px;
    background-color: #ad0303;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    z-index: 9998;
}

/*footer*/
footer {
    background-color: #f4f4f4;
    color: #333;
    padding-top: 30px;
}

.footer-container {
    padding: 0 40px 20px;
    max-width: 80%;
    margin: auto;
    gap: 80px;
}

.footer-logo,
.footer-contact,
.footer-hours {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: #ad0303;
    margin-bottom: 10px;
}

.footer-contact h4,
.footer-hours h4 {
    color: #ad0303;
    margin-bottom: 8px;
}

.footer-socials .links {
    display: flex;
}

.footer-socials h4 {
    color: #ad0303;
    margin-bottom: 8px;
    display: block;
}

.footer-socials a {
    margin-right: 2rem;
    color: #ad0303;
    font-size: 2rem;
}

.footer-bottom {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 15px 10px;
    font-size: 14px;
}


/*responsive*/

@media (max-width:1200px) {

    .right_side nav a,
    .cotizar-btn {
        font-size: 16px;
        font-weight: normal;
    }

    .right_side .login-btn,
    .banner-buttons button {
        font-size: 12px;
    }

    .clientes h2 {
        font-size: 14px;
    }

    .l-center {
        max-width: 80%;

    }

    .col-3-1,
    .col-3-2 {
        width: 100%;
    }

    .solutions__title,
    .section__title,
    .page-header.planes .page-title,
    .device-access-text h2,
    .contact-section h2,
    .sign-platforms h2,
    .footer-logo h2 {
        font-size: 1.4rem;
    }

    .section__content {
        width: 100%;
    }

    #loginLModal .modal-content h3, .section__description p {
        font-size: 16px;
    }
    .sign-platforms .opcion{padding: 12px;}
    .sign-platforms .opcion img{width: 90px;}
    #loginLModal .modal-content h3{padding: 0;}

    .sign-platforms .opcion p{
        display: none;
    }

    .solutions__item {
        max-width: 180px;
        min-height: 180px;
    }

    .solutions__items .icon img {
        max-width: 70px;
    }

    .section__image img {
        max-width: 100%;
    }

    .section__image {
        width: 100%;
    }

    .planes .content .subtitle,
    .equipos .equipo__title {
        font-size: 16px;
    }

    form{
        flex-direction: column;
        padding: 12px;
    }

    form input{
        width: 100%;
    }

    .footer-container {
        padding: 12px 0;
        gap: 0;
    }
}