/*
Theme Name: Bootstrap 5 Theme
Theme URI: https://tuweb.com
Author: Tu Nombre
Author URI: https://tuweb.com
Description: Theme base limpio con Bootstrap 5.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bootstrap5-theme
*/

/* Importar fuentes primero */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    font-family: "Inter", sans-serif;  
    font-weight: 300;
    font-size: 16px;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    overflow-x: hidden!important;
}

/* BOOTSTRAP 5 COMPONENTS */

.container {
    max-width: 1140px;
    padding: 0 20px;
}

a, a:hover {
    transition: all .75s ease;
    text-decoration: none;
}

/* COLORS */

.green {
    color: #76BC28;
}

.bg-green {
    background-color: #76BC28;
}

.black {
    color: #000;
}

.gray-1 {
    color: #272727;
}

.bg-gray-1 {
    background-color: #272727;
}

.gray-2 {
    color: #707070;
}

.bg-gray-2 {
    background-color: #707070;
}

.gray-3 {
    color: #959595;
}

.bg-gray-3 {
    background-color: #959595;
}

.gray-4 {
    color: #E2E4E3;
}

.bg-gray-4 {
    background-color: #E2E4E3;
}


/* CONTAINERS */

.wrapper-body {
    padding-top: 119px;
}

/* FONTS */

.bebas {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.inter-light {
    font-family: "Inter", sans-serif;  
    font-weight: 300;
    font-style: normal;
}

.inter-light-i {
    font-family: "Inter", sans-serif;  
    font-weight: 300;
    font-style: italic;
}

.inter-regular {
    font-family: "Inter", sans-serif;  
    font-weight: 400;
    font-style: normal;
}

.inter-regular-i {
    font-family: "Inter", sans-serif;  
    font-weight: 400;
    font-style: italic;
}

.inter-semibold {
    font-family: "Inter", sans-serif;  
    font-weight: 600;
    font-style: normal;
}

.inter-semibold-i {
    font-family: "Inter", sans-serif;  
    font-weight: 600;
    font-style: italic;
}

.inter-bold {
    font-family: "Inter", sans-serif;  
    font-weight: 800;
    font-style: normal;
}

.inter-bold-i {
    font-family: "Inter", sans-serif;  
    font-weight: 800;
    font-style: italic;
}

/* SIZES */

h1, .h1 {
    font-size: 44px;
    letter-spacing: .05em;
}

h2, .h2 {
    font-size: 20px;
}

h3, .h3 {
    font-size: 16px;
    line-height: 1.4;
}

p, .p {
    font-size: 14px;
    line-height: 1.6;
}

p.min {
    font-size: 12px;
    line-height: 1.5;
}

p.min-2,
a.min-2 {
    font-size: 10px;
    line-height: 1.6;
}

/* HEADER */

header.main {
    padding: 15px 0 0 0;
    top: 0;
    z-index: 9999;
}

header.main .logo {
    max-width: 320px;
}

header.main .redes.wa {
    margin-top: 7px;
}

header.main .redes.ig {
    margin-left: 15px;
}

header.main .navbar-nav {
    flex-direction: row;
    align-items: center;
    margin-left: 30px;
}

header.main .navbar-nav li {
    margin: 8px 20px 0 0;
}

header.main .navbar-nav li a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    font-weight: 400;
}

header.main .navbar-nav li a:hover,
header.main .navbar-nav li.current-menu-item a {
    color: #76BC28;
}

header.main .menu-productos {
    border-top: 2px solid #76BC28;
    border-bottom: 2px solid #76BC28;
    margin-top: 15px;
    padding: 10px 0;
    line-height: 1;
}

/* MENU PRODUCTOS */

.menu-productos a {
    font-size: 20px;
    text-decoration: none;
    margin-right: 30px;
    letter-spacing: .025em;
}

.menu-productos a::after {
    content: "";
    display: block;
    background-image: url('img/arrow-down.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 12px;
    height: 8px;
    top: 1px;
    right: -14px;
}

/* PANELES MOTOS & JETSKI */

/* Panel general */
.submenu {
    position: absolute;
    top: 0;
    left: 20px;
    background: white;
    box-shadow: 0 0 7px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    width: calc(100% - 40px);
    display: block;
    overflow: visible;
}

.submenu.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Tabs arriba */
.submenu-tabs {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.submenu-tabs button {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 15px;
    font-size: 20px;
    letter-spacing: .03em;
    transition: all 0.2s ease;
    line-height: 1;
}

.submenu-tabs button:hover,
.submenu-tabs button.active {
    background: none;
    color: #76BC28;
    transition: all 0.2s ease;
}

/* Contenido interno */
.submenu-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 15px;
}

.tab-content.visible {
    display: block;
    opacity: 1;
}

.tab-content .subcat,
.cat-jetski {
    letter-spacing: .09em;
    font-size: 18px;
}

.cats-jetski {
    padding: 15px;
}

#menuMotos .subcat a,
#menuJetSki .cat-jetski a {
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
}

