*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:auto;
}

body{
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.7;
  background-color: #f9f9f9;
  color:blue;
  overflow-x:hidden;
  padding-top: 80px;

}

/* NAVBAR */

.navbar-wrapper{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  padding:0px 10px;
}

.navbar{
  top:0px;
  max-width:1400px;
  margin:auto;
  margin-top:0px;
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:18px 24px;

  border-radius:22px;

  background:rgba(255,179,0,0.6);

  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.85);

  box-shadow:0 10px 30px rgba(0,0,0,.08);
  color:blue;
}

.logo{
  font-size:1.9rem;
  font-weight:800;
}

.nav-links{
  display:flex;
  gap:24px;
}

.nav-links a{
  text-decoration:none;
  /*color:#111;*/
    color:blue;
  font-weight:500;
  position:relative;
    font-size:1.2rem;
  font-weight:700;
}

.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0%;
  /*height:2px;*/
  background:#111;
  transition:.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:100%;
}

@media(max-width:900px){
  .logo {font-size:1.6rem;}
  .nav-links a{font-size:1.0rem;}
}

@media(max-width:768px){
  .logo {font-size:1.4rem;}
  .nav-links a{font-size:0.8rem;}
}


/* MOBILE MENU */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:28px;
  height:3px;
  background:#111;
  border-radius:10px;
}

/* SECTIONS */

section{
  min-height:auto; /*70vh;*/
  max-width:1400px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0px auto;
  padding:1px 3px 5px;
  margin-bottom:1px;
  scroll-margin-top:100px;
}

section h1, section h2 {
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.25px;
    color: blue;
    text-align: center;
	/*animation: fadeUp 1.2s ease forwards;*/
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 1.1rem; }
p {
    margin-bottom: 5px;
    font-size: 1.1rem;
}


.content{
    width:100%;
    padding:0px 3px 5px;
}

/* HERO */

h1{
  font-size:3rem;
  margin-bottom:20px;
}


/* ================================
   BOTONES
   ================================ */
.hero-buttons{
  margin-top:10px;
  align-items: center;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn {
  background:#0a2540;
  color:white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(25, 118, 210, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 14px rgba(25, 118, 210, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-ghost:hover {
  background: var(--color-primary-light);
}

.secondary{
  background:transparent;
  color:#0a2540;
  border:1px solid #0a2540;
}

/* TITLES */

h2{
  font-size:2rem;
  margin-bottom:40px;
}

/* GRID */

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:white;
  padding:40px;
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);

  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

/* ABOUT */

.about-text{
  max-width:700px;
  line-height:1.7;
  font-size:1.1rem;
}

/* GALLERY */

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.gallery img{
  width:100%;
  border-radius:20px;
  transition:.4s;
}

.gallery img:hover{
  transform:scale(1.03);
}

/* CONTACT */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

input,
textarea{
  width:100%;
  padding:16px;
  border-radius:14px;
  border:1px solid #ddd;
  margin-bottom:16px;
  font-family:inherit;
}

textarea{
  min-height:140px;
}

/* COOKIE OVERLAY */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 999;
}

#cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* COOKIE BAR – centrada verticalmente */
#cookie-bar {
    position: fixed;
    top: 40%;                 /* centrado vertical */
    transform: translateY(-50%, 50%); /* centra vertical y horizontal */
    left: -400px;             /* empieza fuera por la izquierda */
    width: 360px;
    padding: 20px;
    background: #333;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: left 0.6s ease;
    z-index: 1000;
    font-size: 15px;
    color: #fff;
}

/* Centro 
#cookie-bar.center {
  left: calc(50% - 160px);
}*/


/* Cuando aparece (entra desde la izquierda) */
#cookie-bar.mostrar {
    left: 45%;
}

/* Cuando desaparece (sale hacia la derecha) */
#cookie-bar.ocultar {
    left: 120%;
}

#cookie-bar p {
    margin-bottom: 15px;
    color: #eee;
}

#cookie-bar a {
    color: #ffb300;
    font-weight: 600;
    text-decoration: none;
}

#cookie-bar a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#acceptCookies,
#rejectCookies {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#acceptCookies {
    background: #ffb300;
    color: #000;
}

#acceptCookies:hover {
    background: #e09c00;
}

.btn-reject {
    background: #ddd;
    color: #333;
}

.btn-reject:hover {
    background: #ccc;
}

