/*==================================================
GomiPower Store
Autor: Edward Cuellar + ChatGPT
Versión: 2.0
==================================================*/

/*==================================================
01. Variables
==================================================*/

:root{

  /*==================================
  Tipografía
  ==================================*/

  --default-font: "Roboto", system-ui, sans-serif;
  --heading-font: "Nunito Sans", sans-serif;
  --nav-font: "Raleway", sans-serif;

  /*==================================
  Colores (Modo Oscuro)
  ==================================*/

  --background-color: #276f9e;
  --surface-color: hsl(205, 82%, 48%);
  --card-bg: #1B2A35;

  --heading-color: #FFFFFF;
  --default-color: #E8EDF1;
  --contrast-color: #FFFFFF;

  --text-soft: #C3CDD4;
  --text-dark: #FFFFFF;
  --text-muted: #B5C1C9;

  --accent-color: #E3A127;
  --accent-hover: #F0B84A;
  --accent-soft: rgba(227,161,39,.18);

  /*==================================
  Header
  ==================================*/

  --header-bg: rgba(11,19,27,.82);
  --header-bg-scroll: rgba(7,12,18,.95);

  /*==================================
  Navegación
  ==================================*/

  --nav-color: rgba(255,255,255,.90);
  --nav-hover-color: var(--accent-color);

  --nav-mobile-background: #18232A;
  --nav-dropdown-background: #1F2D35;

  /*==================================
  Bordes
  ==================================*/

  --border-soft: rgba(255,255,255,.10);
  --divider-color: rgba(255,255,255,.12);

  /*==================================
  Layout
  ==================================*/

  --container-width: 1320px;

  --section-padding: 100px;

  --header-height: 90px;

  /*==================================
  Radios
  ==================================*/

  --card-radius: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --pill-radius: 999px;

  /*==================================
  Sombras
  ==================================*/

  --shadow-sm: 0 10px 25px rgba(0,0,0,.15);
  --shadow-md: 0 20px 45px rgba(0,0,0,.25);
  --shadow-lg: 0 30px 60px rgba(0,0,0,.35);

  /*==================================
  Transiciones
  ==================================*/

  --transition: .35s ease;

}
/*==================================================
Tema Claro
==================================================*/

body.light-mode{

  --background-color:hsl(210, 90%, 73%);
  --surface-color:#FFFFFF;
  --card-bg:#FFFFFF;

  --heading-color:#17212B;
  --default-color:#334155;
  --contrast-color:#FFFFFF;

  --text-soft:#64748B;
  --text-dark:#17212B;
  --text-muted:#6B7280;

  --header-bg:rgba(255,255,255,.82);
  --header-bg-scroll:rgba(255,255,255,.95);

  --border-soft:rgba(0,0,0,.08);
  --divider-color:rgba(0,0,0,.08);

}

/*==================================================
02. Reset & General
==================================================*/

/*==================================
Reset
==================================*/

*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/*==================================
HTML
==================================*/

html{
  scroll-behavior:smooth;
}

/*==================================
Body
==================================*/

body{
  font-family:var(--default-font);
  font-size:16px;
  font-weight:400;
  line-height:1.6;

  color:var(--default-color);
  background:var(--background-color);

  overflow-x:hidden;

  text-rendering:optimizeLegibility;

  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/*==================================
Selección de texto
==================================*/

::selection{
  background:var(--accent-color);
  color:var(--contrast-color);
}

/*==================================
Imágenes
==================================*/

img{
  display:block;
  max-width:100%;
  height:auto;
}

/*==================================
Enlaces
==================================*/

a{
  color:inherit;
  text-decoration:none;
  transition:var(--transition);
}

a:hover{
  color:var(--accent-color);
}

/*==================================
Listas
==================================*/

ul,
ol{
  list-style:none;
}

/*==================================
Botones
==================================*/

button{
  font:inherit;
  cursor:pointer;

  border:none;
  outline:none;
  background:none;
}

/*==================================
Formularios
==================================*/

input,
textarea,
select{
  font:inherit;
  color:inherit;
  background:transparent;

  border:none;
  outline:none;
}

/*==================================
Tipografía
==================================*/

h1,
h2,
h3,
h4,
h5,
h6{
  margin:0 0 1rem;

  font-family:var(--heading-font);
  font-weight:700;
  line-height:1.2;

  color:var(--heading-color);
}

p{
  margin:0 0 1rem;

  color:var(--text-soft);

  line-height:1.8;
}

strong{
  font-weight:700;
}

/*==================================
Secciones
==================================*/

section,
.section{
  position:relative;

  padding:var(--section-padding) 0;

  overflow:hidden;

  background:var(--background-color);
}

/*==================================
Responsive Media
==================================*/

video,
iframe{
  display:block;
  max-width:100%;
}


/*==================================================
03. Utilidades
==================================================*/

/*==================================
Texto
==================================*/

.text-center{
  text-align:center;
}

.text-left{
  text-align:left;
}

.text-right{
  text-align:right;
}

.text-accent{
  color:var(--accent-color);
}

.text-white{
  color:var(--contrast-color);
}

.text-soft{
  color:var(--text-soft);
}

.text-dark{
  color:var(--text-dark);
}

.text-muted{
  color:var(--text-muted);
}

/*==================================
Fondos
==================================*/

.bg-surface{
  background:var(--surface-color);
}

.bg-card{
  background:var(--card-bg);
}

.bg-glass{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

/*==================================
Sombras
==================================*/

.shadow-sm{
  box-shadow:var(--shadow-sm);
}

.shadow-md{
  box-shadow:var(--shadow-md);
}

.shadow-lg{
  box-shadow:var(--shadow-lg);
}

/*==================================
Bordes
==================================*/

.rounded-sm{
  border-radius:var(--radius-sm);
}

.rounded-md{
  border-radius:var(--radius-md);
}

.rounded-lg{
  border-radius:var(--card-radius);
}

.rounded-pill{
  border-radius:var(--pill-radius);
}

/*==================================
Flex
==================================*/

.d-flex-center{
  display:flex;
  align-items:center;
  justify-content:center;
}

.d-flex-between{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.d-flex-column{
  display:flex;
  flex-direction:column;
}

/*==================================
Espaciado
==================================*/

.mt-section{
  margin-top:var(--section-padding);
}

.mb-section{
  margin-bottom:var(--section-padding);
}

.py-section{
  padding-top:var(--section-padding);
  padding-bottom:var(--section-padding);
}

/*==================================
Transiciones
==================================*/

.transition{
  transition:var(--transition);
}

/*==================================
Visibilidad
==================================*/

.hidden{
  display:none !important;
}

.overflow-hidden{
  overflow:hidden;
}

/*==================================
Accesibilidad
==================================*/

.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/*==================================================
04. Header
==================================================*/

.header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;

  padding: 1.25rem 0;

  background: transparent;

  transition: var(--transition);
}

/*==================================
Contenedor
==================================*/

.header-container{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: .85rem 1.75rem;

  border-radius: var(--pill-radius);

  background: var(--header-bg);

  border: 1px solid var(--border-soft);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: var(--shadow-md);

  isolation: isolate;

  transition: var(--transition);
}

/*==================================
Logo
==================================*/

.logo{
  display: flex;
  align-items: center;
  gap: .75rem;

  flex-shrink: 0;
}

.logo img{
  width: 50px;
  height: auto;
}

.logo .sitename{
  margin: 0;

  color: var(--contrast-color);

  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 800;

  white-space: nowrap;

  transition: var(--transition);
}

/*==================================
Botón Comenzar
==================================*/

.btn-getstarted{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: .85rem 1.8rem;

  border-radius: var(--pill-radius);

  background: var(--accent-color);
  color: var(--contrast-color);

  font-weight: 700;

  white-space: nowrap;

  transition: var(--transition);
}

.btn-getstarted:hover{
  background: var(--accent-hover);

  color: var(--contrast-color);

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}

/*==================================
Dark Mode Toggle
==================================*/

.theme-toggle{
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: transparent;

  color: var(--contrast-color);

  cursor: pointer;

  overflow: hidden;

  transition: var(--transition);
}

.theme-toggle i{
  font-size: 1.15rem;

  transition: var(--transition);
}

.theme-toggle:hover{
  background: rgba(255,255,255,.08);
}

.theme-toggle:hover i{
  transform: rotate(18deg);
}

/*==================================================
HEADER COMPACTO AL HACER SCROLL
==================================================*/

.header{
  transition: padding .35s ease;
}

.header .header-container{
  transition:
    padding .35s ease,
    max-width .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}


/* Cuando hacemos scroll */

body.scrolled .header{
  padding-top: 8px;
  padding-bottom: 8px;
}

body.scrolled .header-container{
  padding-top: 8px;
  padding-bottom: 8px;

  background: var(--header-bg-scroll);

  box-shadow: var(--shadow-md);
}


/* Logo más pequeño */

body.scrolled .header .logo img{
  width: 42px;
}


/* Botón más compacto */

body.scrolled .header .btn-getstarted{
  padding: 11px 24px;
}


/* Toggle */

body.scrolled .header .theme-toggle{
  width: 40px;
  height: 40px;
}
/*==================================
Responsive
==================================*/

@media (max-width:991px){

  .header{
    padding: .75rem 0;
  }

  .header-container{
    padding: .75rem 1rem;

    border-radius: var(--radius-lg);
  }

  .logo img{
    width: 44px;
  }

  .logo .sitename{
    display: none;
  }

  .btn-getstarted{
    display: none;
  }

}
/*==================================================
HEADER - CORRECCIÓN RESPONSIVE FINAL
==================================================*/

/* Desktop */
@media (min-width:1200px){

  .mobile-nav-toggle{
    display:none !important;
  }

}


/* Tablet + móvil */
@media (max-width:1199px){

  .header-container{
    display:flex;
    align-items:center;

    width:calc(100% - 24px);
    max-width:none;

    margin:0 12px;

    padding:8px 14px;

    border-radius:20px;
  }


  /* Logo */

  .logo{
    display:flex;
    align-items:center;

    margin-right:auto;
  }

  .logo img{
    width:42px;
    height:42px;
  }


  /* Navegación */

  .navmenu{
    flex:0 0 auto;

    display:flex;
    align-items:center;

    margin:0;
  }


  /* Hamburguesa */

  .mobile-nav-toggle{
    display:block !important;

    position:relative;

    margin-left:6px;

    font-size:27px;
    line-height:1;

    color:var(--heading-color);

    cursor:pointer;

    z-index:10002;
  }


  /* Tema */

  .theme-toggle{
    width:38px;
    height:38px;

    margin-left:8px;
  }


  /* Ocultamos comenzar */

  .btn-getstarted{
    display:none !important;
  }


  /* Menú desplegable */

  .navmenu ul{
    position:absolute;

    top:calc(100% + 10px);
    left:12px;
    right:12px;

    display:flex;
    flex-direction:column;
    align-items:stretch;

    gap:4px;

    margin:0;
    padding:14px;

    border:1px solid var(--border-soft);
    border-radius:18px;

    background:var(--surface-color);

    box-shadow:var(--shadow-lg);

    opacity:0;
    visibility:hidden;

    transform:translateY(-10px);

    pointer-events:none;

    transition:var(--transition);
  }


  .navmenu ul li{
    width:100%;
  }


  .navmenu ul a{
    display:block;

    width:100%;

    padding:12px 14px;

    border-radius:10px;

    color:var(--default-color);
  }


  .navmenu ul a:hover,
  .navmenu ul a.active{
    color:var(--accent-color);

    background:var(--accent-soft);
  }


  /* Abrir menú */

  body.mobile-nav-active .navmenu ul{
    opacity:1;
    visibility:visible;

    transform:translateY(0);

    pointer-events:auto;
  }

}


/*==================================================
TELÉFONOS
==================================================*/

@media (max-width:575px){

  .header{
    padding:8px 0;
  }


  .header-container{
    min-height:62px;

    width:calc(100% - 20px);

    margin:0 10px;

    padding:7px 10px;

    border-radius:17px;
  }


  /* Logo */

  .logo{
    gap:7px;
  }

  .logo img{
    width:40px;
    height:40px;
  }

  .logo .sitename{
    font-size:.78rem;
  }


  /* Luna / Sol */

  .theme-toggle{
    width:34px;
    height:34px;

    margin-left:auto;
  }


  /* Hamburguesa */

  .mobile-nav-toggle{
    margin-left:5px;

    font-size:25px;
  }


  /* Panel */

  .navmenu ul{
    top:calc(100% + 8px);

    left:10px;
    right:10px;
  }

}


/* Teléfonos muy estrechos */

@media (max-width:360px){

  .logo .sitename{
    display:none;
  }

}
/*==================================================
Menú Navegación
==================================================*/

.navmenu{

    display:flex;

    align-items:center;

    margin-left:auto;

}

.navmenu ul{

    display:flex;

    align-items:center;

    gap:2rem;

    margin:0;
    padding:0;

    list-style:none;

}

.navmenu li{

    margin:0;

}

.navmenu a{

    position:relative;

    color:var(--text-soft);

    font-weight:600;

    transition:var(--transition);

}

.navmenu a:hover,
.navmenu .active{

    color:var(--accent-color);

}

.navmenu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--accent-color);

    transition:.35s;

}

