@font-face {
    font-family: 'Yapari';
    src: url('fonts/yapari-semibold.woff2') format('woff2'),
        url('fonts/yapari-semibold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Brigends Expanded';
    src: url('fonts/brigends-expanded.woff2') format('woff2'),
        url('fonts/brigends-expanded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
:root {
    --firox-black: #000000;
    --firox-red: #e74510;
    --firox-red-25: #ce4827;
    --firox-wood: #4b1c0f;
    --firox-wet-ash: #bca18d;
    --firox-grey: #e3e3e2;
    --firox-grey25: #c2c0bf;
    --firox-grey-50: #767778;
    --firox-grey-80: #454748;
    --firox-grey-90: rgb(20,20,20);
    --firox-white: #ffffff;
    --whatsapp-green: #25D366;
}
html, body {
    height: 100%;
    background: var(--firox-white);
}
/* Backgrounds */
.bg-firox-grey { 
    background: var(--firox-grey) !important; 
}
.bg-firox-red { 
    background: var(--firox-red) !important; 
}
.bg-firox-white{ 
    background: var(--firox-white) !important; 
}
.bg-firox-grey-80 { 
    background: var(--firox-grey-80) !important; 
}
.bg-firox-grey-90 { 
    background: var(--firox-grey-90) !important; 
}
/*Text Color*/
.text-firox-red{
    color:var(--firox-red);
}
/* Typography */
body { 
    font-family: 'Exo', sans-serif; 
}
.section-title { 
    font-family: 'Brigends Expanded', sans-serif; 
    font-size: 2rem;
}
.yapari-tag{
    font-family:'Yapari',sans-serif !important;
}
@media (min-width:576px){
    .section-title{
        font-size: 2.1rem;
    }
}
@media (min-width:768px){
    .section-title{
        font-size: 2.2rem;
    }
}
@media (min-width:992px){
    .section-title{
        font-size: 2.3rem;
    }
}
@media (min-width:1200px){
    .section-title{
        font-size: 2.5rem;
    }
}
@media (min-width:1400px){
    .section-title{
        font-size: 2.7rem;
    }
}
.black-title { 
    color: black;
}
.price { 
    font-family:'Yapari',sans-serif !important;
    font-size:1.5rem !important; 
    color:var(--firox-red) !important; 
}
.product-title{ 
    font-family: 'Brigends Expanded', sans-serif; 
    color:var(--firox-red);
}
.product-tagline{ 
    font-family: 'Yapari', sans-serif; 
    color:var(--firox-black);
    font-size:1.3rem;
}
.product-subtitle { 
    font-family:'Exo',sans-serif; 
    font-weight:600; 
    color:var(--firox-grey-80) !important; 
    font-size:1.2rem; margin-bottom:1rem;
}
.features-title { 
    font-family:'Exo',sans-serif; 
    font-weight:600; 
    color: var(--firox-red);
    font-size:1.1rem; margin-bottom:1rem;
}
.feature-list { 
    padding-left: 0.5rem; 
    list-style: none; 
}
.feature-list li { 
    margin-bottom: .75rem; 
    display: flex; 
    align-items: center; 
    gap: 0.3em;
    font-size: 1.05rem;
}
.feature-icon { 
    color: var(--firox-red); 
    min-width: 1.6em; 
    font-size: 1.2em; 
    margin-right: 0.2em;
}
.feature-list strong {
  letter-spacing: normal;
}
.feature-list li strong::after {
  content: " ";
}

/* Navbar */
.navbar { 
    padding: 1rem 0; 
    background-color: var(--firox-black);
}
.navbar-toggler,
.navbar-toggler.collapsed {
  border-color: #fff !important; 
  box-shadow: none;
}
.navbar-toggler:focus, 
.navbar-toggler:hover 
.navbar-toggler:active{
  box-shadow: none;
  outline: none !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}
.navbar .nav-link { 
    color: var(--firox-white) !important; 
    margin: 0 1rem; 
    transition: color 0.3s; 
}
.navbar .nav-link:hover { 
    color: var(--firox-red) !important;
}
.navbar-brand img { 
    height: 22px; 
}
.navbar.fixed-top { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1030; 
}
@media(min-width:992px) {
    .navbar-brand img { 
    height: 26px; 
}
}
/* Botón pill */
.btn-pill {
    border-radius: 2rem;
    padding: 1rem;;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    max-width: 550px;
}
.btn-primary{
    background-color: white;
    border-color: var(--firox-black);
    border-width: 0.2rem;
    color: var(--firox-black);
}
.btn-primary:hover, .btn-primary:focus{
    background-color: var(--firox-grey) !important;
    border-color: var(--firox-black);
    border-width: 3px;
    color: var(--firox-black);
    transform: scale(1.02);
}
.btn-primary:focus, .btn-primary:active{
    background-color: var(--firox-grey) !important;
    border-color: var(--firox-black) !important;
    border-width: 3px !important;
    color: var(--firox-black) !important;
    box-shadow: none !important;
}
/* Botón pill WhatsApp*/
.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    border-color: var(--firox-black);
    border-width: 0.2rem;
    transition: background 0.18s, border-width 0.18s, color 0.18s;
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: #1ebd56;
    color: #fff;
    box-shadow: none;
    text-decoration: none;
    border-color: var(--firox-black);
    border-width: 0.2rem;
    transform: scale(1.02);
}
/*Botón compacto */
.btn-compact {
  padding-left: 1rem !important; 
  padding-right: 1rem !important;
  max-width: 300px !important;     
}

/* Comprar ahora Sticky*/
#sticky-cta-wrapper {
  position: fixed; /* Lo fija en la ventana del navegador */
  top: 0;          /* <--- Lo posiciona en la parte superior */
  left: 0;         /* Alineado a la izquierda */
  width: 100%;     /* Ocupa todo el ancho */
  z-index: 1050;   /* Asegura que esté por encima de la barra de navegación (si la tienes fija) */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Sombra sutil en la parte inferior */
  transform: translateY(-100%); /* <--- LO CAMBIAMOS: Inicialmente oculto fuera de la pantalla por arriba */
  transition: transform 0.3s ease-in-out; /* Transición suave para aparecer/desaparecer */
}

#sticky-cta-wrapper.show {
  transform: translateY(0); /* Muestra el CTA */
}

