/*
 Theme Name:   GUM
 Author:       Gose
 Author URI:   
 Version:      Gum 0.1
*/

/************************************************************************************
FONT
*************************************************************************************/

@import url(https://fonts.googleapis.com/css?family=Lato:400,100,300,700,900);

/* #### Generated By: http://www.cufonfonts.com #### */

@font-face {
  font-family: 'Circular Std Black';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Black'), url('fonts/CircularStd-Black.woff') format('woff');
}

@font-face {
  font-family: 'Circular Std Book';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Book'), url('fonts/CircularStd-Book.woff') format('woff');
}

@font-face {
  font-family: 'Circular Std Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Medium'), url('fonts/CircularStd-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Circular Std Black Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Black Italic'), url('fonts/CircularStd-BlackItalic.woff') format('woff');
}

@font-face {
  font-family: 'Circular Std Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Bold'), url('fonts/CircularStd-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Circular Std Bold Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Bold Italic'), url('fonts/CircularStd-BoldItalic.woff') format('woff');
}

@font-face {
  font-family: 'Circular Std Book Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Book Italic'), url('fonts/CircularStd-BookItalic.woff') format('woff');
}

@font-face {
  font-family: 'Circular Std Medium Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Circular Std Medium Italic'), url('fonts/CircularStd-MediumItalic.woff') format('woff');
}

/************************************************************************************
GENERAL STYLING RESET
*************************************************************************************/

@charset "UTF-8";

:root {
  --font-family: "Circular Std Book", sans-serif;
  --font-family-medium: "Circular Std Medium", sans-serif;

  /* color */
  --black: #262626;
  --white: #faf9f6;
  --bermellon: #e83c7f;
  --purple: #7a2abf;
  --grey: #444;
  --greylight: #f5f4f8;
  --greydark: #515050;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body {
  min-height: 100vh;
  font-size: 15px;
  font-family: var(--font-family);
  color: var(--black);
  fill: var(--black);
  background: #f5f4f8;
  font-weight: normal;
  /* opcional */
  line-height: 1.3em;
  /* opcional */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  /* opcional */
  font-smooth: always;
  /* opcional */
  -webkit-font-smoothing: antialiased;
  /* opcional */
  -moz-osx-font-smoothing: grayscale;
}

/* Las adaptamos al modo oscuro */
@media (prefers-color-scheme: dark) {
  :root {}
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
}

* {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  /* opcional 
  -o-object-fit: cover;
  object-fit: cover;*/
  -o-object-position: center center;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
  font-size: 15px;
  line-height: initial;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: 16px;
  font-style: inherit;
  line-height: 20px;
  text-decoration: none;
  color: inherit;
  word-break: normal;
  hyphens: initial;
  color: var(--black);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: transparent;
}

form,
input,
textarea,
select,
label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* =============================================
Generales
================================================ */

section {
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
}

.site-header {
  color: var(--white);
  background: url('images/header-bg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* === Menu top === */

.logo img {
  width: 140px;
  margin: 0 6px;
}

.wrap_nav {
  display: flex;
  padding: 30px 0px 20px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.hero-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.hero-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  line-height: 30px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.hero-nav a:hover {
  border-bottom: 3px solid var(--white);
}

.hero-nav a svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.content_nav {
  padding-bottom: 60px;
  overflow: visible;
}


/* === Slider titulos === */
.hero-content {
  position: relative;
  min-height: 400px;
  width: 100%;
  margin: 20px 0px 40px;
}

.hero-slide-group {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
  z-index: 0;
}

.hero-slide-group.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bermellon);
  margin-bottom: 10px;
  font-family: var(--font-family-bold);
  letter-spacing: 1px;
}

.hero-frase {
  width: 50%;
  font-size: 42px;
  line-height: initial;
  color: var(--white);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  font-family: var(--font-family-medium);
  letter-spacing: -.5px;
}

.hero-graphic {
  width: 50%;
  position: absolute;
  right: 0px;
  top: -0px;
  z-index: 1;
}

.hero-graphic.dynamic {
  animation: fadeIn 1s ease-in-out;
}

.hero-graphic.dynamic img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Asegura animación fluida */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Servicios Section === */
.servicios-section {
  padding: 80px 20px;
  background: transparent;
  text-align: center;
  z-index: 2;
  position: relative;
}

.servicios-section .section-title {
  font-weight: bold;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: initial;
  font-family: var(--font-family-medium);
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: center;
}

.wave img {
  width: 100px;
}

.servicios-section .wave {
  color: #e83c7f;
}

.servicios-section .section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  text-align: left;
  line-height: initial;
  color: var(--white);
}