.navmenu a:hover::after,
.navmenu .active::after{

    width:100%;

}
/*==================================================
06. Hero
==================================================*/

.hero{

min-height:auto;

padding-top:180px;

padding-bottom:120px;

}

/*==================================
Contenido
==================================*/

.hero .content{
  max-width:620px;
}

.hero .main-heading{
  margin-bottom:2rem;
}

.hero .main-heading h1{

  margin:0;

  font-family:var(--heading-font);

  font-size:clamp(3rem,6vw,5.5rem);

  font-weight:900;

  line-height:1.05;

  color:var(--heading-color);

}

.hero .divider{

  width:90px;
  height:4px;

  margin:2rem 0;

  border-radius:10px;

  background:var(--accent-color);

}

/*==================================
Descripción
==================================*/

.hero .service-heading{

  margin-bottom:2.5rem;

}

.hero .service-heading p{

  margin:0;

  font-size:1.08rem;

  line-height:1.9;

  color:var(--text-soft);

}

/*==================================
Botón
==================================*/

.hero .btn{

  display:inline-flex;

  align-items:center;

  gap:12px;

  padding:1rem 2rem;

  border-radius:var(--pill-radius);

  background:var(--accent-color);

  color:var(--contrast-color);

  font-weight:700;

  transition:var(--transition);

}

.hero .btn i{

  font-size:1.1rem;

  transition:var(--transition);

}

.hero .btn:hover{

  background:var(--accent-hover);

  color:var(--contrast-color);

  transform:translateY(-3px);

  box-shadow:var(--shadow-md);

}

.hero .btn:hover i{

  transform:translateX(5px);

}

/*==================================
Video
==================================*/

.hero .visual-content{

  display:flex;

  align-items:center;

  justify-content:center;

}

.hero .fluid-shape{

  width:100%;

}

.hero .fluid-img{

  width:100%;

  border-radius:30px;

  box-shadow:var(--shadow-lg);

  animation:heroFloat 7s ease-in-out infinite;

}

/*==================================
Animación
==================================*/

@keyframes heroFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*==================================
Responsive
==================================*/

@media (max-width:991px){

.hero{

text-align:center;

padding:8rem 0 5rem;

}

.hero .content{

max-width:100%;

}

.hero .divider{

margin:2rem auto;

}

.hero .service-heading{

margin-bottom:2rem;

}

.hero .visual-content{

margin-top:3rem;

}

.hero .btn{

justify-content:center;

}

}

@media (max-width:576px){

.hero{

padding:7rem 0 4rem;

}

.hero .main-heading h1{

font-size:2.7rem;

}

.hero .service-heading p{

font-size:1rem;

}

.hero .fluid-img{

border-radius:20px;

}

}
/* =========================================
   AJUSTE ALTURA HERO - GOMIPOWER
========================================= */

.hero {
  min-height: auto !important;
  height: auto !important;
  padding-top: 180px;
  padding-bottom: 90px;
}

#services {
  margin-top: 0 !important;
  padding-top: 70px;
}
/*==================================================
07. Productos
==================================================*/

.services{
    background:var(--background-color);
}

.service-card{

    position:relative;

    height:100%;

    padding:2rem;

    background:var(--card-bg);

    border-radius:var(--card-radius);

    border:1px solid var(--border-soft);

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(227,161,39,.25);

}
.service-icon{

    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(227,161,39,.12);

    font-size:2.2rem;

    transition:var(--transition);

}

.service-card:hover .service-icon{

    transform:scale(1.1) rotate(8deg);

}
.card-action{

    position:absolute;

    top:18px;
    right:18px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--accent-color);

    color:#fff;

    transition:var(--transition);

}

.card-action:hover{

    background:var(--accent-hover);

    transform:rotate(45deg);

}
.service-card h3{

    margin-bottom:18px;

    font-size:1.45rem;

    font-weight:800;

    line-height:1.3;

}

.service-card h3 a{

    color:var(--text-dark);

}

.service-card span{

    display:block;

}
.service-card p{

    margin:0;

    color:var(--text-muted);

    line-height:1.8;

    font-size:.95rem;

}
@media(max-width:991px){

.service-card{

padding:1.8rem;

}

}

@media(max-width:576px){

.service-card{

padding:1.5rem;

}

.service-card h3{

font-size:1.25rem;

}

}
/*==================================================
06. SERVICES / OBJETIVOS
==================================================*/

.services{
  position:relative;

  padding:70px 0 100px;

  background:var(--background-color);

  overflow:hidden;
}

@media (min-width:1200px){

  .services .service-header{
    margin-bottom:35px;
  }

}
/*==================================================
Encabezado
==================================================*/

.services .service-header{
  margin-bottom:55px;
}

.services .service-intro{
  max-width:780px;
}

.services .service-heading{
  margin:0;

  font-family:var(--heading-font);

  font-size:clamp(2rem,3vw,3rem);
  font-weight:800;
  line-height:1.15;

  color:var(--heading-color);
}

.services .service-heading div{
  display:block;
}

.services .service-heading span{
  display:block;

  margin-top:8px;

  color:var(--accent-color);
}


/*==================================================
Resumen
==================================================*/

.services .service-summary{
  padding-left:25px;
}

.services .service-summary p{
  margin-bottom:20px;

  color:var(--text-soft);

  font-size:1rem;
  line-height:1.8;
}


/*==================================================
Botón
==================================================*/

.services .service-btn{
  display:inline-flex;
  align-items:center;

  gap:10px;

  color:var(--heading-color);

  font-weight:700;

  transition:var(--transition);
}

.services .service-btn i{
  transition:var(--transition);
}

.services .service-btn:hover{
  color:var(--accent-color);
}

.services .service-btn:hover i{
  transform:translateX(5px);
}


/*==================================================
Tarjetas
==================================================*/

.services .service-card{
  position:relative;

  height:100%;

  min-height:440px;

  padding:32px;

  overflow:hidden;

  background:var(--card-bg);

  border:1px solid var(--border-soft);

  border-radius:var(--card-radius);

  box-shadow:var(--shadow-sm);

  transition:var(--transition);
}

.services .service-card:hover{
  transform:translateY(-8px);

  border-color:var(--accent-color);

  box-shadow:var(--shadow-lg);
}


/*==================================================
Icono
==================================================*/

.services .service-icon{
  width:78px;
  height:78px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:25px;

  border-radius:50%;

  background:var(--accent-soft);

  transition:var(--transition);
}

.services .service-card:hover .service-icon{
  transform:scale(1.06);
}


/*==================================================
Flecha
==================================================*/

.services .card-action{
  position:absolute;

  top:20px;
  right:20px;

  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:var(--accent-color);

  color:#fff;

  transition:var(--transition);
}

.services .card-action i{
  font-size:1.2rem;
}

.services .card-action:hover{
  background:var(--accent-hover);

  color:#fff;

  transform:rotate(45deg);
}


/*==================================================
Título tarjeta
==================================================*/

.services .service-card h3{
  margin-bottom:18px;

  padding-right:20px;

  font-size:1.45rem;
  font-weight:800;
  line-height:1.3;
}

.services .service-card h3 a{
  color:var(--text-dark);
}

.services .service-card h3 a:hover{
  color:var(--accent-color);
}

.services .service-card h3 span{
  display:block;
}


/*==================================================
Descripción
==================================================*/

.services .service-card p{
  margin:0;

  color:var(--text-muted);

  font-size:.98rem;
  line-height:1.75;
}


/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

  .services{
    padding:80px 0;
  }

  .services .service-header{
    margin-bottom:40px;
  }

  .services .service-summary{
    margin-top:25px;
    padding-left:0;
  }

  .services .service-card{
    min-height:400px;
  }

}


/*==================================================
MÓVIL
==================================================*/

@media(max-width:575px){

  .services{
    padding:45px 0 60px;
  }


  /*--------------------------------
  Título de sección
  --------------------------------*/

  .services .section-title{
    margin-bottom:25px;

    text-align:left;
  }

  .services .section-title h2{
    margin-bottom:6px;

    font-size:1rem;
    line-height:1.3;
  }

  .services .section-title div{
    font-size:.72rem;
  }


  /*--------------------------------
  Encabezado
  --------------------------------*/

  .services .service-header{
    margin-bottom:28px;
  }

  .services .service-intro{
    width:100%;
  }

  .services .service-heading{
    font-size:1.35rem;
    line-height:1.2;
  }

  .services .service-heading span{
    margin-top:5px;
  }


  /*--------------------------------
  Resumen
  --------------------------------*/

  .services .service-summary{
    margin-top:18px;
    padding:0;
  }

  .services .service-summary p{
    margin-bottom:14px;

    font-size:.88rem;
    line-height:1.7;
  }

  .services .service-btn{
    font-size:.85rem;
  }


  /*--------------------------------
  Tarjetas
  --------------------------------*/

  .services .row{
    --bs-gutter-y:18px;
  }

  .services .service-card{
    min-height:0;

    padding:24px 20px;

    border-radius:20px;
  }


  /* Icono */

  .services .service-icon{
    width:64px;
    height:64px;

    margin-bottom:20px;
  }

  .services .service-icon span{
    font-size:32px !important;
  }


  /* Flecha */

  .services .card-action{
    top:16px;
    right:16px;

    width:42px;
    height:42px;
  }


  /* Título */

  .services .service-card h3{
    padding-right:25px;

    font-size:1.2rem;
    line-height:1.3;

    margin-bottom:14px;
  }


  /* Texto */

  .services .service-card p{
    font-size:.88rem;
    line-height:1.7;
  }

}
/*==================================================
AJUSTE FINO TARJETAS SERVICES
==================================================*/

.services .row{
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.services .service-card{
  padding: 32px;

  border: 1px solid var(--border-soft);

  border-radius: 24px;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.services .service-card:hover{
  transform: translateY(-8px);

  border-color: var(--accent-color);

  box-shadow: 0 25px 55px rgba(0,0,0,.22);
}

.services .service-card h3{
  font-size: 1.45rem;
  line-height: 1.35;
}

.services .service-card p{
  font-size: .96rem;
  line-height: 1.7;
}


/* Icono */

.services .service-icon{
  transition: transform .35s ease;
}

.services .service-card:hover .service-icon{
  transform: scale(1.08) rotate(-4deg);
}


/* Flecha */

.services .card-action{
  transition:
    transform .35s ease,
    background .35s ease;
}

.services .service-card:hover .card-action{
  transform: rotate(45deg);
  background: var(--accent-hover);
}
/*==================================================
CATÁLOGO GOMIPOWER
Cards con información deslizante
==================================================*/

.portfolio .portfolio-item{
  position:relative;

  margin-bottom:24px;
}


/*==================================================
CARD
==================================================*/

.portfolio .product-card{
  position:relative;

  width:100%;

  aspect-ratio:1 / 1;

  overflow:hidden;

  border-radius:24px;

  background:#050505;

  border:1px solid var(--border-soft);

  box-shadow:var(--shadow-sm);

  cursor:pointer;

  isolation:isolate;

  transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;
}


/*==================================================
IMAGEN
==================================================*/

.portfolio .product-image{
  position:absolute;

  inset:0;

  width:100%;
  height:100%;

  overflow:hidden;
}

.portfolio .product-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform .7s cubic-bezier(.2,.6,.2,1);
}


/*==================================================
DEGRADADO
==================================================*/

.portfolio .product-card::after{
  content:"";

  position:absolute;

  inset:0;

  z-index:1;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.88) 30%,
      rgba(0,0,0,.45) 55%,
      rgba(0,0,0,.08) 78%,
      transparent 100%
    );

  opacity:0;

  pointer-events:none;

  transition:opacity .45s ease;
}