/* Ajusta el padding del body para que el contenido no quede oculto detrás del CTA */
/* Necesitarás sumar la altura de tu barra de navegación (navbar) fija Y la altura del CTA sticky. */
body {
  padding-top: 0; /* <--- LO CAMBIAMOS: Por ejemplo, 70px (navbar) + 60px (cta) = 130px */
}

/* Media query para pantallas más grandes si no quieres que el CTA sticky sea tan prominente */
@media (min-width: 992px) { /* Por ejemplo, para desktops */
  #sticky-cta-wrapper {
    display: none; /* Oculta el CTA sticky en pantallas grandes si lo deseas */
  }
}
/* HERO DOS COLUMNAS */
.two-col-hero {
    width: 100vw;
    min-height: 50vh;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}
.two-col-hero-row {
    min-height: 50vh;
}
.hero-left {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-right {
    background: url('img/hero-flame-mobile-02.jpg');
    background-size: cover;
    background-position: center;
    color: var(--firox-black);
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-text {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.hero-title {
    font-family: 'Yapari', sans-serif;
    font-size: 2rem;
    color: var(--firox-black);
    text-align: center;
}
@media (min-width: 1200px) {
    .two-col-hero {
    min-height: 70vh;
}
.two-col-hero-row {
    min-height: 70vh;
}
.hero-left {
    min-height: 70vh;
}
.hero-right {
    background: url('img/hero-bg-flame-xl-01.jpg');
    min-height: 70vh;
}
.hero-title {
    font-size: 3rem;
}
}
/* Big Video Hero */
.big-video-hero {
    position: relative;
    height: 90vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding: 0;
}
.hero-video-bg {
    position: absolute;
    top: 0; left: 0; 
    width: 100vw; 
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    min-width: 100%;
    min-height: 100%;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(70,70,70,0.6);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5vw;
    padding-right: 5vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.big-hero-title {
    font-family: 'Brigends Expanded', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.3rem;
    text-align: center;
}
.big-hero-sub {
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.22;
}
.btn-play-hero {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: none;
    transition: background 0.22s, transform 0.13s;
}
.btn-play-hero i {
  margin-left: 5px;
  font-size: 2rem;
}
.btn-play-hero:hover, .btn-play-hero:focus {
  background: #e74510;
  transform: translate(-50%, -50%) scale(1.07);
}
.modal-content {
  background-color: black !important;
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.modal-body {
  padding: 0 !important;
}
@media (max-width: 991.99px) {
    .big-hero-title { font-size: 2.6rem; }
    .big-hero-sub { font-size: 1.7rem; }
    .big-video-hero { height: 70vh; }
}
@media (max-width: 575.99px) {
    .big-hero-title { font-size: 2rem; }
    .big-hero-sub { font-size: 1.1rem; }
    .big-video-hero { height: 70vh; }
}
/* Big Image Hero */
.big-image-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0;
}
.hero-image-bg {
    position: absolute;
    top: 0; left: 0; 
    width: 100vw; 
    height: 100%;
    background: url('img/firox-r3-corn.jpg') center center / cover no-repeat;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(70,70,70,0.65);
    z-index: 1;
    pointer-events: none;
}
.big-image-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 3vw;
}
.big-image-hero-content .big-hero-title {
    font-family: 'Brigends Expanded', sans-serif;
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1.3rem;
    text-align: center;
}
.big-image-hero-content .big-hero-sub {
    font-family: 'Exo', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.3rem;
    text-align: center;
}
.big-image-hero-content .big-hero-text {
    text-align: center;
}
@media (max-width: 991.99px) {
    .big-image-hero-content .big-hero-title { font-size: 2.6rem; }
    .big-image-hero-content .big-hero-sub { font-size: 1.7rem; }
    .big-image-hero-content { padding-left: 3vw; }
    .big-image-hero { height: 70vh; }
}
@media (max-width: 575.99px) {
    .big-image-hero-content .big-hero-title { font-size: 2rem; }
    .big-image-hero-content .big-hero-sub { font-size: 1.3rem; }
    .big-image-hero-content { padding-left: 3vw; }
    .big-image-hero { height: 70vh; }
}
/*Firox Family*/
.firox-family {
    background-image: url('img/cover-firox-flame-01.jpg'); 
    background-size: cover; 
    background-position: center;
    min-height: 100vh;
    width: 100%;
    padding: 2rem 1rem 4rem;
    position: relative;
    z-index: 0;
}

.firox-family .section-title-container { 
    background-color: none; 
    padding: 2rem 0; 
    text-align: center; 
}
.firox-family .section-title { 
    font-size: 2.6rem; 
    color: white; 
    margin: 0; 
    text-transform: uppercase;
    font-family: 'Brigends Expanded', sans-serif; 
    margin: 1rem 0 0.75rem; 
}
@media (min-width: 1200px){
    .firox-family .section-title { 
        font-size: 3.6rem;
    }
}

.family-card {
    background-color: white;
    border-radius: 12px; 
    padding: 0.5rem;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.firox-family img { 
    max-height: 400px; 
    width: auto; 
    border-radius: none;
    background-color: transparent;
    transition: transform 0.3s ease; 
    margin-bottom: 1.5rem; 
}
.firox-family .product-link:hover { 
    transform: scale(1.02);
    filter: brightness(0.8) contrast(1.13) saturate(1.06);
    transition: filter 0.28s cubic-bezier(.4,0,.2,1);
}
.firox-family p { 
    font-family: 'Exo', sans-serif; 
    font-size: 1.25rem; 
    margin-bottom: 1.5rem; 
}
.firox-family .product-link { 
    text-decoration: none; 
    color: inherit; 
    display: block; 
    transition: color 0.3s; 
}
.firox-family .product-link:hover h1, 
.firox-family .product-link:hover p { 
    color: var(--firox-red); 
}
.r1-img {
    transform: scale(0.95);
}
/*Firox Video Card */
.firox-video-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 3px 18px rgba(0,0,0,0.09);
  padding: 1rem;
  transition: transform 0.16s, box-shadow 0.18s;
  cursor: pointer;
  min-height: 40vh;
}

.firox-video-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: box-shadow 0.16s;
}
.firox-video-thumb img {
  width: 100%;
  height: 30vh;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: filter 0.18s;
}
.firox-play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.9);
  border-radius: 50%;
  padding: 18px 20px;
  display: flex;
  align-items: center; 
  justify-content: center;
}
.firox-play-overlay i {
  font-size: 2rem;
  margin-left: 5px;
  color: #fff;
}
.firox-video-thumb:hover img,
.firox-video-thumb:focus img {
  filter: brightness(0.75) saturate(1.07);
}
.firox-video-thumb:hover .firox-play-overlay,
.firox-video-thumb:focus .firox-play-overlay {
  background: var(--firox-red);
}
.firox-video-title {
  font-family: 'Exo', sans-serif;
  font-size: 1.3rem;
  color: var(--firox-red);
  font-weight: 800;
}
.firox-video-desc {
  font-family: 'Exo', sans-serif;
  color: black;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
}
.btn-close.custom-close {
  margin-top: 12px !important;
  margin-right: 12px !important;
  background-color: none;
  border-radius: 8px;
  padding: 12px;
}
/* Product Section layout */
.firox-product .mySwiper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
}
.firox-product .swiper-wrapper {
    height: 70vh;
}
.firox-product .swiper-slide {
    display: flex;
    align-items: center;
    padding: 0;
}
.firox-product .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #fff;
}
@media (min-width: 1400px) {
    .firox-product .product-title{
    padding-top: 60px;
    }
    .firox-product .mySwiper {
    height: 100vh !important;
    }
    .firox-product .swiper-wrapper {
    min-height: 100vh;
    }
}
/*Swiper Pagination Bullets*/
.swiper-pagination-bullet { 
    width: 0.5rem; 
    height: 0.5rem; 
    border-radius: 0.25rem; 
    background: #eee;
    margin: 2rem 6px !important; 
    transition: background .3s, width .3s; 
    opacity: 1;
}
.swiper-pagination-bullet-active { 
    background: var(--firox-red); 
    width: 3rem;
}
@media (min-width: 1200px) {
    .swiper-pagination-bullet { 
    margin: 2rem 6px !important; 
    }
}
/*Swiper Pagination Carrousel Arrows*/
.carousel-arrow { 
    background: rgba(240,240,240,0.9); 
    border-radius: 50%; 
    width: 48px; 
    height: 48px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    border: none; 
    transition: background .2s;
}
.carousel-arrow svg { 
    width: 2.5rem; 
    height: 2.5rem; 
    stroke: black; 
    stroke-width: 1; 
    fill: none;
}
.carousel-arrow:hover { 
    background: var(--firox-red);
}
.carousel-arrow:hover svg { 
    stroke: #fff;
}
.swiper-button-prev-custom, .swiper-button-next-custom { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 10;
}
/*Swiper Product Button Positions*/
.swiper-button-prev-custom { left: 4rem;}
.swiper-button-next-custom { right: 4rem;}