.swiper-servicios .swiper-slide {
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.swiper-servicios .swiper-slide:hover {
  transform: translateY(-5px);
}

.icono-servicio {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.icono-servicio img,
.icono-servicio svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.titulo-servicio {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
  margin-top: 1.25rem;
  line-height: 1.3rem;
}

.descripcion-servicio {
  font-size: 0.95rem;
  color: var(--white);
  max-width: 240px;
  margin: 0 auto;
}

.swiper-servicios .swiper-wrapper {
  margin-bottom: 16px;
}

.swiper-pagination-bullet {
  background: var(--greylight) !important;
  opacity: 0.3 !important;
  transition: opacity 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  color: var(--bermellon) !important;
  background-color: var(--bermellon) !important;
}


/* =============================================
Clientes
================================================ */

.clientes-section {
  padding: 80px 20px;
  background: #f5f4f8;
  text-align: center;
}

.clientes-section .titulo {
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 24px;
  line-height: initial;
  font-family: var(--font-family-medium);
  text-align: left;
}

.clientes-section .subtitulo {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 50px;
  text-align: left;
  line-height: initial;
}

.swiper-clientes .cliente-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  padding: 20px;
  color: white;
}

.logo-cliente {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.cliente-links {
  display: flex;
  flex-direction: row;
  margin-top: 16px;
}

.cliente-links a {
  color: var(--white);
  margin: 0 10px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.cliente-links a i {
  color: var(--white);
  font-size: 1.5rem;
}

.cliente-links a:hover {
  opacity: 0.7;
}


/* =============================================
Equipo
================================================ */

.miembro .foto {
  position: relative;
  overflow: hidden;
}

.overlay-experiencia {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  /* fallback si no hay fondo */
}

.miembro .foto:hover .overlay-experiencia {
  opacity: 1;
}

.overlay-experiencia p {
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
  color: var(--white);
}

.team-section {
  padding: 80px 20px;
  background: #f5f4f8;
  text-align: center;
}

.team-section .titulo {
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 24px;
  line-height: initial;
  font-family: var(--font-family-medium);
  text-align: left;
}

.team-section .subtitulo {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 50px;
  text-align: left;
  line-height: initial;
}

.swiper-team .miembro {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.swiper-team .foto {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  transition: transform 0.4s ease;
}

.swiper-team .foto img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.swiper-team .foto:hover img {
  transform: scale(1.06);
}

.swiper-team .nombre {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 15px;
  color: #000;
}

.swiper-team .cargo {
  color: #666;
  font-size: 0.95rem;
  margin-top: 5px;
}

.swiper-team .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: 6px;
}

/* =============================================
Testimonios
================================================ */

/* === Contenedor principal === */
.testimonios {
  padding: 50px 20px;
  background-color: var(--greylight);
  text-align: center;
  position: relative;
}

/* === Título === */
.testimonios .titulo {
  font-size: 2.2rem;
  color: var(--bermellon);
  margin-bottom: 24px;
  line-height: initial;
  font-family: var(--font-family-medium);
}

/* === Comentario === */
.testimonios blockquote.comentario {
  font-size: 1rem;
  line-height: initial;
  color: var(--grey);
  max-width: 70%;
  margin: 0 auto 32px auto;
}

/* === Perfil === */
.testimonios .perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.perfil-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.testimonios .perfil img {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  border: 4px solid var(--bermellon);
  object-fit: cover;
  position: absolute;
  top: 15%;
}

.perfil-avatar svg {
  width: 140px;
  height: 140px;
  fill: var(--bermellon);
}

.testimonios .perfil strong {
  font-size: 1.1rem;
  color: #000;
}

.testimonios .perfil span {
  color: var(--purple);
  font-size: 0.95rem;
}

/* === Swiper nav buttons === */
.swiper-button-prev,
.swiper-button-next {
  color: var(--bermellon) !important;
  margin: 12px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 28px !important;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonios blockquote.comentario {}

  .testimonios .titulo {
    font-size: 2rem;
  }
}


/* =============================================
Por que GUM
================================================ */

.porque-goom-section {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('images/fondo-gum.jpg') center center / cover no-repeat;
}

.porque-goom-background {
  width: 100%;
  height: 100%;
  position: relative;
}

.porque-goom-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.porque-goom-title img {
  max-width: 450px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
}

.porque-goom-frases {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  min-height: 60px;
}

.goom-frase {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 800px;
  hyphens: auto;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: initial;
  padding: 0 20px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.goom-frase.active {
  opacity: 1;
  z-index: 1;
}

@media (max-width: 768px) {
  .porque-goom-title img {
    max-width: 80%;
  }

  .porque-goom-frases {
    font-size: 18px;
  }
}


/* =============================================
Footer
================================================ */

/* === Footer general === */
.site-footer {
  color: var(--white);
  background: url('images/footer-bg.jpg') no-repeat center center;
  background-size: cover;
  border-bottom: 6px solid var(--bermellon);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* === CTA (parte superior del footer) === */
.footer-cta {
  text-align: left;
  padding: 80px 20px;
  margin: 0 auto;
  max-width: 900px;
  color: var(--white);
  position: relative
}

.footer-cta-content {
  z-index: 2;
  position: relative;
}

.footer-cta h2 {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 1.3;
  color: var(--white);
}

.footer-cta-content h2 p {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.2;
  color: var(--white);
  margin-top: 6px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--white);
  color: var(--bermellon);
}

/* === Contacto (parte inferior del footer) === */
.footer-contact {
  /* base */
  background-blend-mode: screen;
  color: var(--white);
  padding: 80px 16px;
  text-align: left;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  width: fit-content;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  gap: 9px;
  align-items: center;
}

.contact-info a:hover {
  color: #ee2f7b;
}

/* Iconos (ajustables según fuente o SVG inline) */
.contact-info i,
.social-icons i {
  color: var(--white);
}

/* Redes sociales */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--bermellon)
}

/* Imagen decorativa */
.footer-deco-logo {
  width: 500px;
  position: absolute;
  right: -60px;
  top: 150px;
  z-index: 1;
}

.footer-deco-mini {
  width: 90px;
  position: absolute;
  bottom: -4px;
  right: 20%;
  z-index: 1;
}

/* Responsive básico */
@media (max-width: 600px) {
  .footer-cta h2 {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 1rem;
  }

  .contact-info li {
    font-size: 0.95rem;
  }
}


/* =============================================
SECRET MENU
================================================ */

/* Overlay style */
.overlay,
.overlay2 {
  position: fixed;
  width: 500px;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: 1100;
  background-color: #414042;
}

#trigger-overlay,
#trigger-overlay-2 {
  color: var(--white);
  background: var(--Orange);
  padding: 16px 24px;
  border-radius: 24px;
  height: 60px;
  display: flex;
  gap: 9px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

#trigger-overlay p,
#trigger-overlay-2 p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

#trigger-overlay svg,
#trigger-overlay-2 svg {
  width: 24px;
  height: 24px;
}

#trigger-overlay:hover,
#trigger-overlay-2:hover {
  color: var(--white);
  background: var(--Green);
}