#menuMotos .subcat a img, 
#menuJetSki .cat-jetski a img {
    opacity: 1;
    transition: all .75s ease;
}

#menuMotos .subcat a:hover img, 
#menuJetSki .cat-jetski a:hover img {
    opacity: .75;
    transition: all .75s ease;
}

#menuMotos .subcat img, 
#menuJetSki .cat-jetski img {
    margin-bottom: 15px;
}

/* SLIDER HOME */

.swiper-slide .txt-intro {
    font-size: 22px;
    letter-spacing: 0.05em;
}

.swiper-slide .txt-eslogan {
    font-size: 44px;
    letter-spacing: 0.05em;
}

.swiper-slide .logo {
    max-width: 350px;
    margin: 20px 0;
}

.ver-mas-btn {
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #76BC28;
    border-radius: 25px;
    padding: 5px 16px;
    width: 123px;
    margin-top: 25px;
    transition: all .75s ease;
}

.ver-mas-btn:hover {
    border: 2px solid #76BC28;
    background-color: #76BC28;
    transition: all .75s ease;
}

.ver-mas-btn .legend {
    color: #FFF;
    margin-right: 10px;
    transition: all .75s ease;
}

.ver-mas-btn:hover .legend {
    color: #000;
    transition: all .75s ease;
}

.ver-mas-btn .arrow {
    padding-bottom: 2px;
}

.ver-mas-btn .arrow svg path {
    fill: #76BC28;
    transition: all .75s ease;
}

.ver-mas-btn:hover .arrow svg path {
    fill: #000;
    transition: all .75s ease;
}

.slider-pagination-desktop {
  position: static !important;
  margin: 25px 0 50px 0;
}

.slider-pagination-desktop .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #959595!important;
    transition: all .75s ease;
    margin: 0 6px!important;
    opacity: 1;
}

.slider-pagination-desktop .swiper-pagination-bullet:hover,
.slider-pagination-desktop .swiper-pagination-bullet-active {
    transition: all .75s ease;
    background-color: #76BC28!important;
}

/* PRODUCTOS DESTACADOS */

.title-wrap {
    overflow: hidden;
}

.title-wrap .line {
    height: 1px;
    border-top: 1px solid #76BC28;
    top: 50%;
}

.titulo-destacado {
    padding: 10px 30px;
    z-index: 99;
}

.productos-destacados-cont a {
    font-size: 18px;
    letter-spacing: .09em;
    text-decoration: none;
    margin-bottom: 30px;
}

.productos-destacados-cont a img {
    margin-bottom: 15px;
}

.grid-cont {
    padding: 50px 0;
}

.grid-cont a img {
    opacity: 1;
    transition: all .75s ease;
}

.grid-cont a:hover img {
    opacity: .75;
    transition: all .75s ease;
}

.map-cont .texto {
    padding: 50px 0;
}

.map-cont .direccion-cont {
    padding-top: 50px;
}

.map-cont .icon {
    max-width: 20px;
    margin-bottom: 10px;
}

.map-leaflet-pages {
    height: 400px;
}

.map-leaflet-pages .leaflet-tile {
  filter: brightness(1.2) contrast(0.85);
}

footer.main {
    padding: 50px 0;
}

footer.main .logo {
    max-width: 280px;
}

footer.main .redes a {
    width: 18px;
    margin-left: 10px;
}

footer.main .redes a.wa {
    width: 24px;
    padding-top: 6px;
}

footer.main .data-cont {
    padding-top: 30px;
}

footer.main .legales-cont {
    padding-top: 30px;
    padding-bottom: 8px;
}

footer.main .localizacion {
    padding: 0 100px;
}

footer.main .telefono {
    margin-bottom: 5px;
}

footer.main .linea-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

footer.main .linea-info .icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  flex-shrink: 0;
  margin-top: 3px; /* ajuste fino vertical */
}