/*Por que Firox Hero*/
.small-firox-hero {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0;
}
.small-firox-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1;
  pointer-events: none;
}
.small-firox-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-left: 3vw;
  padding-right: 3vw;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.small-hero-title { 
    font-size: 2rem; 
    font-family: 'Brigends Expanded', sans-serif;
}
.small-hero-subtitle{
    font-size: 1.5rem;
    font-family: 'Yapari', sans-serif;
}
.small-hero-text{
    font-size: 1.2rem;
    font-weight: 400;
}
@media(min-width: 992px){
    .small-hero-title { 
    font-size: 2.2rem; 
}
.small-hero-subtitle{
    font-size: 1.7rem;
    font-weight: 600;
}
.small-hero-text{
    font-size: 1.4rem;
    font-weight: 400;
}
}
@media(min-width: 1400px){
    .small-hero-title { 
    font-size: 2.5rem; 
}
.small-hero-subtitle{
    font-size: 1.9rem;
}
.small-hero-text{
    font-size: 1.6rem;
    font-weight: 400;
}
}
/* Key Features Swiper */
.key-features { 
    width: 100%; 
    background: rgb(20,20,20);
}
.key-features-swiper { 
    width: 100%;
}
.key-features-slide { 
    display: flex; 
    flex-direction: column; 
    background: transparent; 
    overflow: hidden;
}
.key-features-slide img { 
    width: 100%; 
    height: 30vh; 
    padding-left: 2rem; 
    padding-right: 2rem;
    object-fit: cover; 
    border-radius: 2rem;
}
.key-features-text { 
    padding: 2rem; 
}
.key-features-text h3 { 
    margin: 0 0 .5rem; 
    font-size: 1.4rem; 
    color: var(--firox-red); 
    font-family: 'Exo', sans-serif; 
    font-weight: 900;

}
.key-features-text p { 
    margin: 0; 
    font-size: 1rem; 
    color: white;
}
.key-prev, .key-next { 
    position: absolute; 
    top: 25%; 
    z-index: 10;
}
.key-prev { 
    left: 3rem;
}
.key-next { 
    right: 3rem;
}
@media (min-width: 576px) {
    .key-features-slide img { height: 40vh;}
    .key-features-text { padding: 2rem; }
    .key-features-text h3 { font-size: 1.5rem; }
    .key-features-text p { font-size: 1.05rem; }
}
@media (min-width: 768px) {
    .key-features-text { padding: 2rem; }
    .key-features-text h3 { font-size: 1.6rem; }
    .key-features-text p { font-size: 1.05rem; }
}
@media (min-width: 992px) {
    .key-features-text { padding: 2rem; }
    .key-features-text h3 { font-size: 1.7rem; }
    .key-features-text p { font-size: 1.1rem; }
}
@media (min-width: 1200px) {
    .key-features-text h3 { font-size: 1.8rem; }
    .key-features-text p { font-size: 1.12rem; }
}
@media (min-width: 1400px) {
    .key-features-text h3 { font-size: 1.9rem; }
    .key-features-text p { font-size: 1.14rem; }
}
/* ========================== */
/* Swiper de Documentos Firox */
/* ========================== */