/* RESPONSIVE – móviles */
@media (max-width: 600px) {

    #cookie-bar {
        width: 90%;                 /* ocupa casi todo el ancho */
        max-width: 320px;           /* límite para que no sea enorme */
        padding: 15px;
        font-size: 14px;

        left: -100%;                /* empieza fuera por la izquierda */
        transform: translate(-50%, -50%);
    }

    #cookie-bar.mostrar {
        left: 50%;                  /* centrado horizontal */
    }

    #cookie-bar.ocultar {
        left: 150%;                 /* sale más lejos para evitar ver el borde */
    }

    .cookie-buttons {
        flex-direction: column;     /* botones uno debajo del otro */
    }

    #acceptCookies,
    #rejectCookies {
        width: 100%;
        padding: 12px;
    }
}

/* RESPONSIVE – tablets */
@media (max-width: 900px) {

    #cookie-bar {
        width: 80%;
        max-width: 360px;
        padding: 18px;
    }
}
/*===========================================


/* WHATSAPP */

.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;

  background:#25D366;
  color:white;

  padding:14px 18px;

  border-radius:50px;

  text-decoration:none;

  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ANIMATIONS */

.fade-up{
  opacity:1;
  transform:translateY(0);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-up.hidden{
  opacity:0;
  transform:translateY(40px);
}

/* RESPONSIVE */

@media(max-width:900px){

  .grid,
  .gallery,
  .contact-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:1.8rem;
  }

  h2{
    font-size:1.2rem;
  }

}

@media(max-width:768px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;

    top:90px;
    left:20px;
    right:20px;

    flex-direction:column;

    background:white;

    padding:24px;

    border-radius:20px;

    display:none;
  }

  .nav-links.active{
    display:flex;
  }

}
/*========================================================*/

:root {
  --color-primary: #1976d2;
  --color-primary-light: #e3f2fd;
  --color-primary-dark: #0d47a1;
  --color-accent: #ffb300;
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-border: #e0e0e0;
  --color-text: #222222;
  --color-text-muted: #666666;
  
  --altura-nav: 80px;
}

.texto-margen {
  padding-left: 3cm;   /* separa el texto */
  background: linear-gradient(to bottom, #ffe0b2, #fff9c4, #f4511e); /* o el color que quieras */
  text-align: left;    /* opcional */
  color: blue;
  border-radius: 14px 14px 0px 0px;
}


/* SISTEMA GRID 12 COLUMNAS */
.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    width: 100%;
    margin: 20px 0;
}

/* Columnas */
.col {
	background: rgba(255, 255, 200, 0.25);
	backdrop-filter: blur(12px);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: left;
}

.col:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-5px);
}


/* SPAN DE COLUMNAS */
.col-25  { grid-column: span 3; }
.col-33  { grid-column: span 4; }
.col-50  { grid-column: span 6; }
.col-66  { grid-column: span 8; }
.col-75  { grid-column: span 9; }
.col-100 { grid-column: span 12; }

/* RESPONSIVE GRID */
@media (max-width: 900px) {
    .col-25,
    .col-33,
    .col-50,
    .col-66,
    .col-75 {
        grid-column: span 12;
    }
}

/* Reducir espacio vertical entre textos dentro de columnas */
.col h1,
.col h2,
.col h3,
.col h4,
.col p {
  margin-top: 6px;
  margin-bottom: 6px;
}

/* Reducir separación entre líneas */
.col {
  line-height: 1.25;
}

/* Reducir padding interno */
.col {
  padding: 5px;
}
.col-33-center {
	display: flex;
	justify-content: center;
	background: rgba(255, 255, 200, 0.15);
	backdrop-filter: blur(12px);
    padding: 5px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: left;
}

.col-titulo {
    font-size: 1.5rem;
    font-weight: 600;
	text-align: center;
}

.col-subtitulo {
    font-size: 1.3rem;
    font-weight: 500;
}
.col-p {
	font-size: 1.0rem;
    font-weight: 300;
}

@media(max-width:720px){
  .col,
  .col-titulo,
  .col-subtitulo,
  .col-p {

  h1{
    font-size:1.4rem;
  }

  h2{
    font-size:1.2rem;
  }
  
  h3{
	font-size:0.9rem;
  }
  
  p{
	font-size:0.8rem;
  }
  }
}



/* ICONOS */
.icono {
    margin-bottom: 20px;
}

.icono svg {
    display: block;
    margin: auto;
}




/*  ============================================
		flip-card
	============================================ */
