/* animaciones.css */


/* EFECTOS */

.reveal {
  opacity: 0;
  transition: all 1s ease;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
}

/* Fade sutil */
.reveal.fade {
  transform: translateY(20px);
}

.reveal.fade.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide desde abajo muy suave */

.reveal.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide desde izquierda */
.reveal.slide-left {
  transform: translateX(-40px);
}

.reveal.slide-left.active {
  transform: translateX(0);
}

/* Slide desde derecha */
.reveal.slide-right {
  transform: translateX(40px);
}

.reveal.slide-right.active {
  transform: translateX(0);
}

/* Slide desde abajo */
.reveal.slide-up {
  transform: translateY(40px);
}

.reveal.slide-up.active {
  transform: translateY(0);
}

/* Zoom sutil */
.reveal.zoom {
  transform: scale(0.97);
}

.reveal.zoom.active {
  transform: scale(1);
}

/* Variaciones de velocidad */
.reveal.fast {
  transition-duration: 0.6s;
}

.reveal.slow {
  transition-duration: 1.6s;
}

/* Aparición elegante tipo cortina */
.reveal.blur {
  filter: blur(10px);
}

.reveal.blur.active {
  opacity: 1;
  filter: blur(0);
}


@media (max-width: 992px) {

  .reveal.slide-left,
  .reveal.slide-right {
    transform: none !important;
  }

  .row.g-5 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

}

/* Cómo se aplica: 

<div class="col-lg-3 col-12 reveal slide-up"></div>

<link rel="stylesheet" href="css/animaciones.css">
<script src="js/animaciones.js" defer></script>

 */

/* style.css */


:root {
  --primary: black;
  --secondary: white;
  --white: white;
  --light: #f4f1f2;
  --dark: black;
  --body-color: black;

  --font-body: "Special Gothic Condensed One", sans-serif;
  --font-heading: "Special Gothic Condensed One", sans-serif;

  --body-text-size: 18px;
  --heading-text-size: 46px;
}

a:hover,
a:focus,
a:active,
.form-control:focus,
.form-control:active,
.form-control:hover,
button:hover,
button:active,
button:focus,
.btn:hover,
.btn:active,
.btn:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

section {
  padding: 40px 0;
}

body {
  font-family: var(--font-body);
  color: var(--body-color);
  font-size: var(--body-text-size);
  background-color: var(--white);
  font-weight: 400;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-size: var(--heading-text-size);
  font-weight: 400;
}


/* mapa-02.css */

/* MAPA 02 */

#mapa-02 {
  background-color: black;
  padding: 40px 0px;
}

.mapa-02 .botonera {
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

.mapa-02 .botonera a {
  color: black;
  background: white;
  padding: 10px 15px;
  text-decoration: none;
  margin-right: 15px;
  transition: .3s;
}

.mapa-02 .botonera a:hover,
.mapa-02 .botonera a:active,
.mapa-02 .botonera a:focus {
  transform: translateY(-4px);
}

/* listas-02.css */

#listas-02 .servicios-menu {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

#listas-02 .servicio-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 15px 30px;
  text-align: left;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: .3s;
}

#listas-02 .servicio-link span:last-child {
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
}

#listas-02 .servicio-link.activo {
  background: #000;
  color: #fff;
}

#listas-02 .servicio-imagen {
  overflow: hidden;
}

#listas-02 .servicio-imagen img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}

#listas-02 .servicio-info {
  padding-left: 30px;
}

#listas-02 .servicio-info h2 {
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 3px;
}

#listas-02 .precio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

#listas-02 .nombre {
  white-space: nowrap;
  font-size: 18px;
}

#listas-02 .linea {
  flex: 1;
  border-bottom: 1px dashed #999;
}

#listas-02 .precio {
  white-space: nowrap;  
}

#listas-02 .texto {
  white-space: nowrap;  
}

@media(max-width:991px) {

  #listas-02 .servicio-info {
    padding: 0px 20px;
    margin-top: 30px;
  }

  #listas-02 .servicio-imagen img {
    height: 450px;
  }

}

/* formulario-02.css */

/* Contacto */

#formulario-02 textarea.form-control {
  min-height: 140px;
  margin-bottom: 20px;
  border-color: black;
  border-radius: 0px;
  background: white;
}

#formulario-02 .no-margin {
  margin: 0px !important;
}

#formulario-02 .help-block.with-errors {
  color: #313875;
  margin-top: 5px;
}