/*==================================================
INFORMACIÓN
==================================================*/

/*==================================================
INFORMACIÓN DESLIZANTE DEL PRODUCTO
==================================================*/

.portfolio .product-body{
  position: absolute;

  left: 0;
  right: 0;
  bottom: 18px; /* antes estaba en 0 */

  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 20px 24px;

  transform: translateY(105%);
  opacity: 0;

  transition:
    transform .5s cubic-bezier(.22,.61,.36,1),
    opacity .35s ease;
}

.portfolio .product-card:hover .product-body{
  transform: translateY(0);
  opacity: 1;
}

/*==================================================
HOVER
==================================================*/

.portfolio .product-card:hover .product-body{
  transform: translateY(0);
  opacity: 1;
}


/*==================================================
TÍTULO
==================================================*/

.portfolio .product-body h3{
  margin: 0 0 10px;

  color: #fff;

  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}


/*==================================================
DESCRIPCIÓN
==================================================*/

.portfolio .product-body p{
  margin: 0 0 12px;

  color: rgba(255,255,255,.82);

  font-size: .86rem;
  line-height: 1.5;

  max-height: 4.5em;
  overflow: hidden;
}
@media (min-width: 992px){

  .portfolio .product-body p{
    display: none;
  }

}

/*==================================================
PRECIO
==================================================*/

.portfolio .product-price{
  margin: 0 0 14px;
}

.portfolio .product-price .price{
  color: var(--accent-color);

  font-size: 1.3rem;
  font-weight: 900;
}
.portfolio .product-card{
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Categoría */

.portfolio .product-category{
  display:inline-block;

  margin-bottom:8px;

  color:var(--accent-color);

  font-size:.78rem;
  font-weight:800;

  text-transform:uppercase;
  letter-spacing:.08em;
}


/* Nombre */

.portfolio .product-body h3{
  margin:0 0 10px;

  color:#fff;

  font-size:1.5rem;
  font-weight:800;
  line-height:1.2;
}


/* Descripción */

.portfolio .product-body p{
  margin:0 0 14px;

  color:rgba(255,255,255,.80);

  font-size:.9rem;
  line-height:1.55;
}
/*==================================================
CONTENEDOR DEL CATÁLOGO
==================================================*/

.portfolio .catalogo-wrapper{
  width: 100%;
  max-width: 1240px;

  margin: 0 auto;

  padding-left: 24px;
  padding-right: 24px;
}
/*==================================================
SEPARACIÓN ENTRE PRODUCTOS
==================================================*/

#catalogo-productos{
  --bs-gutter-x: 24px;
  --bs-gutter-y: 28px;

  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1400px){

  .portfolio .catalogo-wrapper{
    max-width: 1280px;

    padding-left: 32px;
    padding-right: 32px;
  }

}
@media (max-width: 575px){

  .portfolio .catalogo-wrapper{
    padding-left: 16px;
    padding-right: 16px;
  }

  #catalogo-productos{
    --bs-gutter-x: 16px;
    --bs-gutter-y: 18px;
  }

}
/*==================================================
CATÁLOGO - FIX RESPONSIVE MÓVIL
==================================================*/

@media (max-width: 767px){

  /* Evita desbordamiento horizontal */
  .portfolio{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .portfolio .catalogo-wrapper{
    width: 100%;
    max-width: 100%;

    margin: 0 auto;
    padding: 0 16px;

    overflow: hidden;
  }


  /*==================================
  Filtros
  ==================================*/

  .portfolio .portfolio-filters{
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap: 10px;

    margin: 0 0 35px;
    padding: 0;

    overflow: visible;
  }

  .portfolio .portfolio-filters li{
    flex: 0 0 auto;

    max-width: 100%;

    white-space: normal;

    padding: 10px 14px;

    font-size: .75rem;
  }


  /*==================================
  ROW BOOTSTRAP
  ==================================*/

  #catalogo-productos{
    width: 100%;

    margin-left: 0;
    margin-right: 0;

    --bs-gutter-x: 0;
    --bs-gutter-y: 20px;
  }


  /*==================================
  COLUMNAS
  ==================================*/

  #catalogo-productos > .portfolio-item{
    width: 100%;
    max-width: 100%;

    flex: 0 0 100%;

    padding-left: 0;
    padding-right: 0;

    margin-bottom: 20px;
  }


  /*==================================
  CARD
  ==================================*/

  .portfolio .product-card{
    width: 100%;
    max-width: 100%;

    aspect-ratio: 1 / 1;

    margin: 0;

    overflow: hidden;

    border-radius: 20px;
  }


  /*==================================
  IMAGEN
  ==================================*/

  .portfolio .product-image{
    width: 100%;
    max-width: 100%;
  }

  .portfolio .product-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

}
@media (max-width: 767px){

  /* Más aire después de los filtros */
  .portfolio .portfolio-filters{
    margin-bottom: 32px;
  }

  /* Tarjetas un poco más contenidas */
  #catalogo-productos{
    padding-left: 4px;
    padding-right: 4px;
  }

  /* Separación vertical */
  #catalogo-productos > .portfolio-item{
    margin-bottom: 24px;
  }

  /* Card */
  .portfolio .product-card{
    border-radius: 18px;
  }

}
/*==================================================
PRECIO
==================================================*/

.portfolio .product-price{
  margin-bottom:16px;
}

.portfolio .product-price .price{
  color:var(--accent-color);

  font-family:var(--heading-font);

  font-size:1.35rem;
  font-weight:900;
}


/*==================================================
BOTÓN
==================================================*/

.portfolio .product-body .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:11px 20px;

  border:0;
  border-radius:999px;

  background:var(--accent-color);

  color:#fff;

  font-size:.85rem;
  font-weight:800;

  transition:var(--transition);
}

.portfolio .product-body .btn:hover{
  background:var(--accent-hover);

  color:#fff;

  transform:translateY(-2px);
}


/*==================================================
HOVER
==================================================*/

.portfolio .product-card:hover{
  transform:translateY(-8px);

  border-color:var(--accent-color);

  box-shadow:var(--shadow-lg);
}

.portfolio .product-card:hover::after{
  opacity:1;
}

.portfolio .product-card:hover .product-image img{
  transform:scale(1.08);
}

.portfolio .product-card:hover .product-body{
  transform:translateY(0);

  opacity:1;
}


/*==================================================
TABLET
==================================================*/

@media(max-width:991px){

  .portfolio .product-card{
    border-radius:20px;
  }

  .portfolio .product-body{
    padding:22px;
  }

  .portfolio .product-body h3{
    font-size:1.3rem;
  }

}


/*==================================================
MÓVIL / DISPOSITIVOS TÁCTILES
==================================================*/

@media(max-width:767px){

  .portfolio .portfolio-item{
    margin-bottom:18px;
  }

  .portfolio .product-card{
    aspect-ratio:1 / 1;

    border-radius:20px;
  }


  /*
  En móvil no dependemos del hover.
  Mostramos información permanentemente.
  */

  .portfolio .product-card::after{
    opacity:1;

    background:
      linear-gradient(
        to top,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.55) 38%,
        transparent 68%
      );
  }

  .portfolio .product-body{
    

    transform:translateY(0);

    opacity:1;
  }

  .portfolio .product-category{
    font-size:.7rem;
  }

  .portfolio .product-body h3{
    margin-bottom:6px;

    font-size:1.2rem;
  }


  /*
  En móvil reducimos información
  para no tapar el producto.
  */

  .portfolio .product-body p{
    display:none;
  }

  .portfolio .product-price{
    margin-bottom:10px;
  }

  .portfolio .product-price .price{
    font-size:1.15rem;
  }

  .portfolio .product-body .btn{
    padding:9px 16px;

    font-size:.78rem;
  }

}

/*==================================
Wrapper
==================================*/

.catalogo-wrapper{
    width: 100%;
    margin: 0 auto;
}

/*==================================
Título
==================================*/

.portfolio .section-title{
    margin-bottom: 4rem;
}

.portfolio .section-title h2{
    margin-bottom: .75rem;

    color: var(--accent-color);

    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.portfolio .section-title div{

    font-size: clamp(2rem,4vw,3rem);

    font-family: var(--heading-font);

    font-weight: 800;

    color: var(--heading-color);

}

.portfolio .description-title{

    color: var(--accent-color);

}
/* =========================================
   AJUSTE ESPACIO SERVICES → PORTFOLIO
========================================= */

#services {
    padding-bottom: 40px;
}

#portfolio {
    padding-top: 40px;
}
/*==================================
Filtros
==================================*/

.portfolio-filters{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:14px;

    margin:0 0 4rem;

    padding:0;

}

.portfolio-filters li{

    display:flex;

    align-items:center;

    gap:8px;

    padding:.9rem 1.4rem;

    border-radius:var(--pill-radius);

    background:var(--surface-color);

    border:1px solid var(--border-soft);

    color:var(--text-soft);

    font-size:.95rem;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.portfolio-filters li:hover{

    background:var(--accent-color);

    color:var(--contrast-color);

    transform:translateY(-3px);

}

.portfolio-filters .filter-active{

    background:var(--accent-color);

    color:var(--contrast-color);

    box-shadow:var(--shadow-md);

}

/*==================================
Grid Productos
==================================*/

#catalogo-productos{

    min-height:300px;

}

/*==================================
Animaciones
==================================*/

.portfolio-filters li i{

    font-size:1rem;

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.portfolio-filters{

justify-content:flex-start;

overflow-x:auto;

padding-bottom:10px;

scrollbar-width:none;

}

.portfolio-filters::-webkit-scrollbar{

display:none;

}

}

@media(max-width:576px){

.portfolio{

padding:80px 0;

}

.portfolio-filters li{

font-size:.9rem;

padding:.8rem 1.2rem;

white-space:nowrap;

}

}

/*==================================================
AJUSTE DESKTOP CATÁLOGO
==================================================*/

@media (min-width: 1200px){

  #catalogo-productos > .portfolio-item{
    width: 25%;
  }

  .portfolio .product-card{
    aspect-ratio: 1 / .82;
  }

  .portfolio .product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}
/* =========================================
   AJUSTE PORTFOLIO → NOSOTROS
========================================= */

#portfolio {
    padding-bottom: 20px;
}

#nosotros {
    padding-top: 25px;
}
/*==================================================
08. Nosotros
==================================================*/

.about-brand{
    position:relative;
    padding:var(--section-padding) 0;
    background:var(--background-color);
}
/* =========================================
   AJUSTE NOSOTROS → COMO COMPRAR
========================================= */

#nosotros {
    padding-bottom: 30px;
}

#steps {
    padding-top: 40px;
}
/* =========================================
   AJUSTE COMO COMPRAR → CALL TO ACTION
========================================= */

#steps {
    padding-bottom: 20px;
}

#call-to-action {
    padding-top: 30px;
}
/* =========================================
   AJUSTE CTA → PRECIOS
========================================= */

#call-to-action {
    padding-bottom: 20px;
}

#pricing {
    padding-top: 30px;
}
/* =========================================
   AJUSTE PRECIOS → CONTACTO
========================================= */

#pricing {
    padding-bottom: 20px;
}

#contact {
    padding-top: 30px;
}
/*==================================
Encabezado
==================================*/

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-bottom:1.5rem;

    padding:.75rem 1.5rem;

    border-radius:var(--pill-radius);

    background:rgba(227,161,39,.12);

    color:var(--accent-color);

    font-size:.85rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;

}