.padre {
   display: table;
   /*height:200px;*/
}
.hijo {
   display: table-cell;
   vertical-align: middle;
}
.fill {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -o-background-size: cover;
 }
.flip-card {
  background-color: transparent;
  width: calc(100% - 20px);
  height:calc(32vh - 20px);
  min-height: 100px;
  perspective: 1000px;
  padding:5px 5px 5px 5px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 2s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.8);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width:100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-card-front {
  padding:auto auto;
  background-color: transparent;
  color: black;
}
.flip-card-back{
  background-color: transparent;
  color: blue;
  transform: rotateY(180deg);
  text-align: center center;
  justify-content: center;
  font-size: 0.9rem;
}
  @media screen and(max-width: 720px) {
	.flip-card {
	height:450px;
	font-size:9px;
	}
    .col-sm-4 {
      text-align: center;
      margin: 15px 0;
    }
	.btn-lg {
      width: 100%;
      margin-bottom: 35px;
    }
	.flip-card-back {font-size: 9px;}
  }
  @media screen and(max-width: 480px) {
    .logo {
      font-size: 150px;
    }
    .col-sm-4 {
      text-align: center;
      margin: 15px 0;
    }
	.btn-lg {
      width: 100%;
      margin-bottom: 35px;
    }

  }


    /* ================================
   DEGRADADOS PARA ROWS
   ================================ */

/* Vertical */
.row-bg-gradient-vertical {
  background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
}