/* Íconos específicos */
footer.main .icon.telefono {
  width: 14px;
  height: 14px;
  background-image: url('img/tel.svg');
}

footer.main .icon.wa {
  width: 14px;
  height: 14px;
  background-image: url('img/wapp.svg');
}

footer.main .icon.direccion {
  width: 14px;
  height: 14px;
  background-image: url('img/marker.svg');
}

footer.main .icon.reloj {
  width: 14px;
  height: 14px;
  background-image: url('img/clock.svg');
}

footer.main .legales a {
    line-height: 0;
}

footer.main .legales-cont a:hover {
    color: #FFF;
}

/* SINGLES MOTOS & JETSKI */

.hero-cont {
    padding: 50px 0;
}

.hero-cont h1 {
    font-size: 22px;
    letter-spacing: .05em;
    margin-bottom: 15px;
}

.hero-cont .logo-cont {
    max-width: 250px;
}

.hero-cont .medidas-cont {
    margin-top: 50px;
}

.hero-cont .medidas-cont .icon {
    max-width: 65px;
}

.hero-cont .medidas-cont .textos {
    padding-left: 15px;
}

.hero-cont .medidas-cont p {
    font-size: 24px;
    letter-spacing: .05em;
    line-height: 1;
}

.hero-cont .medidas-cont .cilindrada,
.hero-cont .medidas-cont .potencia {
    margin-bottom: 5px;
}

/* FORM */

.cta-cont {
    padding: 50px 0;
}

.cta-cont h1 {
    font-size: 54px;
    line-height: 1;
}

.cta-cont .bajada {
    padding-top: 3px;
}

.form-cta form > p {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 0;
}

/* Cada campo */
.form-cta .wpcf7-form-control-wrap {
    flex: 1 1 17%;
    min-width: 160px;
}

.form-cta input::placeholder {
    color: #000;
}

/* Botón */
.form-cta input[type="submit"] {
    flex: 0 0 auto;
    background-color: #000;
    color: #76bc28;
    padding: 5px 30px;
    border-radius: 100px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.form-cta input[type="submit"]:hover {
    background-color: #272727;
}

.form-cta input:focus,
.form-cta select:focus {
    outline: none;
}

/* Estilo de inputs y selects */
.form-cta input[type="text"],
.form-cta input[type="email"],
.form-cta input[type="tel"],
.form-cta select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    padding: 10px 0;
    color: #000;
}

/* SPINNER */

/* Oculta completamente el spinner cuando no está activo */
.wpcf7-spinner {
    display: none !important;
    margin: 25px 0;
}
/* Cuando se envía el formulario, CF7 le agrega esta clase al form: .submitting */
.wpcf7 .submitting .wpcf7-spinner {
    display: inline-block !important;
}

/* AUTOFILL */

/* 🔧 FORM CTA (ID: 124) */
#wpcf7-f124-o1 input:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #000;
}

/* 🔧 FORM Post-Venta (ID: 130) */
#wpcf7-f130-o1 input:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0 1000px #e5e5e5 inset !important;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #000;
}

/* 🔧 FORM Contacto (ID: 131) */
#wpcf7-f131-o1 input:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0 1000px #e5e5e5 inset !important;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #000;
}

.wpcf7 input:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
}

.destacado-cont .textos-cont {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
}

.destacado-cont .textos-cont h2 {
    margin-bottom: 25px;
}

.destacado-cont .textos-cont .dest_2 p {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.destacado-cont .textos-cont .dest_2 strong {
    font-weight: 600;
}

/* El contenedor que simula el container Bootstrap */
.destacado-cont .textos-cont .contenido-central {
  max-width: 400px; /* simulando una columna de container */
  width: 100%;
}

.especificaciones-cont {
    padding: 80px 0;
}

/* MENSAJES DE VALIDACIÓN */

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 0;
    border: 0;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    display: inline-block;
}

.wpcf7-not-valid {
  border-bottom: 1px solid red !important;
  outline: none;
}

.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

/* ACCORDION */

#accordionEspecificaciones {
    margin-top: 40px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #959595;
  background: transparent
}

.accordion-button.custom-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 7px 0;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  font-size: 20px;
}

.accordion-button.custom-toggle:not(.collapsed) {
  color: #76BC28;
}

.accordion-body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #111;
  font-size: 16px;
  padding: 15px 0 25px 0;
  border-top: 1px solid #76BC28;
}