.about-brand .section-title{

    margin-bottom:1.5rem;

    color:var(--heading-color);

    font-size:clamp(2rem,4vw,3rem);

    font-weight:800;

}

.section-description{

    max-width:700px;
    margin:auto;

    color:var(--text-soft);

    font-size:1.05rem;
    line-height:1.9;

}

/*==================================
Imagen
==================================*/

.about-image{

    overflow:hidden;

    border-radius:var(--card-radius);

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.about-image img{

    width:100%;

    transition:transform .7s ease;

}

.about-image:hover{

    transform:translateY(-8px);

}

.about-image:hover img{

    transform:scale(1.06);

}

/*==================================
Contenido
==================================*/

.about-content{

    padding-left:2rem;

}

.mini-title{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--accent-color);

    font-size:.9rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;

}

.about-content h3{

    margin-bottom:1.5rem;

    color:var(--heading-color);

    font-size:clamp(2rem,3vw,2.8rem);

    font-weight:800;

    line-height:1.2;

}

.about-content p{

    color:var(--text-soft);

    line-height:1.9;

    margin-bottom:1.25rem;

}

/*==================================
Botón
==================================*/

.btn-about{

    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:1rem;

    padding:1rem 2rem;

    border-radius:var(--pill-radius);

    background:var(--accent-color);

    color:var(--contrast-color);

    font-weight:700;

    transition:var(--transition);

}

.btn-about:hover{

    background:var(--accent-hover);

    color:var(--contrast-color);

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-about i{

    transition:var(--transition);

}

.btn-about:hover i{

    transform:translateX(5px);

}

/*==================================
Valores
==================================*/

.value-card{

    height:100%;

    padding:2rem;

    background:var(--card-bg);

    border:1px solid var(--border-soft);

    border-radius:var(--card-radius);

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.value-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.value-icon{

    width:80px;
    height:80px;

    margin:0 auto 1.5rem;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(227,161,39,.12);

    font-size:2rem;

    transition:var(--transition);

}

.value-card:hover .value-icon{

    transform:scale(1.1) rotate(8deg);

}

.value-card h4{

    margin-bottom:1rem;

    color:var(--text-dark);

    font-size:1.2rem;
    font-weight:700;

}

.value-card p{

    margin:0;

    color:var(--text-muted);

    line-height:1.7;

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

    .about-content{

        padding-left:0;
        margin-top:3rem;

        text-align:center;

    }

    .section-description{

        max-width:100%;

    }

}

@media(max-width:576px){

    .about-image{

        border-radius:20px;

    }

    .value-card{

        padding:1.6rem;

    }

}
/*==================================================
09. Cómo Comprar
==================================================*/

.steps{
    position:relative;
    background:var(--background-color);
}

/*==================================
Timeline
==================================*/

.steps-wrapper{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.steps-wrapper::before{

    content:"";

    position:absolute;

    top:0;
    bottom:0;
    left:50%;

    width:3px;

    transform:translateX(-50%);

    background:var(--accent-soft);

}

/*==================================
Item
==================================*/

.step-item{

    position:relative;

    margin-bottom:4rem;

}

.step-item:last-child{

    margin-bottom:0;

}

.step-item:nth-child(even) .step-content{

    flex-direction:row-reverse;

}

.step-content{

    display:flex;

    align-items:center;

    gap:2rem;

}

/*==================================
Icono
==================================*/

.step-icon{

    width:80px;
    height:80px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--card-bg);

    border:2px solid var(--accent-soft);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    z-index:2;

}

.step-icon i{

    font-size:2rem;

    color:var(--accent-color);

    transition:var(--transition);

}

.step-item:hover .step-icon{

    transform:scale(1.08) rotate(8deg);

}

.step-item:hover .step-icon i{

    transform:scale(1.08);

}

/*==================================
Tarjeta
==================================*/

.step-info{

    flex:1;

    padding:2rem;

    background:var(--card-bg);

    border:1px solid var(--border-soft);

    border-radius:var(--card-radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.step-item:hover .step-info{

    transform:translateY(-8px);

    border-color:rgba(227,161,39,.25);

    box-shadow:var(--shadow-lg);

}

/*==================================
Texto
==================================*/

.step-number{

    display:inline-block;

    margin-bottom:.75rem;

    color:var(--accent-color);

    font-size:.85rem;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

}

.step-info h3{

    margin-bottom:1rem;

    color:var(--text-dark);

    font-size:1.35rem;

    font-weight:700;

}

.step-info p{

    margin:0;

    color:var(--text-muted);

    line-height:1.8;

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.steps-wrapper::before{

left:40px;

}

.step-content{

flex-direction:row !important;

gap:1.5rem;

}

.step-icon{

width:65px;
height:65px;

}

.step-icon i{

font-size:1.5rem;

}

}

@media(max-width:576px){

.steps{

padding:80px 0;

}

.steps-wrapper::before{

left:25px;

}

.step-content{

gap:1rem;

}

.step-icon{

width:50px;
height:50px;

}

.step-icon i{

font-size:1.2rem;

}

.step-info{

padding:1.5rem;

}

.step-info h3{

font-size:1.15rem;

}

.step-info p{

font-size:.95rem;

}

}
/*==================================================
10. Call To Action
==================================================*/

.call-to-action{

    position:relative;

    background:var(--background-color);

}

/*==================================
Contenedor
==================================*/

.advertise-1{

    position:relative;

    overflow:hidden;

    padding:4rem;

    border-radius:var(--card-radius);

    background:linear-gradient(
        135deg,
        var(--surface-color),
        rgba(27,38,44,.85)
    );

    border:1px solid var(--border-soft);

    box-shadow:var(--shadow-lg);

}

/*==================================
Contenido
==================================*/

.content-left{

    position:relative;

    z-index:2;

}

.content-left .badge{

    display:inline-flex;

    padding:.7rem 1.4rem;

    border-radius:var(--pill-radius);

    background:rgba(227,161,39,.12);

    color:var(--accent-color);

    font-size:.8rem;

    font-weight:700;

    letter-spacing:.08em;

}

.content-left h2{

    margin:1.5rem 0;

    font-size:clamp(2.3rem,4vw,3.4rem);

    font-weight:800;

    color:var(--heading-color);

}

.content-left p{

    color:var(--text-soft);

    line-height:1.9;

    max-width:650px;

}

/*==================================
Beneficios
==================================*/

.features{

    margin:2rem 0;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:.75rem;

}

.feature-item i{

    color:var(--accent-color);

    font-size:1.2rem;

}

.feature-item span{

    color:var(--text-soft);

}

/*==================================
Botones
==================================*/

.cta-buttons{

    margin-top:2rem;

}

.btn-primary{

    padding:1rem 2rem;

    border:none;

    border-radius:var(--pill-radius);

    background:var(--accent-color);

    color:var(--contrast-color);

    font-weight:700;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--accent-hover);

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-outline{

    padding:1rem 2rem;

    border-radius:var(--pill-radius);

    border:2px solid var(--accent-color);

    color:var(--accent-color);

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--accent-color);

    color:var(--contrast-color);

}

/*==================================
Imagen
==================================*/

.content-right{

    position:relative;

}

.content-right img{

    border-radius:var(--card-radius);

    box-shadow:var(--shadow-lg);

}

/*==================================
Tarjeta flotante
==================================*/

.floating-card{

    position:absolute;

    left:-30px;

    bottom:30px;

    display:flex;

    align-items:center;

    gap:1rem;

    padding:1rem 1.4rem;

    border-radius:18px;

    background:var(--card-bg);

    box-shadow:var(--shadow-lg);

}

.card-icon{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(227,161,39,.12);

}

.card-icon i{

    color:var(--accent-color);

    font-size:1.4rem;

}

.stats-number{

    display:block;

    font-size:1.4rem;

    font-weight:800;

    color:var(--text-dark);

}

.stats-text{

    color:var(--text-muted);

}

/*==================================
Decoración
==================================*/

.circle-1,
.circle-2{

    position:absolute;

    border-radius:50%;

    background:rgba(227,161,39,.08);

}

.circle-1{

    width:220px;

    height:220px;

    top:-90px;

    right:-90px;

}

.circle-2{

    width:160px;

    height:160px;

    bottom:-70px;

    left:-70px;

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.advertise-1{

padding:2.5rem;

}

.content-right{

margin-top:3rem;

}

.floating-card{

position:relative;

left:auto;

bottom:auto;

margin-top:1.5rem;

}

}

@media(max-width:576px){

.advertise-1{

padding:2rem;

}

.content-left h2{

font-size:2rem;

}

.btn-primary,
.btn-outline{

width:100%;

justify-content:center;

}

}

/*==================================================
11. Planes y Precios
==================================================*/

.pricing{
    background:var(--background-color);
}

/*==================================
Tarjeta
==================================*/

.pricing-card{

    position:relative;

    height:100%;

    display:flex;
    flex-direction:column;

    padding:2.5rem;

    background:var(--card-bg);

    border:1px solid var(--border-soft);

    border-radius:var(--card-radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.pricing-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(227,161,39,.25);

}

/*==================================
Plan Destacado
==================================*/

.pricing-card.popular{

    border:2px solid var(--accent-color);

    transform:scale(1.03);

}

.pricing-card.popular:hover{

    transform:scale(1.03) translateY(-10px);

}

/*==================================
Etiqueta Popular
==================================*/

.popular-tag{

    position:absolute;

    top:20px;
    right:20px;

    padding:.45rem 1rem;

    border-radius:var(--pill-radius);

    background:var(--accent-color);

    color:var(--contrast-color);

    font-size:.75rem;

    font-weight:700;

    text-transform:uppercase;

}

/*==================================
Header
==================================*/

.plan-header{

    text-align:center;

    margin-bottom:2rem;

}

.plan-icon{

    width:80px;
    height:80px;

    margin:0 auto 1.5rem;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(227,161,39,.12);

}

.plan-icon i{

    font-size:2rem;

    color:var(--accent-color);

}

.plan-header h3{

    margin-bottom:.75rem;

    color:var(--text-dark);

    font-size:1.6rem;

    font-weight:800;

}

.plan-header p{

    color:var(--text-muted);

}

/*==================================
Precio
==================================*/

.plan-pricing{

    text-align:center;

    margin-bottom:2rem;

}

.price{

    display:flex;

    justify-content:center;
    align-items:flex-end;

    gap:4px;

}

.currency{

    font-size:1.5rem;

    color:var(--accent-color);

    font-weight:700;

}

.amount{

    font-size:3rem;

    font-weight:900;

    color:var(--heading-color);

    line-height:1;

}

.period{

    margin-bottom:8px;

    color:var(--text-muted);

}

/*==================================
Características
==================================*/

.plan-features{

    flex:1;

}

.plan-features ul{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.plan-features li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    color:var(--text-muted);

    line-height:1.7;

}

.plan-features i{

    color:var(--accent-color);

    margin-top:2px;

}

/*==================================
Botón
==================================*/

.plan-cta{

    margin-top:2rem;

}

.btn-plan{

    width:100%;

    display:flex;

    justify-content:center;
    align-items:center;

    padding:1rem;

    border-radius:var(--pill-radius);

    background:var(--accent-color);

    color:var(--contrast-color);

    font-weight:700;

    transition:var(--transition);

}

.btn-plan:hover{

    background:var(--accent-hover);

    color:var(--contrast-color);

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.pricing-card{

padding:2rem;

}

.pricing-card.popular{

transform:none;

}

.pricing-card.popular:hover{

transform:translateY(-10px);

}

}

@media(max-width:576px){

.pricing{

padding:80px 0;

}

.amount{

font-size:2.4rem;

}

.plan-header h3{

font-size:1.4rem;

}

}
/*==================================================
12. Contacto
==================================================*/

.contact{
    background:var(--background-color);
}

/*==================================
Información de Contacto
==================================*/

.contact-info-box{

    height:100%;

    display:flex;
    align-items:flex-start;
    gap:1.2rem;

    padding:2rem;

    background:var(--card-bg);

    border:1px solid var(--border-soft);

    border-radius:var(--card-radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.contact-info-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.icon-box{

    width:70px;
    height:70px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(227,161,39,.12);

}

.icon-box i{

    font-size:1.8rem;

    color:var(--accent-color);

}

.info-content h4{

    margin-bottom:.75rem;

    color:var(--text-dark);

    font-size:1.2rem;

    font-weight:700;

}

.info-content p{

    margin:0;

    color:var(--text-muted);

    line-height:1.8;

}

/*==================================
Mapa
==================================*/

.map-section{

    margin-top:5rem;

    overflow:hidden;

    border-radius:var(--card-radius);

}

.map-section iframe{

    width:100%;
    height:450px;

    display:block;

    border:none;

}

/*==================================
Formulario
==================================*/

.form-container-overlap{

    margin-top:4rem;

}

.contact-form-wrapper{

    padding:3rem;

    background:var(--card-bg);

    border:1px solid var(--border-soft);

    border-radius:var(--card-radius);

    box-shadow:var(--shadow-lg);

}

.contact-form-wrapper h2{

    margin-bottom:2rem;

    text-align:center;

    color:var(--heading-color);

    font-size:2rem;

    font-weight:800;

}

/*==================================
Inputs
==================================*/

.input-with-icon{

    position:relative;

}

.input-with-icon i{

    position:absolute;

    top:18px;
    left:18px;

    color:var(--accent-color);

    font-size:1.1rem;

}

.input-with-icon input,
.input-with-icon textarea{

    width:100%;

    padding:1rem 1rem 1rem 3.2rem;

    border:1px solid var(--border-soft);

    border-radius:16px;

    background:var(--surface-color);

    color:var(--default-color);

    transition:var(--transition);

}

.input-with-icon input:focus,
.input-with-icon textarea:focus{

    border-color:var(--accent-color);

    box-shadow:0 0 0 4px rgba(227,161,39,.12);

}

/*==================================
Botón
==================================*/

.btn-submit{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:1rem 2.5rem;

    border:none;

    border-radius:var(--pill-radius);

    background:var(--accent-color);

    color:var(--contrast-color);

    font-weight:700;

    transition:var(--transition);

}

.btn-submit:hover{

    background:var(--accent-hover);

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

/*==================================
Mensajes
==================================*/

.loading,
.error-message,
.sent-message{

    margin-top:1rem;

    text-align:center;

    font-weight:600;

}

.sent-message{

    color:#28a745;

}

.error-message{

    color:#dc3545;

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

.contact-form-wrapper{

padding:2rem;

}

}

@media(max-width:576px){

.contact{

padding:80px 0;

}

.contact-info-box{

padding:1.5rem;

}

.contact-form-wrapper{

padding:1.5rem;

}

.map-section iframe{

height:320px;

}

}
/*==================================================
13. Footer
==================================================*/

.main-footer{

    position:relative;

    padding:5rem 0 2rem;

    background:#021018;

    border-top:1px solid var(--border-soft);

}

/*==================================
Contenedor
==================================*/

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:3rem;

    max-width:var(--container-width);

    margin:auto;

    padding:0 15px;

}

/*==================================
Columnas
==================================*/

.footer-col h3{

    margin-bottom:1rem;

    color:var(--contrast-color);

    font-size:1.8rem;

    font-weight:800;

}

.footer-col h4{

    margin-bottom:1.2rem;

    color:var(--heading-color);

    font-size:1.1rem;

    font-weight:700;

}

.footer-col p{

    margin-bottom:.7rem;

    color:var(--text-soft);

    line-height:1.8;

}

.footer-col strong{

    color:var(--accent-color);

}

/*==================================
Links
==================================*/

.footer-col a{

    display:block;

    margin-bottom:.8rem;

    color:var(--text-soft);

    transition:var(--transition);

}

.footer-col a:hover{

    color:var(--accent-color);

    padding-left:6px;

}

/*==================================
Redes Sociales
==================================*/

.social-icons{

    display:flex;

    gap:1rem;

    margin-top:1rem;

}

.social-icons a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    color:var(--contrast-color);

    transition:var(--transition);

}

.social-icons a:hover{

    background:var(--accent-color);

    color:var(--contrast-color);

    transform:translateY(-5px);

    box-shadow:var(--shadow-md);

}

.social-icons i{

    font-size:1.2rem;

}

/*==================================
Footer Bottom
==================================*/

.footer-bottom{

    margin-top:4rem;

    padding-top:2rem;

    border-top:1px solid var(--border-soft);

    text-align:center;

    color:var(--text-soft);

    font-size:.95rem;

}

/*==================================
Responsive
==================================*/

@media(max-width:768px){

.footer-container{

text-align:center;

}

.social-icons{

justify-content:center;

}

.footer-col a:hover{

padding-left:0;

}

}
/* =========================================================
   PRODUCTO - GALERÍA
========================================================= */

.product-gallery {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}


/* Imagen principal */

.product-gallery .main-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

#producto-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

#producto-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

#producto-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
}


/* Flechas */

#producto-slider .swiper-button-prev,
#producto-slider .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
}

#producto-slider .swiper-button-prev::after,
#producto-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}


/* Miniaturas */

.product-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
}

.product-thumbnails .product-thumb {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;

    object-fit: cover;

    border-radius: 14px;
    border: 2px solid transparent;

    cursor: pointer;

    padding: 0;

    opacity: 0.75;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.product-thumbnails .product-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: #7c3aed;
}


/* Tablet */

@media (max-width: 991.98px) {

    .product-gallery {
        max-width: 560px;
    }

}


/* Móvil */

@media (max-width: 575.98px) {

    .product-gallery {
        max-width: 100%;
    }

    .product-gallery .main-image,
    #producto-slider,
    #producto-slider .swiper-slide img {
        border-radius: 18px;
    }

    .product-thumbnails {
        gap: 8px;
    }

    .product-thumbnails .product-thumb {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
        border-radius: 10px;
    }

    #producto-slider .swiper-button-prev,
    #producto-slider .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    #producto-slider .swiper-button-prev::after,
    #producto-slider .swiper-button-next::after {
        font-size: 15px;
    }
}
/* =========================================================
   FIX ALTURA GALERÍA PRODUCTO
========================================================= */