/* Solo móvil: ajusta tamaño y márgenes del swiper */
.documentos-firox .docSwiper {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2.5rem; /* espacio para bullets */
}

.documentos-firox .docSwiper .swiper-slide {
    /* Simula el tamaño de las cards en grid */
    padding: 0 0.5rem;
    display: flex;
    height: auto;
}

.documentos-firox .docSwiper .doc-card {
    width: 100%;
    min-height: 270px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    border-radius: 1.1rem;
    background: var(--firox-grey-80);
    margin: 0 auto;
    transition: transform 0.18s;
}
.documentos-firox .docSwiper .doc-card:hover,
.documentos-firox .docSwiper .doc-card:focus-within {
    transform: translateY(-4px) scale(1.035);
}

/* Ajusta el espacio alrededor del icono en mobile */
.documentos-firox .docSwiper .icon-firox-doc {
    font-size: 2.1rem !important;
    top: 1.2rem;
    left: 1.2rem;
}
.documentos-firox .docSwiper .card-title {
    margin-top: 2.3rem;
    font-size: 1.21rem;
}
.documentos-firox .docSwiper .card-text {
    font-size: 1.05rem;
}

/* Pagination bullets: reutiliza la lógica de tus otros swipers pero refuerza color aquí */
.documentos-firox .docSwiper .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    text-align: center;
    z-index: 10;
}

