html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: "roboto", Arial, sans-serif;
  scroll-behavior: smooth;
  font-weight: 500;
}

    
*,
*::after,
*::before {
   box-sizing: inherit;
}
    
body {
   margin: 0;
   padding: 0;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p{
    padding: 0;
    margin: 0;
}

section, main, header{
    position: relative;
}/* =========================================
   SECCIÓN INTERÉS
========================================= */

.interes {
    padding: 100px 0;
    background-color: #ffffff;
}

.interes-container {
    width: 100%;
    margin: auto;
}

.interes h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.interes-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #555;
    line-height: 1.6;
}

.interes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: #dddddd;
    padding: 60px;
}

.interes-item {
    background: #ffffffab;
    padding: 30px;
    border-radius: 20px;
}

.interes-item h3 {
    margin-bottom: 10px;
    color: #222;
}

.interes-question {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.interes-item ul {
    padding-left: 18px;
}

.interes-item li {
    margin-bottom: 8px;
    color: #444;
}

.interes-cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.interes-cta {
    background-color: #ff6a00;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.interes-cta:hover {
    background-color: #e55d00;
}

@media (max-width: 992px) {
    .interes-grid {
        grid-template-columns: 1fr 1fr;
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .interes-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}
/* =========================================
   SECCIÓN DESEO - VERSIÓN ESTABLE FINAL
========================================= */

.deseo {
    padding: 100px 0;
    background: #f4f4f4;
    overflow-x: hidden; /* Previene desbordes */
}

.deseo-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.deseo h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
}

/* ================================
   GRID PRINCIPAL
================================ */

.deseo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.deseo-grid > * {
    min-width: 0; /* CLAVE para evitar desbordes en grid + flex */
}

/* ================================
   SLIDER
================================ */

.deseo-slider {
    position: relative;
    background: #ffffff;
    padding: 60px 40px 80px 40px;
}

/* Viewport real que oculta el overflow */
.deseo-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.deseo-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.deseo-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 20px;
}

.deseo-slide h3 {
    margin-bottom: 15px;
}

.deseo-slide p {
    max-width: 650px;
    margin: 20px auto;
    line-height: 1.6;
}

.deseo-logo {
    max-width: 120px;
    margin: 15px 0;
}

.deseo-empresa {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

/* Flechas */

.deseo-prev,
.deseo-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6a00;
    border: none;
    color: #ffffff;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 10;
}

.deseo-prev { left: 10px; }
.deseo-next { right: 10px; }

/* Indicadores */

.deseo-indicadores {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.deseo-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.deseo-dot.active {
    background: #ff6a00;
}

/* ================================
   ACORDEÓN
================================ */

.deseo-acordeon {
    width: 100%;
}

.deseo-item {
    margin-bottom: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    overflow: hidden;
}

.deseo-acordeon-header {
    padding: 20px;
    cursor: pointer;
    background: #e9e9e9;
    font-weight: 600;
    transition: background 0.3s ease;
}

.deseo-acordeon-header:hover {
    background: #dedede;
}

.deseo-acordeon-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
}

.deseo-item.active .deseo-acordeon-content {
    max-height: 1000px; /* suficiente para texto largo */
    padding: 20px;
}

/* ================================
   RESPONSIVE - TABLET
================================ */

@media (max-width: 992px) {

    .deseo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .deseo h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .deseo-slider {
        padding: 50px 30px 80px 30px;
    }

    .deseo-slide h3 {
        font-size: 1.2rem;
    }

    .deseo-slide p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .deseo-logo {
        max-width: 100px;
    }
}

/* ================================
   RESPONSIVE - MÓVIL
================================ */

@media (max-width: 600px) {

    .deseo {
        padding: 70px 0;
    }

    .deseo-container {
        width: 92%;
    }

    .deseo h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .deseo-slider {
        padding: 40px 20px 70px 20px;
    }

    .deseo-slide {
        padding: 0;
    }

    .deseo-slide h3 {
        font-size: 1.05rem;
    }

    .deseo-slide p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .deseo-empresa {
        font-size: 0.9rem;
    }

    .deseo-prev,
    .deseo-next {
        padding: 8px 12px;
        font-size: 14px;
    }

    .deseo-prev { left: 5px; }
    .deseo-next { right: 5px; }

    .deseo-dot {
        width: 8px;
        height: 8px;
    }
}

/* =========================================
   SECCIÓN ACCIÓN
========================================= */

.accion {
    padding: 120px 0;
    background: linear-gradient(135deg, #1f1f1f, #2b2b2b);
    color: #ffffff;
    text-align: center;
}

.accion-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.accion h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.accion-texto {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #dcdcdc;
}

.accion-cta {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ff6a00;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accion-cta:hover {
    background-color: #e55d00;
    transform: translateY(-2px);
}

.accion-respaldo {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #bbbbbb;
}

/* ==============================
   NAV PRINCIPAL
============================== */

.main-nav {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.main-nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.main-nav-logo img {
    height: 45px;
}

/* MENU */

.main-nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav-menu li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s ease;
}

.main-nav-menu li a:hover {
    color: #ff6a00;
}

/* CTA */
.nav-cta {
    background: #ff6a00;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: #e55d00;
}

/* ==============================
   HAMBURGUESA
============================== */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #222;
    display: block;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 900px) {

    .nav-toggle {
        display: flex;
    }

    .main-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
    }

    .main-nav-menu.active {
        display: flex;
    }

}

/* ==============================
   NAV PRINCIPAL
============================== */

.main-nav {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.main-nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.main-nav-logo img {
    height: 45px;
}

/* MENU */

.main-nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav-menu li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s ease;
}

.main-nav-menu li a:hover {
    color: #ff6a00;
}

/* CTA */
.nav-cta {
    background: #ff6a00;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: #e55d00;
}

/* ==============================
   HAMBURGUESA
============================== */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #222;
    display: block;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 900px) {

    .nav-toggle {
        display: flex;
    }

    .main-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
    }

    .main-nav-menu.active {
        display: flex;
    }

}

/* ===================================
   BOTONES FLOTANTES
=================================== */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
}

.floating-btn img {
    width: 55px;
    height: 55px;
    transition: transform .25s ease, filter .25s ease;
}

/* WhatsApp */

.floating-btn.whatsapp {
    background: transparent;
}

/* Facebook */

.floating-btn.facebook {
    background: transparent;
}

/* Hover */

.floating-btn img:hover {
    transform: translateY(-4px);
    filter: drop-shadow(5px 5px 4px #a0a0a0bb);
}