#producto-hero .product-gallery {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

/* Contenedor principal */
#producto-hero .main-image {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
    border-radius: 24px;
}

/* Swiper */
#producto-slider {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden;
    border-radius: 24px;
}

/* Wrapper */
#producto-slider-wrapper {
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start;
}

/* Cada slide */
#producto-slider .swiper-slide {
    height: auto !important;
    min-height: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Imagen */
/*=========================================================
=        SLIDER PRODUCTO - IMAGEN COMPLETA
=========================================================*/

#producto-slider-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

#producto-slider-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;

    object-fit: contain !important;
    object-position: center center;

    display: block;
}
  #producto-slider-wrapper .swiper-slide {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 24px;
}
/* Miniaturas */
#producto-miniaturas {
    display: flex;
    gap: 12px;
    margin-top: 14px !important;
    padding: 0 !important;
}
#producto-miniaturas .product-thumb {
    opacity: 0.55;
    border: 2px solid transparent;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

#producto-miniaturas .product-thumb:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

#producto-miniaturas .product-thumb.active {
    opacity: 1;
    border-color: #7c3aed;
    transform: translateY(-3px);
}
/*=========================================================
=        GALERÍA VISUAL DEL PRODUCTO
=========================================================*/

#producto-galeria {
  padding: 80px 0;
}

/* Contenedor de las 4 imágenes */
.product-gallery-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 320px 320px;

  gap: 18px;

  margin-top: 35px;
}

/* Cada imagen */
.product-gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.05);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15);

  cursor: pointer;
}


/* Imagen */
.product-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}


/* Hover premium */
.product-gallery-item:hover img {
  transform: scale(1.06);

  filter: brightness(1.08);
}


/*=========================================================
=        MOSAICO
=========================================================*/

/* Foto 1 grande */
.product-gallery-item:nth-child(1) {
  grid-row: span 2;
}


/* =========================================
   GALERÍA VISUAL - CUARTA IMAGEN
========================================= */

.product-gallery-grid > *:nth-child(4) {
    grid-column: 1 / -1;

    width: 60%;
    max-width: 780px;

    margin: 18px auto 0;

    border-radius: 28px;
    overflow: hidden;
}

.product-gallery-grid > *:nth-child(4) img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 28px;
}
/*=========================================================
=        EFECTO DE LUZ
=========================================================*/

.product-gallery-item::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.10),
      transparent 45%
    );

  opacity: 0;

  transition: opacity 0.4s ease;

  pointer-events: none;
}


.product-gallery-item:hover::after {
  opacity: 1;
}


/*=========================================================
=        TABLET
=========================================================*/

@media (max-width: 992px) {

  .product-gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: 260px 260px;
  }

}

/*=========================================================
=        MÓVIL
=========================================================*/

@media (max-width: 768px) {

    #producto-galeria-visual {
        padding: 55px 0;
    }

    .product-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;

        gap: 14px;

        margin-top: 25px;
    }

    .product-gallery-item {
        height: auto !important;
        min-height: 0 !important;

        border-radius: 18px;

        overflow: hidden;
    }

    .product-gallery-item img,
    .product-gallery-link img {
        width: 100%;
        height: auto !important;

        display: block;

        object-fit: contain !important;
    }

    /* Quitamos el mosaico de escritorio */

    .product-gallery-item:nth-child(1),
    .product-gallery-item:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
    }

    .product-gallery-link {
        width: 100%;
        height: auto !important;

        display: block;
    }

}


/*=========================================================
=        CELULARES PEQUEÑOS
=========================================================*/

@media (max-width: 480px) {

    .product-gallery-item {
        height: auto !important;
        border-radius: 14px;
    }

    .product-gallery-item img,
    .product-gallery-link img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
    }

}
/*=========================================================
=        GLIGHTBOX - GALERÍA PRODUCTO
=========================================================*/

.product-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* La pieza destacada mantiene la imagen completa */

.product-gallery-item:nth-child(4) .product-gallery-link img {
  object-fit: contain;
}
/* =========================================================
   BREADCRUMB PRODUCTO
========================================================= */

.product-page #breadcrumb-section {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    min-height: 0 !important;
    height: auto !important;
}

.product-page #breadcrumb-section .breadcrumb-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* Si título y descripción están vacíos, no ocupan espacio */
.product-page #breadcrumb-titulo:empty,
.product-page #breadcrumb-descripcion:empty {
    display: none !important;
}
.product-page #breadcrumb-section {
    display: none !important;
}
.product-page #producto-hero {
    padding-top: 90px !important;
}
/* =========================================================
   GALERÍA PRODUCTO — AJUSTE DEFINITIVO
========================================================= */

.product-gallery .main-image {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

#producto-slider {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
}

#producto-slider .swiper-wrapper {
    height: auto !important;
    align-items: flex-start;
}

#producto-slider .swiper-slide {
    height: auto !important;
    min-height: 0 !important;
    display: block;
}

#producto-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
}

/* Miniaturas */
#producto-miniaturas {
    margin-top: 14px !important;
}
@media (max-width: 575.98px) {

    .product-page #producto-hero {
        padding-top: 25px !important;
    }

    .product-gallery .main-image,
    #producto-slider,
    #producto-slider .swiper-slide img {
        border-radius: 18px;
    }

    #producto-miniaturas {
        margin-top: 10px !important;
    }
}
@media (min-width: 992px) {

    #producto-categoria {
        display: block;
        margin-top: 35px !important;
        margin-bottom: 4px;
    }

}
/* =========================================================
   TRUST BAR — COMPACTAR ESPACIO VERTICAL
========================================================= */

#trust-bar {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

#trust-bar .section-title {
    padding-top: 0 !important;
    padding-bottom: 25px !important;
    margin: 0 !important;
}

#trust-bar .section-title h2 {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

#trust-bar .section-title p {
    margin-bottom: 0 !important;
}
/* =========================================================
   TRUST BAR — DESKTOP
========================================================= */

@media (min-width: 992px) {

    #trust-bar {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

}
/* =========================================================
   TRUST BAR → DESCRIPCIÓN — DESKTOP
========================================================= */