.documentos-firox .docSwiper .swiper-pagination-bullet {
    width: 0.55rem;
    height: 0.55rem;
    background: rgba(220,220,220,0.55);
    opacity: 1;
    border-radius: 2px;
    margin: 0 8px !important;
    transition: background .25s, width .25s;
}

.documentos-firox .docSwiper .swiper-pagination-bullet-active {
    background: var(--firox-red);
    width: 2.5rem;
    border-radius: 0.5rem;
}

/* Mejoran el aspecto de las cards en pantallas más pequeñas */
@media (max-width: 600px) {
    .documentos-firox .docSwiper .doc-card {
        min-height: 200px;
        padding: 1.1rem 1.2rem;
    }
    .documentos-firox .docSwiper .card-title {
        margin-top: 1.7rem;
        font-size: 1.07rem;
    }
    .documentos-firox .docSwiper .card-text {
        font-size: 0.97rem;
    }
    .documentos-firox .docSwiper .icon-firox-doc {
        font-size: 1.5rem !important;
        top: 1rem;
        left: 1rem;
    }
}

/* DocSwiper: Botones navegación personalizados */
.documentos-firox .docSwiper .carousel-arrow {
    background: rgba(240,240,240,0.93);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    position: absolute;
    top: 40%;
    z-index: 11;
}
.documentos-firox .docSwiper .carousel-arrow svg {
    width: 2.5rem; 
    height: 2.5rem; 
    stroke: var(--firox-black);
    stroke-width: 1;
    fill: none;
    transition: stroke 0.2s;
}
.documentos-firox .docSwiper .carousel-arrow:hover {
    background: var(--firox-red);
}
.documentos-firox .docSwiper .carousel-arrow:hover svg {
    stroke: #fff;
}
.documentos-firox .docSwiper .doc-prev {
    left: 10px;
}
.documentos-firox .docSwiper .doc-next {
    right: 10px;
}
/* Oculta flechas si hay solo una slide */
.documentos-firox .docSwiper.swiper-container-horizontal .carousel-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}
/* Opcional: solo muestra flechas en móvil (ajusta si quieres) */
@media (min-width: 768px) {
    .documentos-firox .docSwiper .carousel-arrow {
        display: none !important;
    }
}
/*Accordion*/
.accordion-header { 
    border: none;
}
/* CERRADO (collapsed): texto rojo y borde gris SIEMPRE */
.accordion-button, .accordion-button.collapsed {
  border: none !important;
  color: var(--firox-red);
  border-bottom: 2px solid var(--firox-grey) !important;
  border-radius: 0 !important;
  font-weight: bold;
  background: transparent;
  box-shadow: none !important;
  transition: background 0.2s, color 0.18s, border-color 0.18s;
}
/* HOVER y FOCUS: texto negro y borde rojo */
.accordion-button:hover,
.accordion-button:focus-visible {
  background: transparent;
  color: var(--firox-grey-80) !important;
  border-bottom: 2px solid var(--firox-red) !important;
}
/* ABIERTO (expandido): texto negro y borde rojo */
.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--firox-grey-80) !important;
  border-bottom: 2px solid var(--firox-red) !important;
  box-shadow: none !important;
}
.accordion-item { 
    border: none !important; 
    background: transparent !important; 
    border-radius: 0 !important;
}
.accordion-body { 
    background: transparent !important;
}