.accordion-body p {
    margin: 0;
}

.icono-toggle {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .icono-toggle {
  transform: rotate(45deg); /* "+" → "×" */
}

.accordion-button::after {
  display: none; /* Oculta el ícono nativo de Bootstrap */
}

.accordion-item:last-of-type {
    border-radius: 0;
}

/* Transiciones suaves */
.accordion-button {
  border: none !important;
  border-bottom: 1px solid #959595; /* línea base gris */
  border-radius: 0 !important;
  transition: border-color 0.3s ease, color 0.3s ease;
}

/* Hover en botón cerrado */
.accordion-button.collapsed:hover {
  border-bottom: 1px solid #76BC28;
  color: #76BC28;
}

/* Botón abierto (activo) */
.accordion-button:not(.collapsed) {
  border-bottom: 1px solid #76BC28;
  color: #76BC28;
}

.accordion-button::after {
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover: línea, texto e ícono verde */
.accordion-button.collapsed:hover {
  color: #76BC28; /* texto */
  border-bottom: 1px solid #76BC28; /* línea */
}

.accordion-button.collapsed:hover::after {
  filter: brightness(0) saturate(100%) invert(61%) sepia(40%) saturate(532%) hue-rotate(55deg) brightness(95%) contrast(96%);
}

/* Ítem abierto: mantiene el verde */
.accordion-button:not(.collapsed) {
  color: #76BC28;
  border-bottom: 1px solid #76BC28;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg); /* flecha convertida en X */
  filter: brightness(0) saturate(100%) invert(61%) sepia(40%) saturate(532%) hue-rotate(55deg) brightness(95%) contrast(96%);
}

.down-pdf {
    padding: 5px 15px 5px 18px;
    border: 2px solid #707070;
    background-color: transparent;
    border-radius: 25px;
    transition: all .75s ease;
}

.down-pdf:hover {
    border: 2px solid #76BC28;
    background-color: #76BC28;
    transition: all .75s ease;
}

.down-pdf:hover .legend {
    color: #707070;
    transition: all .75s ease;
}

.down-pdf:hover .legend {
    color: #FFF;
    transition: all .75s ease;
}

.down-pdf:hover .arrow {
    fill: #707070;
    transition: all .75s ease;
}

.down-pdf:hover .arrow {
    fill: #FFF;
    transition: all .75s ease;
}

.down-pdf .legend {
    margin-right: 10px;
}

.down-pdf .arrow svg {
  transition: color 0.3s ease;
  color: #707070;
}

.down-pdf:hover .arrow svg {
  transition: color 0.3s ease;
  color: #FFF;
}

/* GALERÍA */

.galeria-cont {
    padding: 80px 0;
}

.galeria-cont .galeria-thumbs {
    margin-top: 40px;
}

.galeria-cont .galeria-thumbs .thumb {
    padding-bottom: 25px;
}

.galeria-thumbs a .bg {
    opacity: 0;
    background-color: rgba(74, 74, 74, 0.5);
    transform: scale(0.95); /* levemente reducido */
    transition: all 0.75s ease;
}

.galeria-thumbs a .bg:hover {
    opacity: 1;
    background-color: rgba(39,39,39,0.5);
    transform: scale(1); /* levemente reducido */
    transition: all 0.75s ease;
}

/* SWIPER - GALERÍA */

.swiper-lightbox {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-lightbox img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}
.swiper-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.swiper-lightbox .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-lightbox .swiper-slide img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    height: auto;
}

.swiper-lightbox .swiper-pagination {
    bottom: 20px!important;
}

.swiper-lightbox .swiper-pagination-bullet {
    background: #272727;
    opacity: 1;
    transition: all .75s ease;
}

.swiper-lightbox .swiper-pagination-bullet:hover,
.swiper-lightbox .swiper-pagination-bullet-active {
    background: white;
    transition: all .75s ease;
}

.swiper-lightbox .swiper-button-prev::after,
.swiper-lightbox .swiper-button-next::after {
    font-size: 30px;    
    color: white;  
}

.swiper-lightbox .swiper-button-prev,
.swiper-lightbox .swiper-button-next {
  z-index: 10000; /* por encima del slide */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 30px;
  height: 30px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.swiper-lightbox .swiper-button-prev:hover,
.swiper-lightbox .swiper-button-next:hover {
  opacity: 1;
}

.swiper-lightbox .swiper-button-prev {
    margin-left: 20px;
}

.swiper-lightbox .swiper-button-next {
    margin-right: 20px;
}

/* Estado inicial (oculto) */
.swiper-lightbox {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98); /* levemente reducido */
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}

/* Estado visible con animación */
.swiper-lightbox.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1); /* vuelve a tamaño normal */
}