/* Vertical invertido */
.row-bg-gradient-vertical-reverse {
  background: linear-gradient(to top, #e3f2fd, #bbdefb);
}

/* Horizontal */
.row-bg-gradient-horizontal {
  background: linear-gradient(to right, #e3f2fd, #bbdefb);
}

/* Diagonal 45° */
.row-bg-gradient-diagonal {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
}

/* Diagonal 135° */
.row-bg-gradient-diagonal-reverse {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

/* 3 colores */
.row-bg-gradient-3 {
  background: linear-gradient(to bottom, #e3f2fd, #bbdefb, #90caf9);
}

/* Oscuro profesional */
.row-bg-gradient-dark {
  background: linear-gradient(to bottom, #424242, #212121);
}

/* Cálido    */
.row-bg-gradient-calido {
	background: linear-gradient(to bottom, #ffe0b2, #fff9c4);
}

.texto-info {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.62;
}
.col .texto-info {
    text-align: left !important;
}

.marca {
    font-family: "Lucida Calligraphy", cursive;
    color: blue;
    font-weight: 700;
    font-style: italic;
	text-align: left;
}

.texto-naranja {
    color: #f4511e;
}

.texto-azul {
    color: blue;
    font-style: italic;
    font-weight: 600;
}

.lista-servicios {
    text-align: left;
    color: #f4511e;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.7;
}

.lista-servicios ul {
    list-style: none;
    padding-left: 10;
}

.lista-servicios li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 5px;
}

.lista-servicios li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f4511e;
    font-size: 1.2rem;
}

.texto-secundario {
    margin-top: 10px;
    font-weight: normal;
    color: blue;
	text-align: center;
}

.texto-garantia {
    margin-top: 5px;
    font-size: 1.1rem;
    color: blue;
	text-align: center;
}

/* FOOTER CON DEGRADADO */
.footer {
    max-width: 1400px;
	margin:0px auto;

    background: linear-gradient(
        180deg,
        rgba(255, 179, 0, 0.95) 0%,
        rgba(255, 179, 0, 0.85) 40%,
        rgba(255, 179, 0, 0.75) 100%
    );
    color: #222;
    padding: 20px 5px 5px;
    margin-top: 10px;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
	height:auto;
	min-height:55vh;
}

.footer-container {
    margin: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 280px;
	border: 2px solid var(--color-border);
	padding-left:10px;
	padding-right:10px;
	border-radius: 10px;
	line-height: 1.25;
}

.footer-col-mini {
    flex: 1;
    min-width: 180px;
	/*border: 2px solid var(--color-border);*/
	padding-left:10px;
	padding-right:10px;
	border-radius: 10px;
	line-height: 1.25;
}

.footer-col h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: blue;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: blue;
}

.footer-col p {
    color: blue;
    margin-bottom: 10px;
}

@media(max-width:720px){

  .footer-col,
  .footer-col-mini{
 min-width: 150px;
 gap: 5px;
  h1{
    font-size:1.4rem;
  }

  h2{
    font-size:1.2rem;
  }
  
  h3{
	font-size:0.9rem;
  }
  
  p{
	font-size:0.8rem;
  }
  }
}


.footer-bottom {
    text-align: center;
    margin-top: 10px;
    padding-top: 18px;
	border-top: 5px solid var(--color-primary);
    /* border-top: 4px solid rgba(0,0,0,0.8); */
    font-size: 1.4rem;
    color: blue;
}

.texto-info {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.62;
}
.col .texto-info {
    text-align: left !important;
}

.marca {
    font-family: "Lucida Calligraphy", cursive;
    color: blue;
    font-weight: 700;
    font-style: italic;
	text-align: left;
}

.texto-naranja {
    color: #f4511e;
}

.texto-azul {
    color: blue;
    font-style: italic;
    font-weight: 600;
}

.lista-servicios {
    text-align: left;
    color: #f4511e;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.7;
}

.lista-servicios ul {
    list-style: none;
    padding-left: 10;
}

.lista-servicios li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 5px;
}

.lista-servicios li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f4511e;
    font-size: 1.2rem;
}

.texto-secundario {
    margin-top: 20px;
    font-weight: normal;
    color: blue;
	text-align: center;
}

.texto-garantia {
    margin-top: 5px;
    font-size: 1.1rem;
    color: blue;
	text-align: center;
}

    /* ================================
   DEGRADADOS PARA ROWS
   ================================ */

/* Vertical */
.row-bg-gradient-vertical {
  background: linear-gradient(to bottom, #e3f2fd, #bbdefb);
}

/* Vertical invertido */
.row-bg-gradient-vertical-reverse {
  background: linear-gradient(to top, #e3f2fd, #bbdefb);
}

/* Horizontal */
.row-bg-gradient-horizontal {
  background: linear-gradient(to right, #e3f2fd, #bbdefb);
}

/* Diagonal 45° */
.row-bg-gradient-diagonal {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
}

/* Diagonal 135° */
.row-bg-gradient-diagonal-reverse {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

/* 3 colores */
.row-bg-gradient-3 {
  background: linear-gradient(to bottom, #e3f2fd, #bbdefb, #90caf9);
}

/* Oscuro profesional */
.row-bg-gradient-dark {
  background: linear-gradient(to bottom, #424242, #212121);
}

/* Cálido    */
.row-bg-gradient-calido {
	background: linear-gradient(to bottom, #ffe0b2, #fff9c4);
}

/* ======================
 NuevoCarrusel
 ======================== */
 
.contenedor-banner {
    max-width: 1400px;
	/*max-height: 200px;*/
    margin: 0 auto;
    padding: 0; /* ← antes 80px, ya no hace falta */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kenburns-carousel {
  margin-top:8px; /* var(--altura-nav, 8px);*/
  width: 100%;
  max-height: 380px;
  aspect-ratio: 16 / 6;
  position: relative;
  overflow: hidden;
  background: #999;
}

@media (max-width: 768px) {
  .kenburns-carousel {
    aspect-ratio: 16 / 9;
  }
}

.kenburns-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ← mejora clave */
  object-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 2.5s ease;
}

.kenburns-carousel img.active {
  opacity: 1;
  transform: scale(1.0);
}
@keyframes kenburns {
  0% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
/*==== Fin NuevoCarrusel ======*/


/* CONTENEDOR FIJO A LA DERECHA */
#carousel-fijo {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 200px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  min-height:200px;
  /* 🔥 CENTRADO VERTICAL Y HORIZONTAL DEL TEXTO */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* TEXTO DEL CARRUSEL */
#carousel-texto {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffb300;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

/* ANIMACIÓN FADE */
.fade {
  opacity: 0;
  animation: fadeEffect 1.2s ease forwards;
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   OCULTAR EN MÓVIL
   ============================ */
@media (max-width: 1300px) {
  #carousel-fijo {
    display: none;
  }
}

/* Estilo para galeria */
	/* Contenedor general */
.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Marco */
.marcogaleria {
    width: 90%;
    max-width: 1300px;
    margin: 35px auto;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 20px;
    box-shadow: 0 0 20px 8px rgba(0,0,0,0.8);
}

/*===================================================*/
/* Slideshow responsive */
#slideshow {
    width: 100%;
    aspect-ratio: 4 / 3; /* Mantiene proporción sin romperse */
    max-height: 380px;    /* Evita que crezca demasiado en pantallas pequeñas */
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imágenes */
#slideshow img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Nunca recorta */
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
}

#slideshow img.active {
    opacity: 1;
}
/* Fin Estilo para galeria */