/* Componentes Firox - Imagen y Callouts */
.whats-in-the-box { 
    background: #fff !important; 
    padding-top: 2.5rem; 
    padding-bottom: 1.5rem;
}
.callout-image-box { 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: none;
}
.callout-img { 
    width: 100%; 
    height: 70vh; 
    object-fit: contain; 
    object-position: top;
    box-shadow: none;
}
.callout-box { 
    position: absolute; 
    z-index: 2; 
}
.callout-label { 
    background: rgb(245,245,245); 
    color: black; 
    font-size: 1.1rem; 
    border-radius: 1.1rem; 
    padding: 0.45rem 0.9rem; 
    border: 0.15rem solid black; 
    font-family: 'Exo', Arial, sans-serif; 
    display: flex; 
    align-items: center; 
    white-space: nowrap; 
    font-weight: 600; 
    text-decoration: none !important;
}
.callout-box:hover .callout-label{
    background: var(--firox-red);
    color: #fff;
    text-decoration: none !important;
}
.callout-name { 
    font-family: 'Exo', sans-serif; 
    font-weight: 900;
    color: var(--firox-red); 
    font-size: 2rem; 
    margin-bottom: 0.16em; 
}
.callout-desc-text { 
    color: var(--firox-grey-80); 
    font-family: 'Exo', Arial, sans-serif; 
    font-size: 1.05rem; 
}
.callout-label {
    cursor: pointer;
    }
@media (min-width: 1200px) {
    .callouts-normal .callout-label:hover, 
    .callouts-normal .callout-label:focus {
        cursor: default !important;
    }
}
@media (min-width: 1400px) {
    .callout-img { 
        height: 80vh; 
    }
}
/*Usuario Firox */
.usuario-firox-title{
    font-size: 2rem;
}
.usuario-firox-lead {
    font-family: 'Exo', sans-serif;
    font-size: 1.5rem;
    color: black;
    font-weight: 600;
}
.usuario-firox-text {
    font-family: 'Exo', sans-serif;
    font-size: 1.1rem;
    color: var(--firox-grey-90);
}