@media (min-width: 992px) {

    #trust-bar {
        padding-bottom: 20px !important;
        margin-bottom: 0 !important;
    }

    #producto-descripcion {
        padding-top: 35px !important;
        margin-top: 0 !important;
    }

}
/* =========================================================
   MOBILE — HERO → TRUST BAR
========================================================= */

@media (max-width: 575.98px) {

    #producto-hero {
        padding-bottom: 25px !important;
        margin-bottom: 0 !important;
    }

    #trust-bar {
        padding-top: 25px !important;
        margin-top: 0 !important;
    }

    #trust-bar .section-title {
        margin-bottom: 22px !important;
        padding: 0 !important;
    }

}
/* =====================================================
   CIRUGÍA ESPACIADO ENTRE SECCIONES DE PRODUCTO
===================================================== */

.product-page #producto-descripcion,
.product-page #producto-beneficios,
.product-page #producto-ingredientes,
.product-page #producto-modo-uso,
.product-page #producto-nutricional,
.product-page #producto-faq {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

/* Evita márgenes gigantes entre bloques */
.product-page #producto-descripcion {
    padding-bottom: 30px !important;
}

.product-page #producto-beneficios {
    padding-top: 30px !important;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .product-page #producto-descripcion,
    .product-page #producto-beneficios,
    .product-page #producto-ingredientes,
    .product-page #producto-modo-uso,
    .product-page #producto-nutricional,
    .product-page #producto-faq {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

}


/* =========================
   MÓVIL
========================= */

@media (max-width: 575.98px) {

    .product-page #producto-descripcion,
    .product-page #producto-beneficios,
    .product-page #producto-ingredientes,
    .product-page #producto-modo-uso,
    .product-page #producto-nutricional,
    .product-page #producto-faq {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .product-page #producto-descripcion {
        padding-bottom: 18px !important;
    }

    .product-page #producto-beneficios {
        padding-top: 18px !important;
    }

}
/* Beneficios → Galería visual */
#producto-beneficios {
    padding-bottom: 25px !important;
}

#producto-galeria {
    padding-top: 25px !important;
}
@media (max-width: 575.98px) {

    /* SOLO cuarta imagen */
    #producto-galeria-grid .gallery-item:nth-child(4) {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    #producto-galeria-grid .gallery-item:nth-child(4) img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}
/* =========================================
   CUARTA IMAGEN - SOLO MÓVIL
========================================= */

@media (max-width: 575.98px) {

    #producto-galeria-grid > :nth-child(4) {
        width: 90% !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;

        /* importante: eliminar altura sobrante */
        height: auto !important;
        min-height: 0 !important;
    }

    #producto-galeria-grid > :nth-child(4) img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block;
    }
}
@media (max-width: 575.98px) {

    /* Galería visual */
    #producto-galeria {
        padding-bottom: 10px !important;
        margin-bottom: 0 !important;
    }

    /* Características */
    #producto-caracteristicas {
        padding-top: 15px !important;
        margin-top: 0 !important;
    }

}
/* =========================================================
   GOMIPOWER
   CARACTERÍSTICAS - TARJETAS PREMIUM
========================================================= */

#caracteristicas-container {
    margin-top: 12px;
}

/* Cada columna */
#caracteristicas-container > div {
    display: flex;
}

/* Tarjeta */
#caracteristicas-container .feature-card {
    width: 100%;
    height: 100%;

    padding: 22px 20px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


/* ICONO */

#caracteristicas-container .feature-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.08);
}


#caracteristicas-container .feature-icon i {
    font-size: 20px;
}


/* TÍTULO */

#caracteristicas-container .feature-card h5 {
    margin: 0;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   HOVER - SOLO DISPOSITIVOS CON MOUSE
========================================================= */

@media (hover: hover) {

    #caracteristicas-container .feature-card:hover {
        transform: translateY(-5px);

        background: rgba(255, 255, 255, 0.10);

        border-color: rgba(255, 255, 255, 0.22);
    }

}


/* =========================================================
   MÓVIL - GRID 2 X 2
========================================================= */

@media (max-width: 575.98px) {

    #caracteristicas-container {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;

        margin-top: 8px;
    }


    /* 2 columnas en teléfono */

    #caracteristicas-container > div {
        width: 50% !important;
        flex: 0 0 50% !important;
    }


    /* Tarjetas más compactas */

    #caracteristicas-container .feature-card {
        min-height: 105px;

        padding: 14px 12px;

        border-radius: 14px;
    }


    /* Icono */

    #caracteristicas-container .feature-icon {
        width: 34px;
        height: 34px;

        margin-bottom: 8px;

        border-radius: 10px;
    }


    #caracteristicas-container .feature-icon i {
        font-size: 17px;
    }


    /* Título */

    #caracteristicas-container .feature-card h5 {
        font-size: 13px;
        line-height: 1.25;
    }

}
/* =========================================================
   INGREDIENTES
========================================================= */

.product-ingredients .ingredient-card {
    height: 100%;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    transition: transform 0.25s ease,
                background 0.25s ease;
}

.product-ingredients .ingredient-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.09);
}

.product-ingredients .ingredient-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
}

.product-ingredients .ingredient-icon i {
    font-size: 18px;
}

.product-ingredients .ingredient-card span {
    font-weight: 600;
    font-size: 17px;
}


/* =========================
   MÓVIL
========================= */

@media (max-width: 575.98px) {

    .product-ingredients {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .product-ingredients .ingredient-card {
        padding: 14px 10px;
        gap: 8px;
        border-radius: 12px;
    }

    .product-ingredients .ingredient-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 9px;
    }

    .product-ingredients .ingredient-icon i {
        font-size: 13px;
    }

    .product-ingredients .ingredient-card span {
        font-size: 12px;
        line-height: 1.25;
    }
}
/* =========================================================
   MODO DE USO
========================================================= */

.product-usage .usage-card {
    height: 100%;
    padding: 22px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    transition: transform 0.25s ease,
                background 0.25s ease;
}

.product-usage .usage-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.09);
}

.product-usage .usage-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
}

.product-usage .usage-icon i {
    font-size: 18px;
}

.product-usage .usage-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}

.product-usage .usage-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   MODO DE USO - MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    .product-usage .row {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }

    .product-usage .usage-card {
        padding: 14px 10px;
        border-radius: 12px;
    }

    .product-usage .usage-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 9px;
        border-radius: 9px;
    }

    .product-usage .usage-icon i {
        font-size: 13px;
    }

    .product-usage .usage-card h4 {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .product-usage .usage-card p {
        font-size: 11px;
        line-height: 1.35;
    }
}
/* =========================================================
   INFORMACIÓN NUTRICIONAL - PREMIUM
========================================================= */

#producto-nutricional .section-title {
    margin-bottom: 26px;
}

/* Datos de porción */
#producto-nutricional .nutrition-meta,
#producto-nutricional .nutritional-info {
    margin-bottom: 24px;
}

/* Contenedor de la tabla */
#producto-nutricional .table-responsive {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Tabla */
#producto-nutricional table {
    width: 100%;
    margin: 0;

    border-collapse: collapse;

    background: transparent !important;
    color: #fff;
}

/* Encabezado */
#producto-nutricional thead {
    background: rgba(7, 18, 28, 0.88);
}

#producto-nutricional thead th {
    padding: 18px 22px;

    border: 0;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* Celdas */
#producto-nutricional tbody td {
    padding: 16px 22px;

    background: transparent !important;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
}

/* Última fila */
#producto-nutricional tbody tr:last-child td {
    border-bottom: 0;
}

/* Cantidades */
#producto-nutricional th:last-child,
#producto-nutricional td:last-child {
    text-align: right;
    font-weight: 700;
}

/* Hover elegante */
#producto-nutricional tbody tr {
    transition: background 0.2s ease;
}

#producto-nutricional tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   INFORMACIÓN NUTRICIONAL - MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    #producto-nutricional .section-title {
        margin-bottom: 16px;
    }

    #producto-nutricional .table-responsive {
        border-radius: 13px;
    }

    #producto-nutricional thead th {
        padding: 12px 12px;
        font-size: 11px;
    }

    #producto-nutricional tbody td {
        padding: 11px 12px;
        font-size: 10px;
    }

}
/* Encabezado tabla nutricional */
#producto-nutricional thead {
    background: rgba(7, 18, 28, 0.88) !important;
}

#producto-nutricional thead tr,
#producto-nutricional thead th {
    background: rgba(7, 18, 28, 0.88) !important;
    color: #ffffff !important;
}

#producto-nutricional thead th {
    padding: 16px 22px;
    border: 0;
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 575.98px) {

    #producto-nutricional thead th {
        padding: 10px 8px;
        font-size: 10px;
    }

}
/* =========================================================
   PREGUNTAS FRECUENTES - GOMIPOWER
========================================================= */

#producto-faq .section-title {
    margin-bottom: 24px;
}

/* Separación entre preguntas */
.product-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cada pregunta */
.product-faq .accordion-item {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 16px !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

/* Hover */
.product-faq .accordion-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.20) !important;
}


/* =========================================================
   PREGUNTA
========================================================= */

.product-faq .accordion-button {
    padding: 18px 20px;

    background: transparent !important;

    color: #ffffff !important;

    font-size: 15px;
    font-weight: 700;

    box-shadow: none !important;
}


/* Pregunta abierta */
.product-faq .accordion-button:not(.collapsed) {
    background: rgba(7, 18, 28, 0.88) !important;

    color: #ffffff !important;

    box-shadow: none !important;
}


/* =========================================================
   FLECHA
========================================================= */

.product-faq .accordion-button::after {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}


/* =========================================================
   RESPUESTA
========================================================= */

.product-faq .accordion-body {
    padding: 18px 20px;

    background: rgba(255, 255, 255, 0.035);

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    #producto-faq .section-title {
        margin-bottom: 15px;
    }

    .product-faq {
        gap: 7px;
    }

    .product-faq .accordion-item {
        border-radius: 11px !important;
    }

    .product-faq .accordion-button {
        padding: 12px 11px;

        font-size: 11px;
        line-height: 1.35;
    }

    .product-faq .accordion-body {
        padding: 11px;

        font-size: 10px;
        line-height: 1.5;
    }

    .product-faq .accordion-button::after {
        width: 13px;
        height: 13px;
        background-size: 13px;
    }
}
/* =========================================================
   PRODUCTOS RELACIONADOS
   También te puede interesar
========================================================= */

#productos-relacionados-container > .portfolio-item {
    display: flex;
}

/* DESKTOP: 4 productos por fila */
@media (min-width: 992px) {

    #productos-relacionados-container > .portfolio-item {
        flex: 0 0 25%;
        max-width: 25%;
    }

}

/* TABLET: 2 productos por fila */
@media (min-width: 576px) and (max-width: 991.98px) {

    #productos-relacionados-container > .portfolio-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

}

/* MÓVIL: 1 producto por fila */
@media (max-width: 575.98px) {

    #productos-relacionados-container > .portfolio-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

}
/* =========================================================
   RELACIONADOS - ALTURAS Y ALINEACIÓN
========================================================= */

/* La columna completa */
#productos-relacionados-container > .portfolio-item {
    display: flex;
}

/* La card ocupa toda la altura disponible */
#productos-relacionados-container .product-card {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}

/* El contenido crece */
#productos-relacionados-container .product-body {
    flex: 1;

    display: flex;
    flex-direction: column;
}

/* El precio se empuja hacia abajo */
#productos-relacionados-container .product-price {
    margin-top: auto;
}

/* =========================================================
   SOLO DESKTOP
========================================================= */

@media (min-width: 992px) {

    /* Igualamos visualmente las imágenes */
    #productos-relacionados-container .product-image {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    #productos-relacionados-container .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    /* Conservamos el comportamiento actual */
    #productos-relacionados-container .product-card {
        height: auto;
    }

    #productos-relacionados-container .product-body {
        display: block;
    }

    #productos-relacionados-container .product-price {
        margin-top: 14px;
    }

}
/* =========================================================
   RELACIONADOS - CARD PREMIUM
========================================================= */