.close {
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  background: #fff;
}

.overlay .overlay-close,
.overlay2 .overlay-close2 {
  float: right;
  text-decoration: none;
  background-color: transparent;
  display: block;
  width: 32px;
  height: 32px;
  margin: 24px;
  cursor: pointer;
}

.overlay .overlay-close i,
.overlay2 .overlay-close2 i {
  font-size: 40px;
  position: initial;
  text-decoration: none;
  color: var(--white);
}

.overlay .overlay-close:hover i,
.overlay2 .overlay-close2:hover i {
  color: var(--black);
}

/* Effects */
.overlay-slidedown {
  visibility: hidden;
  -webkit-transform: translatex(100%);
  transform: translatex(100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
  transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
  background-color: var(--Orange);
  border-radius: 32px 0 0 32px;
}

.overlay-slidedown.open {
  visibility: visible;
  -webkit-transform: translatex(0%);
  transform: translatex(0%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  background-color: var(--Green);
  border-radius: 32px 0 0 32px;
}

/* COLUMNS */
.col1 {
  padding: 16px;
}

.col1 h1 {
  font-size: 24px;
  color: var(--white);
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--white);
  line-height: initial;
}

.container-4 {
  width: 100%;
  padding: 32px;
  overflow-y: auto;
}

.container-4 .col1 {
  text-align: right;
}

/* Menu superior */
#main-nav-top {
  float: right;
}

#main-nav-top li {
  margin: 0px;
  list-style: outside none none;
  text-align: center;
  display: inline-block;
}

#main-nav-top a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  padding: 20px 15px 15px;
  color: #fff;
  border-bottom: 3px solid transparent;
  margin: 0px;
  height: 70px;
  align-items: center;
}

#main-nav-top a:hover {
  border-bottom: 3px solid #ff6b00;
}

#main-nav-top ul {
  list-style: none;
  position: absolute;
  background: #fff;
  z-index: 100;
  display: none;
  max-width: 95px;
}

#main-nav-top li:hover>ul {
  display: block;
}

#main-nav-top ul li {
  background: none;
  padding: 0;
  margin: 0;
  float: none;
}

#main-nav-top ul li a {
  text-decoration: none;
  font-size: 14px !important;
  font-weight: 400;
  display: block;
  padding: 20px 15px;
  color: #000;
  margin: 0px;
  border: none;
}

#main-nav-top ul li a:hover {
  color: #ff6b00;
  border: none;
}

/* btn seleccionado */
#main-nav-top .current_page_item a,
#main-nav-top .current-menu-item a {
  color: #ff6b00;
}

/* current link :hover */
#main-nav-top .current_page_item a:hover,
#main-nav-top .current-menu-item a:hover {
  color: #ff6b00;
}

/* Menu but */

.nav_icon {
  text-align: center;
  color: #ff2200;
  font-size: 400%;
  margin: 10px 0px;
}

#main-nav-mobile {
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
}

.var #main-nav-mobile {
  gap: 24px !important;
}

.container-4 .var a,
.container-4 .var a:visited {
  font-size: 24px !important;
}

.container-4 .col1 a,
.container-4 .col1 a:visited,
#main-nav-mobile li a,
#main-nav-mobile li a:visited {
  color: var(--white);
  display: initial;
  font-size: 32px;
  text-decoration: none;
  float: right;
  line-height: 26px;
}

.container-4 .col1 a:hover,
#main-nav-mobile li a:hover {
  color: var(--black);
}