@media (min-width: 1200px) {
    .usuario-firox-img-box {
        height: 60vh;
     }
    .usuario-firox-title{
        font-size: 2.2rem;
    }  
    .usuario-firox-lead {
        font-size: 1.6rem;
    }
    .usuario-firox-text {
        font-family: 'Exo', sans-serif;
        font-size: 1.15rem;
    }
}
@media (min-width: 1400px) {
    .usuario-firox-img-box {
        height: 100vh;
    }
    .usuario-firox .row {
        min-height: 100vh;
    }
    .usuario-firox-title{
        font-size: 2.4rem;
    }  
    .usuario-firox-lead {
        font-size: 1.7rem;
    }
    .usuario-firox-text {
        font-family: 'Exo', sans-serif;
        font-size: 1.2rem;
    }
}
/* Tabla */
.table { 
    border-collapse: separate !important; 
    border-spacing: 0 !important; 
    background: transparent;
}
.table th, .table td { 
    border: none !important; 
    background: none !important; 
    font-family: 'Exo', sans-serif; 
    font-size: 1rem; 
    vertical-align: middle; 
    text-align: left; 
    padding: 0.8rem 1rem;
}
.table thead tr { 
    background: var(--firox-red) !important;
}
.table thead th { 
    color: #fff !important; 
    background-color: black !important; 
    font-family: 'Exo', sans-serif; 
    font-size: 1.15rem; text-align: left; 
    font-weight: 600; border: none !important; 
    padding-top: 1rem; 
    padding-bottom: 1rem;
}
.table-striped > tbody > tr:nth-of-type(even) > * { 
    background-color: rgb(254,254,254) !important;
}
.table-striped > tbody > tr:nth-of-type(odd) > * { 
    background-color: rgb(250,250,250) !important;
}

/* Firox Documentos - Custom Section */
.documentos-firox .section-title {
    color: #fff;
}
.documentos-firox .doc-card {
    background: var(--firox-grey-80);
    min-height: 20vh;
    border-radius: none;
    position: relative;
    cursor: pointer;
    padding: 2.1rem 1.6rem 1.6rem 1.6rem;
}
.documentos-firox .card-text {
  color: #fff !important;
  margin-top: 0.85rem;
  font-size: 1.06rem;
}
.documentos-firox .card:hover,
.documentos-firox .card:focus-within {
    transform: translateY(-4px) scale(1.02);
}
.documentos-firox .card-body {
    color: #fff;
    position: relative;
    z-index: 2;
    pointer-events: none; /* Para evitar bloquear el link en todo el body */
}
.documentos-firox .icon-firox {
    color: var(--firox-red) !important;
}
.documentos-firox .card-title,
.documentos-firox .card-text {
    color: #fff !important;
}
.documentos-firox a.stretched-link {
    position: absolute;
    inset: 0;
    z-index: 3;
    text-decoration: none;
    color: inherit;
}
.documentos-firox .card-body {
  align-items: flex-start !important;  /* Alinea icono y texto a la izquierda */
  text-align: left !important;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}
.icon-firox-doc {
  font-size: 2.1rem !important; 
  color: var(--firox-red) !important;
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
}
.icon-firox-whatsapp {
  color: #25D366 !important; /* WhatsApp green */
}
.documentos-firox .card-title {
  margin-top: 2.4rem; /* Empuja el título debajo del icono */
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 1400px) {
  .documentos-firox .doc-card {
    min-height: 420px;
    padding: 2.6rem 2.3rem 2rem 2.3rem;
  }
  .icon-firox-doc {
    font-size: 2.4rem !important;
    top: 1.7rem;
    left: 1.7rem;
  }
  .documentos-firox .card-title {
    margin-top: 3.2rem;
    font-size: 1.5rem;
  }
  .documentos-firox .card-text {
    font-size: 1.13rem;
  }
}
.firox-link { 
    color: var(--firox-red) !important; 
    font-weight: 600;
}
.firox-link:hover, .firox-link:focus { 
    color: var(--firox-red-25) !important;
}
.firox-link-white { 
    color: white !important; font-weight: 600;
}
.firox-link-white:hover, .firox-link:focus { 
    color: var(--firox-red) !important;
}
/* Manifiesto Firox */
.about-manifiesto {
    background: var(--firox-white);
    padding: 4rem 0 2.5rem;
}
.about-manifiesto .section-title {
    color: var(--firox-red);
    font-size: 2.6rem;
    text-align: left;
    margin-bottom: 3rem;
    font-family: 'Brigends Expanded', sans-serif;
    text-transform: uppercase;
}
.manifiesto-title {
    font-family: 'Exo', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--firox-black);
    margin-bottom: .45rem;
    letter-spacing: -0.5px;
    line-height: 1.08;
}
.manifiesto-text{
    font-size: 1.1rem;
}
@media (max-width: 991.98px) {
    .manifiesto-title {
    font-size: 2.1rem;
    }
    .manifiesto-text{
    font-size: 1.05rem;
    }
}
@media (max-width: 767.98px) {
    .manifiesto-title {
    font-size: 1.5rem;
    }
    .manifiesto-text{
    font-size: 1rem;
    } 
}
/*Historia Firox*/
.about-historia{
    background-color: var(--firox-grey);
}
.about-historia .row {
    align-items: stretch !important;
    vertical-align: middle;
    }