#productos-relacionados-container .product-card {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease,
        border-color .35s ease;
}


/* =========================================================
   HOVER CARD
========================================================= */

@media (hover: hover) {

    #productos-relacionados-container .product-card:hover {
        transform: translateY(-8px);

        background: rgba(255, 255, 255, 0.085);
        border-color: rgba(255, 255, 255, 0.18);

        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.18);
    }

}


/* =========================================================
   IMAGEN
========================================================= */

#productos-relacionados-container .product-image {
    overflow: hidden;

    border-radius: 21px 21px 0 0;
}

#productos-relacionados-container .product-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform .55s ease;
}


/* ZOOM DE IMAGEN */

@media (hover: hover) {

    #productos-relacionados-container .product-card:hover
    .product-image img {

        transform: scale(1.06);
    }

}


/* =========================================================
   CUERPO
========================================================= */

#productos-relacionados-container .product-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px;
}


/* =========================================================
   BOTÓN
========================================================= */

#productos-relacionados-container .btn {
    border-radius: 999px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

@media (hover: hover) {

    #productos-relacionados-container .btn:hover {
        transform: translateY(-2px);

        box-shadow:
            0 8px 20px rgba(0, 0, 0, .18);
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    #productos-relacionados-container .product-card {
        border-radius: 16px;
    }

    #productos-relacionados-container .product-image {
        border-radius: 15px 15px 0 0;
    }

    #productos-relacionados-container .product-body {
        padding: 14px;
    }

}
/* =========================================================
   OPINIONES - ESTADO VACÍO
========================================================= */

#opiniones-container .reviews-empty {
    max-width: 760px;
    margin: 30px auto 0;
    padding: 28px 32px;

    display: flex;
    align-items: center;
    gap: 22px;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* ICONO */

#opiniones-container .reviews-empty-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.10);
}

#opiniones-container .reviews-empty-icon i {
    font-size: 26px;
}


/* TEXTO */

#opiniones-container .reviews-empty-content {
    flex: 1;
}

#opiniones-container .reviews-empty-content h4 {
    margin: 0 0 7px;

    font-size: 19px;
    font-weight: 700;
}

#opiniones-container .reviews-empty-content p {
    margin: 0 0 16px;

    font-size: 14px;
    line-height: 1.5;

    opacity: .85;
}


/* BOTÓN */

#opiniones-container .reviews-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 20px;

    border: 0;
    border-radius: 999px;

    background: #f2a900;
    color: #fff;

    font-weight: 700;
    font-size: 14px;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

@media (hover: hover) {

    #opiniones-container .reviews-empty-btn:hover {
        transform: translateY(-2px);

        box-shadow: 0 8px 20px rgba(0,0,0,.18);
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    #opiniones-container .reviews-empty {
        margin-top: 18px;
        padding: 18px 14px;

        display: block;

        text-align: center;

        border-radius: 16px;
    }

    #opiniones-container .reviews-empty-icon {
        width: 48px;
        height: 48px;

        margin: 0 auto 12px;

        border-radius: 13px;
    }

    #opiniones-container .reviews-empty-icon i {
        font-size: 20px;
    }

    #opiniones-container .reviews-empty-content h4 {
        font-size: 15px;
    }

    #opiniones-container .reviews-empty-content p {
        font-size: 11px;
        margin-bottom: 13px;
    }

    #opiniones-container .reviews-empty-btn {
        width: 100%;

        padding: 10px 14px;

        font-size: 12px;
    }

}
/* =========================================================
   AJUSTE ESPACIO ENTRE RELACIONADOS Y OPINIONES
========================================================= */

#producto-opiniones {
    padding-top: 45px !important;
    padding-bottom: 55px !important;
}

#producto-opiniones .section-title {
    margin-bottom: 22px !important;
}


/* MÓVIL */
@media (max-width: 575.98px) {

    #producto-opiniones {
        padding-top: 28px !important;
        padding-bottom: 35px !important;
    }

    #producto-opiniones .section-title {
        margin-bottom: 14px !important;
    }

}
/* =========================================================
   MODAL OPINIONES
========================================================= */

.review-modal {
    position: relative;

    padding: 35px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;

    background: #07131f;
    color: #fff;

    box-shadow: 0 25px 70px rgba(0,0,0,.45);
}

.review-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.review-modal-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 16px;

    background: rgba(255,255,255,.10);

    font-size: 22px;
}

.review-modal h3 {
    margin-bottom: 7px;

    color: #fff;

    font-size: 24px;
    font-weight: 800;
}

.review-modal-subtitle {
    margin-bottom: 25px;

    color: rgba(255,255,255,.65);
}

/* CAMPOS */

.review-field {
    margin-bottom: 18px;
}

.review-field label {
    display: block;

    margin-bottom: 7px;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
}

.review-field input,
.review-field textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;

    outline: none;

    background: rgba(255,255,255,.07);
    color: #fff;

    transition: .25s ease;
}

.review-field textarea {
    resize: vertical;
}

.review-field input:focus,
.review-field textarea:focus {
    border-color: #ffb000;

    background: rgba(255,255,255,.10);

    box-shadow: 0 0 0 3px rgba(255,176,0,.12);
}

.review-field input::placeholder,
.review-field textarea::placeholder {
    color: rgba(255,255,255,.45);
}


/* ESTRELLAS */

.review-stars {
    display: flex;
    gap: 7px;
}

.review-stars button {
    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(255,255,255,.25);

    font-size: 27px;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .2s ease;
}

.review-stars button:hover {
    transform: scale(1.15);
}

.review-stars button.active {
    color: #ffb000;
}


/* BOTÓN */

.review-submit {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 8px;
    padding: 14px 20px;

    border: 0;
    border-radius: 50px;

    background: #ffad00;
    color: #fff;

    font-weight: 800;

    transition: .25s ease;
}

.review-submit:hover {
    transform: translateY(-2px);

    background: #ffba21;

    box-shadow: 0 10px 25px rgba(255,173,0,.25);
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    .review-modal {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .review-modal h3 {
        font-size: 19px;
    }

    .review-modal-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .review-modal-icon {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }

    .review-stars button {
        font-size: 23px;
    }

    .review-field input,
    .review-field textarea {
        font-size: 13px;
    }

}
/*=========================================================
=            OPINIONES - TARJETAS PREMIUM                 =
=========================================================*/

.product-reviews .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}


/* Tarjeta */

.review-card {
    position: relative;

    height: 100%;
    padding: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.045)
        );

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Efecto superior */

.review-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;

    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #ffb000,
        transparent
    );

    opacity: 0;

    transition: opacity 0.3s ease;
}


/* Hover */

@media (hover: hover) {

    .review-card:hover {
        transform: translateY(-6px);

        border-color: rgba(255, 176, 0, 0.35);

        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.16);
    }

    .review-card:hover::before {
        opacity: 1;
    }

}


/*=========================================================
=            CLIENTE                                      =
=========================================================*/

.review-card-top {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 18px;
}


/* Avatar */

.review-avatar {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.14);

    color: #fff;

    font-size: 19px;
    font-weight: 800;
}


/* Nombre */

.review-customer h4 {
    margin: 0 0 3px;

    color: #fff;

    font-size: 17px;
    font-weight: 700;
}


/* Ciudad */

.review-location {
    display: flex;
    align-items: center;
    gap: 6px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}

.review-location i {
    color: #ffb000;
}


/*=========================================================
=            ESTRELLAS                                    =
=========================================================*/

.review-rating {
    display: flex;
    gap: 4px;

    margin-bottom: 16px;
}

.review-rating i {
    color: #ffb000 !important;

    font-size: 15px;
}


/*=========================================================
=            COMENTARIO                                   =
=========================================================*/

.review-comment {
    margin: 0 0 22px;
    padding: 0;

    border: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.65;

    font-style: normal;
}


/*=========================================================
=            FOOTER                                       =
=========================================================*/

.review-card-footer {
    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.review-date {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
}

.review-date i {
    color: rgba(255, 255, 255, 0.75);
}


/*=========================================================
=            OPINIONES - MÓVIL                            =
=========================================================*/

@media (max-width: 575.98px) {

    .product-reviews .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 14px;
    }

    .review-card {
        padding: 18px;
        border-radius: 16px;
    }

    .review-card-top {
        gap: 10px;
        margin-bottom: 14px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 16px;
    }

    .review-customer h4 {
        font-size: 14px;
    }

    .review-location {
        font-size: 11px;
    }

    .review-rating {
        margin-bottom: 12px;
    }

    .review-rating i {
        font-size: 13px;
    }

    .review-comment {
        margin-bottom: 16px;

        font-size: 12px;
        line-height: 1.55;
    }

    .review-card-footer {
        padding-top: 12px;
    }

    .review-date {
        font-size: 10px;
    }

}
/* =========================================================
   CTA FINAL PRODUCTO - GOMIPOWER
========================================================= */

#producto-cta {
    position: relative;
    overflow: hidden;
}

/* CAJA PRINCIPAL */

#producto-cta .cta-box {
    position: relative;
    overflow: hidden;

    padding: 55px 60px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 174, 0, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #07131f 0%,
            #0b1c2b 55%,
            #10283a 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


/* DECORACIÓN DE FONDO */

#producto-cta .cta-box::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -120px;
    top: -160px;

    border-radius: 50%;

    background: rgba(255, 174, 0, 0.10);

    filter: blur(15px);

    pointer-events: none;
}


/* BADGE */

#producto-cta .cta-badge {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;

    font-size: 14px;
    font-weight: 700;

    color: #ffb000;
}


/* TÍTULO */

#producto-cta .cta-box h2 {
    position: relative;
    z-index: 2;

    max-width: 700px;

    margin: 0 0 14px;

    color: #fff;

    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
}


/* DESCRIPCIÓN */

#producto-cta .cta-box > p {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   BOTONES
========================================================= */

#producto-cta .cta-actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 34px;
}


#producto-cta .cta-actions .btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 25px;

    border: none;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


/* COMPRAR */

#producto-cta #cta-comprar {
    background: linear-gradient(
        135deg,
        #ffb000,
        #f59e0b
    );

    color: #07131f;

    box-shadow:
        0 10px 30px rgba(255, 176, 0, 0.22);
}


/* WHATSAPP */

#producto-cta #cta-whatsapp {
    background: #18b85a;
    color: #fff;

    box-shadow:
        0 10px 30px rgba(24, 184, 90, 0.18);
}


/* MOVIMIENTO BOTONES */

#producto-cta .cta-actions .btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
}


#producto-cta #cta-comprar:hover {
    box-shadow:
        0 14px 35px rgba(255, 176, 0, 0.32);
}


#producto-cta #cta-whatsapp:hover {
    box-shadow:
        0 14px 35px rgba(24, 184, 90, 0.28);
}


/* =========================================================
   BENEFICIOS
========================================================= */

#producto-cta .cta-features {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    padding: 0;
    margin: 0;

    list-style: none;
}


#producto-cta .cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 58px;

    padding: 12px 15px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;
    font-weight: 600;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


#producto-cta .cta-features .feature i {
    flex-shrink: 0;

    font-size: 19px;

    color: #ffb000;
}


#producto-cta .cta-features .feature:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.085);

    border-color: rgba(255, 176, 0, 0.25);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    #producto-cta .cta-box {
        padding: 42px 35px;
    }

    #producto-cta .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    #producto-cta .cta-box {
        padding: 28px 18px;

        border-radius: 20px;
    }


    #producto-cta .cta-badge {
        margin-bottom: 10px;

        font-size: 12px;
    }


    #producto-cta .cta-box h2 {
        margin-bottom: 10px;

        font-size: 26px;
        line-height: 1.12;
    }


    #producto-cta .cta-box > p {
        margin-bottom: 20px;

        font-size: 13px;
        line-height: 1.55;
    }


    /* BOTONES */

    #producto-cta .cta-actions {
        display: grid;
        grid-template-columns: 1fr;

        gap: 9px;

        margin-bottom: 22px;
    }


    #producto-cta .cta-actions .btn {
        width: 100%;

        min-height: 48px;

        padding: 11px 15px;

        font-size: 13px;
    }


    /* BENEFICIOS 2 X 2 */

    #producto-cta .cta-features {
        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }


    #producto-cta .cta-features .feature {
        min-height: 64px;

        padding: 10px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 5px;

        border-radius: 11px;

        font-size: 10px;
        line-height: 1.25;
    }


    #producto-cta .cta-features .feature i {
        font-size: 15px;
    }

}
/* Un poquito más de vida al CTA al pasar el mouse */
#producto-cta .cta-box {
    transition: transform .35s ease,
                box-shadow .35s ease;
}