#formulario-02 .alert-success {
  color: #fff;
  background-color: transparent;
  border-color: #f1f0f5;
}

#formulario-02 .alert-dismissable .close,
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0px;
  color: white;
  font-weight: 300;
  background: black;
  border: 0;
}

#formulario-02 .alert {
  position: relative;
  padding: 2rem;
  margin-bottom: 1rem;
  border: 0px solid transparent;
  border-radius: 0px;
}

#formulario-02 .text-muted {
  color: #313875;
}

#formulario-02 .history-text p.text-muted {
  color: #313875;
}

#formulario-02 .messages {
  background: black;
  color: white;
}


#formulario-02 .btn.disabled,
#formulario-02 .btn[disabled],
#formulario-02 .btn-send,
#formulario-02 .btn-success,
fieldset[disabled] .btn {
  background: white;
  color: #161717;
  text-transform: uppercase;
  width: 165px;
  border: 1px solid black;
  height: 46px;
  cursor: pointer;
  font-size: calc(12px + 0.4vw);
  opacity: 1;
  line-height: 1;
  border-radius: 0px;
  margin-bottom: 10px;
  transition: .3s;
}

#formulario-02 .btn.disabled:hover,
#formulario-02 .btn.disabled:active,
#formulario-02 .btn.disabled:focus,
#formulario-02 .btn-success:hover,
#formulario-02 .btn-success:active,
#formulario-02 .btn-success:focus,
.btn[disabled]:hover,
#formulario-02 .btn[disabled]:active,
#formulario-02 .btn[disabled]:focus,
#formulario-02 fieldset[disabled] .btn:hover,
#formulario-02 fieldset[disabled] .btn:active,
#formulario-02 fieldset[disabled] .btn:focus,
#formulario-02 .btn-send:hover,
#formulario-02 .btn-send:active,
#formulario-02 .btn-send:focus {
  color: black;
  opacity: 1;
  border-radius: 0px;
  transform: translateY(-4px);
}

#formulario-02 .alert-danger {
  color: black;
  background-color: #f1f0f5;
  border-color: #f1f0f5;
}

#formulario-02 .form-group {
  margin-top: 10px;
  margin-bottom: 10px;
}

#formulario-02 .form-group input {
  min-height: 45px;
  border-color: black;
  border-radius: 0px;
  background: white;
}

#formulario-02 .d-none {
  display: none !important;
}

#formulario-02 .nice-select.wide {
  width: 100%;
  border-radius: 0;
}

#formulario-02 .input-group-addon {
  position: absolute;
  right: 10px;
  z-index: 1;
  top: 8px;
}

#formulario-02 .contact_col {
  padding: 20px;
}

#formulario-02 .get_in_touch_col {
  padding: 20px;
}

#formulario-02 .contact_contents {
  border: 1px solid black;
  padding: 20px;
  height: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#formulario-02 .contact_contents .center {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
}

/* Termina Contacto */

/* promo-01.css */



/* cta-01.css */

#cta-01 {
  background: var(--primary);
}

#cta-01 .btn.btn-outline-white {
  border-color: #fff;
  color: #fff;
}

#cta-01 .btn {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
}


/* slider-01.css */


/* =============================== */
/* SLIDER HOME                    */
/* =============================== */

.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1.6s ease,
    transform 2.4s ease;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide.active::after {
  opacity: 1;
}

.slide.out {
  opacity: 0;
  transform: scale(1.02);
  z-index: 1;
}

/* CONTENIDO */

.slide-content {
  position: absolute;
  bottom: 10%;
  left: 3%;
  color: white;
  max-width: 650px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease 0.3s;
  z-index: 3;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 {
  font-size: 85px;
  margin-bottom: 36px;
  line-height: 1.1;
}

.slide-content p {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.4;
}

.texto-der {
  position: absolute;
  z-index: 99;
  right: 16%;
  bottom: 10%;
  width: 270px;
  color: white;
  font-size: 24px;
}

/* BOTÓN */

.slider-btn {
  background: var(--c1);
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
}

.slider-btn:hover {
  background: #000;
  color: white;
}

/* FLECHAS */

.slider-arrows {
  position: absolute;
  top: 50%;
  right: 8%;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.slider-arrows button.prev {
  display: none;
}

.slider-arrows button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrows button:hover {
  opacity: .4;
  transition: opacity .3s;
}

.redes-slider {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.redes-slider a {
  color: black;
  background-color: white;
  border-radius: 50px;
  padding: 8px 10px;
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 991.98px) {

  .slide-content {
    left: 6%;
    bottom: 40%;
    max-width: 300px;
  }

  .slide-content h1 {
    font-size: 47px;
  }

  .slide-content p {
    font-size: 18px;
  }
}

/* header-02.css */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 25px 0;
  transition: all .35s ease;
}

header.scrolled {
  background: #000;
  padding: 10px 0;
}

.nav-container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}

.logo img {
  height: 300px;
  transition: all .35s ease;
}

header.scrolled .logo img {
  height: 75px;
}

/* ================= MENU BASE ================= */

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: #000;
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  z-index: 1;
  transition: .35s;
}