.about-historia-img-box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
    position: relative;         
    display: flex !important;
    align-items: stretch !important;
    padding: 0;
    margin: 0;
}
.about-historia-img {
    border-radius: 0.2rem;
    width: 100%;                /* <-- Añadido para que el <img> llene el box */
    height: 100%;               /* <-- Añadido para que el <img> llene el box */
    padding: 0;
    margin: 0;
    border-radius: 0 !important;
    object-fit: cover;          /* Esto asegura que siempre llene el espacio */
    display: block;
    max-height: none;           /* Nunca limitemos la altura máxima */
}
.about-historia-title {
    font-family: 'Brigends Expanded', sans-serif;
    font-size: 2.3rem;
    color: var(--firox-red);
}
.about-historia-lead {
    font-family: 'Exo', sans-serif;
    font-size: 1.5rem;
    color: var(--firox-black);
    font-weight: 600;
}
.about-historia-text {
    font-family: 'Exo', sans-serif;
    font-size: 1.1rem;
    color: var(--firox-grey-80);
}
/* Footer */
footer { 
    background-color: var(--firox-wood); 
    color: #fff; 
    padding: 2rem 0; 
}
footer a { 
    color: var(--firox-white); 
    text-decoration: none; 
    transition: color 0.3s; 
}
footer a:hover { 
    color: var(--firox-red) !important; 
}

/* WhatsApp Floating Button */

.firox-contact-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 5000;
}

.firox-wa-btn {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%; /* Esto hace el botón completamente redondo */
    width: 60px; /* Misma medida de ancho y alto */
    height: 60px;
    display: flex; /* Usamos flexbox para centrar el contenido */
    align-items: center; /* Centra verticalmente los ítems hijos */
    justify-content: center; /* Centra horizontalmente los ítems hijos */
    font-size: 1.45rem; /* Este tamaño puede ser para el ícono si no se especifica en i */
    box-shadow: none; /* Asegura que no haya sombra inesperada */
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
    outline: none; /* Elimina el borde de enfoque por defecto */
    padding: 0; /* Elimina el padding por defecto del botón */
}

.firox-wa-btn:hover {
    background: #1ebd56;
    transform: scale(1.04);
}

/* Estilo para el ícono de WhatsApp */
.firox-wa-btn i {
    font-size: 2rem; /* Tamaño explícito para el ícono. Asegúrate de que el ícono no tenga márgenes que puedan afectar el centrado */
    margin: 0; 
    line-height: 1; /* Ayuda con el centrado vertical */
}

@media (max-width: 600px) {
    .firox-wa-btn {
        border-radius: 50%;
        height: 48px;
        width: 48px;
        font-size: 1.3rem; /* Ajusta el tamaño de la fuente para el botón si es necesario */
        padding: 0;
        justify-content: center; /* Asegura el centrado en pantallas pequeñas */
    }
    .firox-wa-btn i { /* Reajusta el tamaño del ícono si es necesario para móviles */
        font-size: 1.8rem; /* Un poco más pequeño para el botón móvil */
    }
    .firox-contact-widget {
        right: 12px;
        bottom: 14px;
    }
    .wa-text {
        display: none; /* <--- Ya está oculto, pero lo mantenemos para claridad en la media query */
    }
}