.swiper-zoom-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.swiper-lightbox {
    touch-action: none; /* permite zoom correctamente */
}

/* POST-VENTA & CONTACTO PAGES */

.header-pict {
    height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

    .header-pict.p-venta {
        background-image: url('img/bg-post-venta.jpg');
    }

    .header-pict.contacto {
        background-image: url('img/bg-contacto.jpg');
    }

.content-cont-pages {
    padding-bottom: 70px;
}

.content-cont-pages .inside {
    padding: 30px 10px;
}

.content-cont-pages .inside h1 {
    margin-bottom: 30px;
}

.content-cont-pages .inside p {
    padding-right: 80px;
}

.map-leaflet-pages {
    height: 350px;
    margin-bottom: 25px;
}

.content-cont-pages .linea-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.content-cont-pages .localizacion,
.content-cont-pages .telefonos {
    margin-bottom: 20px;
}

.content-cont-pages .icon.telefono {
    width: 14px;
    height: 14px;
    background-image: url(img/tel.svg);
    background-repeat: no-repeat;
    background-size: contain;
    filter: invert(1);
    margin-top: 3px;
}

.content-cont-pages .icon.wa {
    width: 14px;
    height: 14px;
    background-image: url(img/wapp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    filter: invert(1);
    margin-top: 3px;
}

.content-cont-pages .icon.direccion {
    width: 11px;
    height: 17px;
    background-image: url(img/marker.svg);
    background-repeat: no-repeat;
    background-size: contain;
    filter: invert(1);
    margin-top: 3px;
}

.content-cont-pages .icon.reloj {
    width: 13px;
    height: 17px;
    background-image: url(img/clock.svg);
    background-repeat: no-repeat;
    background-size: contain;
    filter: invert(1);
    margin-top: 3px;
}

.content-cont-pages .form-cont p {
    padding: 0;
}

.content-cont-pages input[type="text"], 
.content-cont-pages input[type="email"], .content-cont-pages input[type="tel"], 
.content-cont-pages textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #959595;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    padding: 0 0 5px 0;
    margin-bottom: 10px;
    transition: all .75s ease;
}

    .content-cont-pages textarea {
        height: 100px;
        resize: none;
        transition: all .75s ease;
    }

    .content-cont-pages textarea:focus {
        outline: none;
        border-bottom: 1px solid #000;
        transition: all .75s ease;
    }

.content-cont-pages input:focus {
    outline: none;
    border-bottom: 1px solid #000;
    transition: all .75s ease;
}

/* Botón */
.content-cont-pages input[type="submit"] {
    flex: 0 0 auto;
    background-color: #000;
    color: #FFF;
    padding: 5px 30px;
    border-radius: 100px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    float: right;
    margin-bottom: 15px;
}

.content-cont-pages input[type="submit"]:hover {
    background-color: #76BC28;
    color: #000;
    transition: all 0.3s ease;
}

.content-cont-pages .inside.contact-form {
    padding-top: 110px;
}  

/*/ MEDIA QUERIES  /////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* MOBILE */
@media (max-width: 576px) and (orientation: portrait) {
    header.main {
        padding: 15px 0;
    }
    header.main .logo {
        max-width: 250px;
    }
    .wrapper-body {
        padding-top: 61px;
    }
    button.hamb-menu {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: transparent;
        border: none;
        padding: 0;
        width: 32px;
        height: auto;
        z-index: 999;
        cursor: pointer;
        position: relative;
        touch-action: manipulation; /* evita delays en iOS */
        -webkit-tap-highlight-color: transparent; /* para evitar flashes grises */
    }
    button.hamb-menu .bar {
        display: block;
        width: 24px;
        height: 1.5px;
        background-color: #76BC28;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }
    /* Botón hamburguesa animado */
    .hamb-menu.active .bar:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }
    .hamb-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamb-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }
    .bar {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #76BC28;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }
    /* Panel oculto inicialmente (fuera del viewport) */
    .menu-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100%;
        background-color: #E2E4E3;
        box-shadow: -2px 0 10px rgba(0,0,0,0.2);
        z-index: 9998;
        transition: right 0.4s ease;
        padding: 60px 35px;
    }
    /* Visible cuando se agrega la clase */
    .menu-panel.visible {
        right: 0;
    }
    .menu-close {
        width: 35px;
        height: 35px;
        border: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9999;
        background: #76BC28;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s ease;
    }
    .menu-close:hover {
        background: #000;
    }
    h1, .h1 {
        font-size: 36px;
        line-height: 1;
    }
    h2, .h2 {
        font-size: 18px;
        line-height: 1.25;
    }

    .productos-destacados-cont {
        padding-top: 25px;
    }
    .titulo-destacado {
        padding: 10px 20px;
    }
    .productos-destacados-cont a {
        font-size: 22px;
    }
    .grid-cont {
        padding: 35px 0;
    }
    footer.main {
        padding: 35px 0;
    }
    footer.main .logo {
        max-width: 250px;
        margin: 0 auto;
        padding-bottom: 30px;
    }
    footer.main .linea-info {
        margin-bottom: 20px;
    }
    footer.main .atencion .linea-info {
        margin-bottom: 0;
    }
    footer.main .localizacion {
        padding: 0 40px;
    }
    footer.main .redes a.wa {
        margin-left: 0;
    }
    footer.main .legales-cont a {
        margin-bottom: 5px;
    }
    #mobileMenu #accordionMenu button.parents,
    #mobileMenu #accordionMenu .pages a {
        font-size: 24px;
        padding: 10px 0;
        letter-spacing: 0.025em;
        display: block;
        line-height: 1;
    }
    #mobileMenu #accordionMenu .childs {
        font-size: 20px;
        padding: 10px 0;
        letter-spacing: 0.025em;
        display: block;
        line-height: 1;
    }
    #mobileMenu #accordionMenu .accordion-item,
    #mobileMenu #accordionMenu .pages a,
    #mobileMenu #accordionMenu .childs {
        border: none;
        border-bottom: 1px solid #959595;
        background: transparent;
    }
    #mobileMenu #accordionMenu .accordion-body.sub .accordion-item:last-child,
    #mobileMenu #accordionMenu .accordion-body.sub .accordion .accordion-collapse ul li:last-child a,
    #mobileMenu #accordionMenu #collapseJetSki .accordion-body.sub ul li:last-child a  {
        border-bottom: none;
    }
    #mobileMenu #accordionMenu .accordion-body {
        border: none;
        padding: 0;
    }
    #mobileMenu #accordionMenu .accordion-button:focus {
        box-shadow: none !important;
        outline: none !important;
    }
    #mobileMenu #accordionMenu .accordion-body.sub,
    #mobileMenu #accordionMenu .accordion-body.sub .accordion-collapse,
    #mobileMenu #accordionMenu ul.productos {
        padding: 0 10px;
    }
    #mobileMenu #accordionMenu .sub-cat {
        padding-bottom: 0;
        border-bottom: none;
    }
    #mobileMenu #accordionMenu a:hover {
        color: #76BC28;
    }
    /* SINGLES */
    .hero-cont {
        padding: 35px 0;
    }
    .hero-cont h1 {
        font-size: 18px;
    }
    .hero-cont .logo-cont {
        max-width: 180px;
    }
    .hero-cont .medidas-cont {
        margin-top: 15px;
    }
    .hero-cont .medidas-cont .icon {
        max-width: 60px;
        margin-bottom: 15px;
    }
    .hero-cont .medidas-cont .textos {
        text-align: center;
        padding: 0;
    }
    .hero-cont .medidas-cont .items {
        margin-top: 25px;
    }
    .cta-cont h1 {
        font-size: 46px;
        line-height: 1;
        padding: 0px 45px;
    }
    .cta-cont .bajada {
        padding-top: 10px;
    }
    .cta-cont {
        padding: 35px 0;
    }
    .cta-cont .bajada {
        font-size: 18px;
        text-align: center;
        padding-top: 15px;
    }
    .form-cta {
        padding: 0 45px;
    }
    .form-cta form > p {
        display: block;
        margin-top: 20px;
    }
    .form-cta input[type="submit"] {
        margin: 25px auto 0;
        position: relative;
        display: block;
    }
    .form-cta input[type="text"], 
    .form-cta input[type="email"], 
    .form-cta input[type="tel"], 
    .form-cta select,
    .form-cta input[type="submit"] {
        text-align: center;
        font-size: 18px;
        text-align: center;
        text-align-last: center; /* iOS: centra la opción elegida */
    }
    .form-cta input[type="text"], 
    .form-cta input[type="email"], 
    .form-cta input[type="tel"],, 
    .form-cta select {
        border-radius: 0 !important;
    }
    .form-cta select.procedencia-select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 10px 6px;
        padding-right: 0; 
        font-size: 18px;
        text-align: center;
        text-align-last: center;
        border: none;
        border-bottom: 1px solid black;
        border-radius: 0;
        background-color: transparent;
    }
    input[type="text"], 
    input[type="email"], 
    input[type="tel"],
    textarea {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0 !important;
    }
    .destacado-cont .row {
        margin: 0;
    }
    .destacado-cont .textos-cont {
        padding: 50px;
    }
    .destacado-cont .textos-cont .contenido-central {
        max-width: unset;
    }
    .accordion-button.custom-toggle {
        font-size: 16px;
    }
    .especificaciones-cont {
        padding: 50px 0;
    }
    .especificaciones-cont .btn-mobile-cont {
        margin-top: 30px;
    }    
    .especificaciones-cont .btn-mobile-cont .down-pdf {
        max-width: 250px;
        margin: 0 auto;
    }
    .galeria-cont {
        padding: 50px 0;
    }
    .galeria-cont .galeria-thumbs .thumb {
        padding-bottom: 20px;
    }
    .galeria-cont .swiper-button-prev,
    .galeria-cont .swiper-button-next {
        display: none;
    }
    .swiper-lightbox .swiper-slide {
        touch-action: none;
    }
    .swiper-slide .swiper-zoom-container img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }
    .swiper-lightbox.swiper-zoom .swiper-slide .swiper-zoom-container img {
        max-width: none;
    }
    .slider-home .swiper-slide .data-cont-mobile {
        bottom: 50px;
    }
    .slider-home .swiper-slide .data-cont-mobile .logo {
        max-width: 220px;
    }
    .slider-pagination-mobile {
        position: static !important;
        margin: 15px 0 15px 0;
    }
    .slider-pagination-mobile .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #959595!important;
        transition: all .75s ease;
        margin: 0 6px!important;
        opacity: 1;
    }
    .slider-pagination-mobile .swiper-pagination-bullet:hover,
    .slider-pagination-mobile .swiper-pagination-bullet-active {
        transition: all .75s ease;
        background-color: #76BC28!important;
    }
    .bg-m-pages.postventa {
        height: 345px;
        background: url('img/bg-m-pages-postventa.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 40px 80px;
    }
    .bg-m-pages.contacto {
        height: 300px;
        background: url('img/bg-m-pages-contacto.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 40px;
    }
    .bg-m-pages h1 {
        margin-bottom: 15px;
    }
    .bg-m-pages h3 {
        line-height: 1.6;
    }
    .bg-m-pages.contacto .telefonos .linea-info:first-child {
        margin: 20px 0;
    }
    .bg-m-pages.contacto .telefonos h3 {
        letter-spacing: .025em;
        font-size: 17px;
    }
    .bg-m-pages.contacto .telefonos .icon {
        width: 20px;
        height: 20px;
        display: block;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .bg-m-pages.contacto .telefonos .icon {
        width: 20px;
        height: 20px;
        display: block;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        margin-bottom: 10px;
    }
    .bg-m-pages.contacto .telefonos .icon.wa {
        background: url('img/wa-verde.svg');
    }
    .bg-m-pages.contacto .telefonos .icon.telefono {
        background: url('img/phone-verde.svg');
    }
    .content-cont-pages, 
    .content-cont-pages .container {
        padding: 0;
    }
    .content-cont-pages .content-pad {
        padding: 40px 60px;
    }
    .content-cont-pages h1 {
        margin-bottom: 25px;
    }
    .content-cont-pages input[type="submit"] {
        margin: 0 auto;
        display: block;
        float: none;
    }
    .content-cont-pages .form-cont p {
        padding: 0;
        margin: 0;
    }
    .content-cont-pages .form-cont .wpcf7-response-output {
        margin: 35px 0 0 0;
    }
    .content-cont-pages .map-leaflet-pages {
        margin: 0;
    }
}

/* Solo mostrar .hamb-menu y #mobileMenu en mobile */
@media (min-width: 577px) {
    .hamb-menu, #mobileMenu {
        display: none !important;
    }
}