.nav-menu.active {
  right: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: .05em;
  font-weight: 500;
  transition: opacity .3s;
}

.nav-menu a:hover {
  opacity: .7;
}

/* ================= HAMBURGUESA ================= */

.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 50px;
  padding: 14px 10px;
  top: 20px;
  position: fixed;
  right: 20px;
}

.menu-toggle span {
  display: block;
  background: var(--white);
  height: 2px;
  margin: 3px 0;
  transition: .3s;
}

.menu-toggle span:nth-child(1) {
  width: 32px;
}

.menu-toggle span:nth-child(2) {
  width: 24px;
}

.menu-toggle span:nth-child(3) {
  width: 16px;
}

/* CLOSE */

.menu-close {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* ================= SUBMENU ================= */

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.has-submenu span {
  color: #fff;
  font-size: 20px;
  letter-spacing: .05em;
  cursor: pointer;
}

/* oculto por defecto */

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: .3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.menu-item.has-submenu.active .submenu {
  margin: 20px 0px;
}

/* activo */

.has-submenu.active .submenu {
  max-height: 500px;
}

/* links submenu */

.submenu a {
  font-size: 18px;
  color: #aaa;
  text-transform: uppercase;
  padding-bottom: 5px;
}

.submenu a:hover {
  color: #fff;
}

@media(max-width:991px) {

  .nav-menu,
  .menu-item,
  .submenu {
    text-align: left;
    align-items: flex-start;
    width: 80%;
  }

  header .logo img {
    height: 100px;
  }

}

/* footer-01.css */

/**********************
Footer
***********************/


#footer {
  background: #1e1e1e;
  color: #fff;
  padding: 40px 0 0 0;
}

#footer .container-fluid {
  padding-left: 4%;
  padding-right: 4%;
}

.footer-col {
  margin-bottom: 30px;
  margin-top: 30px;
}

.footer-logo {
  max-width: 202px;
}

.footer-col p {
    font-size: 18px;
    line-height: 1.6;
    opacity: .8;
    padding-right: 20px;
}

.footer-title {
  position: relative;
  font-size: 22px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.footer-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  height: 18px;
  border-left: 1px solid #fff;
}

.footer-contacto {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacto li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-contacto i {
  width: 20px;
  text-align: center;
}

.footer-redes {
  display: flex;
  gap: 12px;
}

.footer-redes a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: .3s;
}

.footer-redes a:hover {
  transform: translateY(-4px);
}


.copyright {
  width: 100%;
  background: #000;
  padding: 12px 0;
  margin-top: 20px;
}

.copyright p {
  font-size: 11px;
  color: #fff;
}

.copyright a {
  color: #fff;
  text-decoration: none;
}


@media(max-width:991px) {  

  .footer-title {
    padding-left: 0;
  }

  .footer-title:before {
    display: none;
  }


}

/* whatsapp-01.css */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s;
  animation: pulse 2.5s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #1ebd5a;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* scrolltop-02.css */


.scroll-top {
  position: fixed;
  right: 6px;
  top: 80%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  z-index: 999;
  color: var(--white);
  transition: .3s;
}

/* línea */

.scroll-top .line {
  width: 1px;
  height: 60px;
  background: var(--white);
  transition: .3s;
}

/* flecha */

.scroll-top .arrow {
  font-size: 16px;
  transition: .3s;
}

/* texto vertical */

.scroll-top .text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 12px;
  transition: .3s;
  margin-bottom: 10px;
  font-weight: 400;
}

/* estado scrolled */

.scroll-top.scrolled {
  color: var(--dark);
}

.scroll-top.scrolled .line {
  background: var(--dark);
}

@media(max-width:991px) {
  h3 {
    font-size: 28px;
  } 
}

@media (max-width: 1400px) and (max-height: 700px) {
  .logo img {
    height: 240px;
  }
  .slide-content h1 {
    font-size: 60px;
    margin-top: 20px;
  }
}