@media (min-width: 992px) {

    #producto-cta .cta-box:hover {
        transform: translateY(-4px);

        box-shadow:
            0 32px 70px rgba(0, 0, 0, .28),
            inset 0 1px 0 rgba(255, 255, 255, .06);
    }

}
#producto-cta .cta-box h2 {
    text-wrap: balance;
}
/* =========================================================
   SCROLL TOP - GOMIPOWER
========================================================= */

#scroll-top {
    position: fixed !important;

    right: 20px !important;
    bottom: 20px !important;
    left: auto !important;
    top: auto !important;

    width: 46px !important;
    height: 46px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 50% !important;

    background: #ffae00 !important;
    color: #07131f !important;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .28),
        0 0 20px rgba(255, 174, 0, .15);

    z-index: 9999;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease;
}

#scroll-top i {
    font-size: 22px;
    line-height: 1;
}

#scroll-top:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .35),
        0 0 25px rgba(255, 174, 0, .28);
}


/* MÓVIL */

@media (max-width: 575.98px) {

    #scroll-top {
        width: 40px !important;
        height: 40px !important;

        right: 14px !important;
        bottom: 14px !important;
    }

    #scroll-top i {
        font-size: 19px;
    }

}
/* =========================================================
   FOOTER GOMIPOWER - PREMIUM
========================================================= */

.footer {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(255, 174, 0, .055),
            transparent 28%
        ),
        #03111b;

    color: rgba(255, 255, 255, .78);

    border-top: 1px solid rgba(255, 255, 255, .07);
}


/* =========================================================
   CONTENEDOR PRINCIPAL
========================================================= */

.footer .footer-container {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.35fr .85fr 1.15fr .75fr;

    gap: 55px;

    padding: 70px 0 60px;
}


/* =========================================================
   COLUMNAS
========================================================= */

.footer .footer-col {
    min-width: 0;
}


.footer .footer-col h4 {
    position: relative;

    margin: 0 0 22px;

    color: #fff;

    font-size: 16px;
    font-weight: 800;
}


/* pequeña línea GomiPower */

.footer .footer-col h4::after {
    content: "";

    display: block;

    width: 28px;
    height: 3px;

    margin-top: 9px;

    border-radius: 10px;

    background: #ffae00;
}


/* =========================================================
   TEXTOS
========================================================= */

.footer .footer-col p {
    margin: 0 0 13px;

    color: rgba(255, 255, 255, .72);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   LINKS
========================================================= */

.footer .footer-col > a {
    position: relative;

    display: block;

    width: fit-content;

    margin-bottom: 13px;

    color: rgba(255, 255, 255, .76);

    font-size: 14px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer .footer-col > a:hover {
    color: #ffae00;

    transform: translateX(4px);
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.footer .social-icons {
    display: flex;
    align-items: center;

    gap: 11px;
}


.footer .social-icons a {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .06);

    border: 1px solid rgba(255, 255, 255, .06);

    color: #fff;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.footer .social-icons a:hover {
    transform: translateY(-4px);

    background: #ffae00;

    color: #07131f;

    border-color: #ffae00;
}


.footer .social-icons i {
    font-size: 17px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer .footer-bottom {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    padding: 22px 0 26px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    text-align: center;

    color: rgba(255, 255, 255, .60);

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .footer .footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 50px;

        padding: 55px 0 45px;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {

    .footer .footer-container {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        gap: 32px;

        padding: 42px 0 36px;

        text-align: left;
    }


    .footer .footer-col h4 {
        margin-bottom: 15px;

        font-size: 14px;
    }


    .footer .footer-col h4::after {
        width: 24px;
        height: 2px;

        margin-top: 7px;
    }


    .footer .footer-col p,
    .footer .footer-col > a {
        font-size: 12px;
    }


    .footer .social-icons {
        justify-content: flex-start;
    }


    .footer .social-icons a {
        width: 38px;
        height: 38px;
    }


    .footer .social-icons i {
        font-size: 15px;
    }


    .footer .footer-bottom {
        width: calc(100% - 32px);

        padding: 18px 0 22px;

        font-size: 11px;
    }

}
/*=========================================================
=            CART OVERLAY                                =
=========================================================*/

#cart-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(6px);

    opacity:0;

    visibility:hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index:9998;

}

#cart-overlay.active{

    opacity:1;

    visibility:visible;

}
/*=========================================================
=            CART DRAWER                                 =
=========================================================*/

#cart-drawer{

    position:fixed;

    top:0;
    right:0;

    width:430px;
    max-width:100%;

    height:100vh;

    display:flex;
    flex-direction:column;

    background:
        linear-gradient(
            180deg,
            #07131f,
            #091b2a
        );

    border-left:1px solid rgba(255,255,255,.08);

    box-shadow:
        -20px 0 60px rgba(0,0,0,.45);

    transform:translateX(100%);

    transition:
        transform .40s cubic-bezier(.22,.61,.36,1);

    z-index:9999;

    overflow:hidden;

}

#cart-drawer.active{

    transform:translateX(0);

}

body.cart-open{

    overflow:hidden;

}
/*=========================================================
HEADER
=========================================================*/

.cart-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 24px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.cart-header-info h3{

    margin:0;

    color:#fff;

    font-size:24px;

    font-weight:800;

}

.cart-header-info span{

    display:block;

    margin-top:4px;

    color:rgba(255,255,255,.55);

    font-size:13px;

}

#cart-close{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.07);

    color:#fff;

    cursor:pointer;

    transition:.25s;

}

#cart-close:hover{

    background:#ffb000;

    color:#07131f;

    transform:rotate(90deg);

}
/*=========================================================
BODY
=========================================================*/

.cart-body{

    flex:1;

    overflow-y:auto;

    padding:24px;

    scrollbar-width:thin;

    scrollbar-color:#ffb000 transparent;

}

.cart-body::-webkit-scrollbar{

    width:6px;

}

.cart-body::-webkit-scrollbar-thumb{

    background:#ffb000;

    border-radius:20px;

}
/*=========================================================
EMPTY
=========================================================*/

.cart-empty{

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.cart-empty i{

    font-size:72px;

    color:#ffb000;

    margin-bottom:22px;

}

.cart-empty h4{

    color:#fff;

    margin-bottom:12px;

    font-weight:800;

}

.cart-empty p{

    max-width:250px;

    color:rgba(255,255,255,.62);

    line-height:1.7;

}
/*=========================================================
SUMMARY
=========================================================*/

.cart-summary{

    padding:22px 24px;

    border-top:1px solid rgba(255,255,255,.08);

}

.cart-line{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

    color:#fff;

}

.cart-line:last-child{

    margin-bottom:0;

}

.cart-line-total{

    margin-top:18px;

    padding-top:18px;

    border-top:1px dashed rgba(255,255,255,.12);

    font-size:19px;

    font-weight:700;

}

.cart-line-total strong{

    color:#ffb000;

}
/*=========================================================
ACTIONS
=========================================================*/

.cart-actions{

    padding:0 24px 24px;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.cart-actions .btn{

    height:52px;

    border-radius:14px;

    font-weight:700;

    transition:.25s;

}

.cart-actions .btn:hover{

    transform:translateY(-2px);

}
/*=========================================================
FOOTER
=========================================================*/

.cart-footer{

    padding:18px 24px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#081827;

}

.cart-trust{

    display:flex;

    justify-content:space-between;

    gap:10px;

    color:rgba(255,255,255,.60);

    font-size:12px;

}
/*=========================================================
MOBILE
=========================================================*/

@media(max-width:768px){

    #cart-drawer{

        width:100%;

    }

    .cart-header{

        padding:20px;

    }

    .cart-body{

        padding:18px;

    }

    .cart-summary{

        padding:18px;

    }

    .cart-actions{

        padding:0 18px 18px;

    }

    .cart-footer{

        padding:16px 18px;

    }

    .cart-trust{

        flex-direction:column;

        gap:6px;

    }

}
/*=========================================================
=            ITEMS DEL CARRITO                           =
=========================================================*/

.cart-item{

    position:relative;

    display:flex;

    align-items:flex-start;

    gap:14px;

    width:100%;

    padding:16px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}


/* IMAGEN */

.cart-item-image{

    flex:0 0 90px;

    width:90px;

    height:90px;

    overflow:hidden;

    border-radius:8px;

}

.cart-item-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}


/* INFORMACIÓN */

.cart-item-info{

    flex:1;

    min-width:0;

    padding-right:40px;

}

.cart-item-info h4{

    margin:0 0 6px;

    font-size:16px;

    font-weight:700;

    color:#fff;

}

.cart-item-info p{

    margin:0 0 10px;

    font-size:14px;

    color:rgba(255,255,255,.70);

}


/* CANTIDADES */

.cart-item-quantity{

    display:flex;

    align-items:center;

    gap:10px;

}

.cart-item-quantity button{

    width:28px;

    height:28px;

    border:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#162b3d;

    color:#fff;

    font-size:18px;

    cursor:pointer;

}

.cart-item-quantity button:hover{

    background:#ffb900;

    color:#07131f;

}

.cart-item-quantity span{

    min-width:20px;

    text-align:center;

    color:#fff;

    font-weight:700;

}


/* BOTÓN ELIMINAR */

.cart-item .cart-remove{

    position:absolute;

    top:16px;

    right:0;

    width:32px;

    height:32px;

    padding:0;

    border:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    cursor:pointer;

    z-index:10;

}

.cart-item .cart-remove:hover{

    background:#dc3545;

    color:#fff;

}
/* =========================================================
   HEADER - SEPARAR NAVEGACIÓN Y ACCIONES
========================================================= */

.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    position: relative;
    z-index: 20;
}

.cart-button {
    position: relative !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    margin-left: 8px !important;
}

.cart-count {
    position: absolute !important;
    top: -3px !important;
    right: -5px !important;
}

/* La navegación no debe meterse sobre las acciones */
.navmenu {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.navmenu ul {
    display: flex;
    align-items: center;
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 768px) {

    .header-actions {
        margin-left: auto !important;
        gap: 6px !important;
    }

    .cart-button {
        margin-left: 4px !important;
    }

}
/* =========================================
   DISPONIBILIDAD DEL PRODUCTO
========================================= */

.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 14px;
    margin-bottom: 10px;

    padding: 7px 14px;

    background: rgb(244, 248, 4);
    border: 1px solid rgba(239, 243, 5, 0.952);

    border-radius: 30px;

    color: #dbf308;

    font-size: 14px;
    font-weight: 700;

    line-height: 1;

    width: fit-content;
}

/* Punto verde */

.product-stock::before {
    content: "";

    width: 9px;
    height: 9px;

    background: #caff0c;

    border-radius: 50%;

    box-shadow: 0 0 8px rgba(247, 243, 7, 0.993);

    flex-shrink: 0;
}
.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 6px 14px;

    margin-top: 8px;
    margin-bottom: 14px;

    border: 1px solid rgb(241, 237, 8);
    border-radius: 30px;

    background: rgba(243, 239, 7, 0.959);

    color: #06160e;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;
}
.header-actions {
    gap: 20px;
}

.navmenu {
    margin-left: 30px;
}

.navmenu ul {
    gap: 28px;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 16px 26px;

    background: #16c45a;
    color: #fff !important;

    border-radius: 50px;

    font-weight: 700;
    font-size: 16px;

    text-decoration: none !important;

    box-shadow: 0 8px 24px rgba(22, 196, 90, 0.25);

    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #12b951;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(22, 196, 90, 0.35);
}

.btn-whatsapp i {
    font-size: 20px;
}