/*
Copa de los Sentidos
http://www.templatemo.com/tm-469-impulse
*/

body {
	background: #f8f8f8;
	color: #606060;
	font-family: 'Proxima', sans-serif;
	font-size: 16px;
	font-weight: 400;
	position: relative;
}
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-align: center;
	vertical-align: middle;
}
@font-face {
	font-family: 'Proxima';
	src: url(../fonts/ProximaNova-Regular.otf);
}
@font-face {
	font-family: 'Proxima Bold';
	src: url(../fonts/ProximaNova-Bold.otf);
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Proxima Bold";
	font-weight: bold;
}
p {
	letter-spacing: 1px;
	line-height: 28px;
}
hr {
	border-color: #e0e0e0;
	margin: 0 auto 20px auto;
	width: 100px !important;
}
h1 {
	font-size: 60px;
}
h2 {
	font-size: 48px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
.title {
	padding-bottom: 40px;
}
.title h2 {
	color: #202020;
	line-height: 20px;
	padding-bottom: 30px;
}
.title p {
	padding-top: 14px;
	padding-bottom: 30px;
}
.parallax-section {
	background-attachment: fixed !important;
	background-size: cover !important;
}
/* preloader section */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: none repeat scroll 0 0 #fff;
	background: none repeat scroll 0 0 #f9f9f9;
}
.sk-spinner-rotating-plane.sk-spinner {
	width: 40px;
	height: 40px;
	background-color: #eb5424;
	border-radius: 50%;
	-webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
	animation: sk-rotatePlane 1.2s infinite ease-in-out;
}
@keyframes sk-rotatePlane {
0% {
-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
}
50% {
-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
}
100% {
-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
}
}
/* home section */
#home {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    text-align: center;
}

/* Video de fondo */
#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* opcional: capa oscura para mejorar legibilidad del texto */
    z-index: 1;
}

#home video {
    position: absolute;
    top: 60%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover; /* importante para que llene bien la pantalla */
}

/* Para que el contenido (texto) esté por encima del video */
#home > * {
    position: relative;
    z-index: 2;
}
#home h2 {
	letter-spacing: 2px;
}
#home .btn {
	background: #eb5424;
	border-radius: 4px;
	border: none;
	color: #ffffff;
	font-size: 16px;
	padding: 20px 40px;
	margin-top: 60px;
}
#home .btn:hover {
	background: #fff;
	color: #eb5424;
	transition: all 0.4s ease-in-out;
}

/* CONTENEDOR */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 90%;
  margin: 60px auto;
  padding: 0 20px;
}

/* TARJETA */
.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: 1px solid rgba(191,146,91,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

/* IMAGEN PREVIA */
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

/* VIDEO */
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* HOVER */
.video-card:hover img {
  opacity: 0;
  transform: scale(1.05);
}

.video-card:hover iframe {
  opacity: 1;
}

/* ICONO PLAY */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-icon::before {
  content: "▶";
  font-size: 64px;
  color: #ffffff;
  background: rgba(0,0,0,0.55);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-card:hover .play-icon::before {
  transform: scale(1.15);
  opacity: 0;
}

/* POPUP */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.popup.active {
  display: flex;
}

.popup iframe {
  width: 90%;
  height: 90%;
  max-width: 1100px;
  border-radius: 18px;
  animation: scaleIn 0.4s ease;
}

/* BOTÓN CERRAR */
.popup-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 34px;
  color: #aa985e;
  cursor: pointer;
}

/* ANIMACIONES */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
/* OVERLAY TEXTO */
.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
  color: #f5f1ec;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  z-index: 3;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* EFECTO HOVER TEXTO */
.video-card:hover .video-title {
  transform: translateY(-6px);
}

/* AJUSTE MOBILE */
@media (max-width: 900px) {
  .video-title {
    font-size: 16px;
  }
}
/* navigation section */
.navbar-default {
	background: #fff;
	border: none;
	box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.04);
	margin: 0 !important;
}
.navbar-default .navbar-brand {
	font-size: 40px;
	font-weight: bold;
	margin: 0;
	line-height: 40px !important;
}
.navbar-default .navbar-nav li a {
	color: #606060;
	font-weight: bold;
	padding-right: 20px;
	padding-left: 20px;
	line-height: 40px;
}
.navbar-default .navbar-nav li a:hover {
	color: #eb5424;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
	color: #606060;
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: #eb5424;
	background-color: transparent;
}
.navbar-default .navbar-toggle {
	border: none;
	padding-top: 12px;
}
.navbar-default .navbar-toggle .icon-bar {
	background: #eb5424;
	border-color: transparent;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: transparent;
}
/* video section */
#video {
	background-color: #000;
	padding-top: 20px;
	padding-bottom: 20px;
}
#video h4 {
	padding-bottom: 16px;
	color: #ffffff;
}
.contiene-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.contiene-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* intro section */
#intro {
	padding-top: 60px;
	padding-bottom: 20px;
}
#intro h4 {
	padding-bottom: 16px;
}
/* work section */
#work {
	background-color: #ffffff;
}
#work .container {
	width: 100%;
	padding: 0;
	margin: 0;
}
#work .title {
	padding: 100px 60px 60px 60px;
}
#work .bg-black {
	background-color: #303030;
	color: #ffffff;
}
#work .bg-red {
	background-color: #eb5424;
	color: #ffffff;
}
#work h3 {
	padding-bottom: 60px;
}
#work h4 {
	padding-bottom: 60px;
}
#work .fa {
	color: #ffffff;
	cursor: pointer;
	font-size: 40px;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	margin-top: 40px;
}
#work .fa:hover {
	background-color: #ffffff;
	border-radius: 50%;
	color: #303030;
}
/* team section */
#team {
	background: #202020 url('../images/team-bg-1.jpg') 50% 0 repeat-y fixed;
	color: #ffffff;
	padding-top: 100px;
	padding-bottom: 50px;
}
#team h2 {
	color: #ffffff;
}
#team h3 {
	font-size: 20px;
	line-height: 10px;
}
#team h4 {
	color: #202020;
	line-height: 10px;
	font-weight: bold;
}
#team .team-des {
	background-color: #eb5424;
	color: #ffffff;
	padding: 20px 12px;
	position: relative;
}
#team img {
	max-width: 100%;
	height: auto;
	padding-top: 60px;
}
/* CONTENEDOR GENERAL */
.event-gallery {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;

  display: grid;
  gap: 40px;
}


/* MÓVIL (por defecto) */
.event-gallery {
  grid-template-columns: 1fr;
}
/* MÓVIL (pantallas muy largas) */
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  .event-gallery {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* ESCRITORIO */
@media (min-width: 1024px) {
  .event-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* TARJETAS */
.year-card {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transition: transform .6s ease, box-shadow .6s ease;
}

.year-card:hover {
  transform: scale(1.03);
  box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}

.year-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform .8s ease;
}

.year-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.15)
  );
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.overlay h3 {
  color: #fff;
  font-size: 42px;
  letter-spacing: 2px;
  font-weight: 600;
}
.overlay h4 {
  color: #eb5424;
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* MODAL BASE */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #1a0f12 0%, #0b0507 60%, #000 100%);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  perspective: 2500px;
  animation: fadeIn 0.6s ease forwards;
}
.gallery-modal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(128,36,53,0.25) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  background: none;
  border: none;
  color: #eb5424;
  cursor: pointer;
  z-index: 10;
}

.coverflow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}


.coverflow img {
  position: absolute;
  width: 320px;
  max-height: 65vh;
  object-fit: contain;
  transition: all 0.9s cubic-bezier(.22,.61,.36,1);
  cursor: pointer;
  border-radius: 18px;
  box-shadow: 
    0 40px 80px rgba(0,0,0,0.7),
    0 0 40px rgba(128,36,53,0.3);
  transform-origin: center center;
}

/* REFLEJO TIPO APPLE */
.coverflow img::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: 0;
  width: 100%;
  height: 50%;
  background: inherit;
  transform: scaleY(-1);
  opacity: 0.2;
  filter: blur(8px);
}

/* ESCRITORIO MÁS GRANDE */
@media (min-width: 1024px) {
  .coverflow img {
    width: 600px;
    max-height: 75vh;
  }
}

/* 🖥️ MODO ESCRITORIO */
@media (min-width: 1024px) {
  .coverflow img {
    width: 520px;      /* MÁS GRANDES en escritorio */
    max-height: 75vh;
  }
}

.gallery-controls {
  position: absolute;
  bottom: 70px;
  width: 100%;
  text-align: center;
  color: #eb5424;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* CONTENIDO */
.gallery-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* CONTENEDOR CARRUSEL */
.carousel-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TRACK */
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* IMÁGENES */
.carousel-track img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 auto;
  user-select: none;
  pointer-events: none;
}

/* FLECHAS */
.nav-gallery {
  position: absolute;
  font-size: 100px;
  background: none;
  border: none;
  color: #eb5424;
  cursor: pointer;
  transition: 0.3s;
}

.prev { left: -70px; }
.next { right: -70px; }

.nav-gallery:hover {
  transform: scale(1.2);
  opacity: 0.7;
}

/* portfolio section */
#portfolio {
	padding-top: 100px;
	padding-bottom: 5px;
}
#portfolio h2 {
	line-height: 20px;
}
#portfolio h3 {
	color: #eb5424;
	padding-bottom: 60px;
}
#portfolio a {
	text-decoration: none;
}
#portfolio img {
	border-radius: 1px;
	width: 100%;
	max-width: 100%;
	height: auto;
	opacity: 0.8;
	margin-bottom: 34px;
	opacity: 0.6;
	transition: all 0.4s ease-in-out;
}
#portfolio img:hover {
	opacity: 0.9;
}
/* galeria section */
#galeria {
	padding-top: 100px;
	padding-bottom: 5px;
}
#galeria h2 {
	line-height: 20px;
}
#galeria h3 {
	color: #eb5424;
	padding-bottom: 60px;
}
#galeria a {
	text-decoration: none;
}
#galeria img {
	border-radius: 1px;
	width: 100%;
	max-width: 100%;
	height: auto;
	opacity: 0.8;
	margin-bottom: 34px;
	opacity: 0.6;
	transition: all 0.4s ease-in-out;
}
#galeria img:hover {
	opacity: 0.9;
}
/* booking section */
#booking {
	background: #fff;
	padding-top: 100px;
	padding-bottom: 120px;
}
#booking .plan {
	background: #eb5424;
	color: #ffffff;
	padding: 0 0 60px 0;
}
#booking .plan .plan_title {
	background-color: #f6f6f6;
	color: #202020;
	padding-top: 40px;
	padding-bottom: 40px;
}
#booking .plan .plan_sub_title {
	border-bottom: 1px solid #ffffff;
	padding: 30px;
}
#booking .plan ul {
	padding: 0;
}
#booking .plan ul li {
	display: block;
	font-family: "Proxima";
	font-size: 16px;
	padding: 40px 0 10px 0;
}
#booking .plan .btn {
	background: #ffffff;
	border: none;
	border-radius: 0;
	color: #202020;
	font-size: 16px;
	font-weight: bold;
	padding: 20px 40px;
	transition: all 0.4s ease-in-out;
	margin-top: 20px;
}
#booking .plan .btn:hover {
	background: #202020;
	color: #ffffff;
}

/* ===== BOOKING FULL WIDTH ===== */

#booking{
  width:100%;
  padding:80px 20px;
  text-align:center;
  display:flex;
  justify-content:center;
  align-items:center;
}

.booking-wrapper{
  width:100%;
  max-width:900px;   /* controla la lectura en pantallas grandes */
  margin:0 auto;
}

/* ttulo */
#booking h4{
  font-size:28px;
  letter-spacing:2px;
  margin-bottom:10px;
}

/* lnea */
#booking hr{
  width:80px;
  margin:20px auto 40px auto;
}

/* ===== MUTICK BOOKING ===== */

#mutick-widget{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* imagen */
#mutick-widget img{
  width:100%;
  max-width:900px;
  height:auto;
  display:block;
  margin:0 auto 25px auto;
}

/* botn */
.booking-btn{
  background:#13a89e;
  color:#ffffff;
  padding:14px 34px;
  font-size:16px;
  font-weight:600;
  letter-spacing:1px;
  text-decoration:none;
  border-radius:6px;
  transition:all 0.25s ease;
  display:inline-block;
}

/* hover escritorio */
.booking-btn:hover{
  background:#0f8d85;
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,0.18);
}

/* click mvil */
.booking-btn:active{
  transform:translateY(0px);
  box-shadow:0 3px 8px rgba(0,0,0,0.18);
}

/* link entero clicable */
#widget-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
}

/* imagen responsive REAL */
#widget-link img{
  width:100%;
  max-width:900px;
  height:auto;
  display:block;
  margin:0 auto 15px auto;
}

/* texto */
.booking-text{
  font-size:18px;
  font-weight:500;
  color:#ffffff;
}

/* price section */
#price {
	background: #fff;
	padding-top: 100px;
	padding-bottom: 120px;
}
#price .plan {
	background: #eb5424;
	color: #ffffff;
	padding: 0 0 60px 0;
}
#price .plan .plan_title {
	background-color: #f6f6f6;
	color: #202020;
	padding-top: 40px;
	padding-bottom: 40px;
}
#price .plan .plan_sub_title {
	border-bottom: 1px solid #ffffff;
	padding: 30px;
}
#price .plan ul {
	padding: 0;
}
#price .plan ul li {
	display: block;
	font-family: "Proxima";
	font-size: 16px;
	padding: 40px 0 10px 0;
}
#price .plan .btn {
	background: #ffffff;
	border: none;
	border-radius: 0;
	color: #202020;
	font-size: 16px;
	font-weight: bold;
	padding: 20px 40px;
	transition: all 0.4s ease-in-out;
	margin-top: 20px;
}
#price .plan .btn:hover {
	background: #202020;
	color: #ffffff;
}
/* ============ MAPA SIN BORDES REAL ============ */

/* evita scroll horizontal */
html, body{
  overflow-x:hidden;
}

/* seccin */
#map-section{
  position:relative;
  padding:0 !important;
  margin:0 !important;
}

/* CONTENEDOR QUE ROMPE EL LAYOUT */
.map-fullbleed{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

/* mapa */
.google_map{
  width:100%;
  margin:0;
  padding:0;
  line-height:0;
}

/* iframe real */
.google_map iframe{
  display:block;
  width:100vw;
  height:600px;
  border:0;
}

/* bloque cookies */
.map-block{
  width:100vw;
  min-height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  background:#f3f3f3;
  text-align:center;
  padding:40px 20px;
  box-sizing:border-box;
}

/* mensaje */
.map-message{
  font-size:18px;
  color:#333;
  max-width:460px;
}

/* botn */
.cookie-btn{
  background:#13a89e;
  color:#fff;
  border:0;
  padding:14px 30px;
  font-size:16px;
  border-radius:6px;
  cursor:pointer;
  transition:0.25s;
}

.cookie-btn:hover{
  background:#0f8d85;
}

/* mvil */
@media (max-width:768px){

  .google_map iframe{
    height:420px;
  }

  .map-block{
    min-height:420px;
  }

}

/* contact section */
#contact {
	background: #f6f6f6 url('../images/copa-de-los-sentidos-contact-bg-2024.jpg') 50% 0 repeat-y fixed;
	color: #ffffff;
	padding-top: 100px;
	padding-bottom: 80px;
}
#contact h2 {
	color: #ffffff;
}
#contact .form-control {
	border-radius: 4px;
	border: none;
	box-shadow: none;
	margin-top: 12px;
	margin-bottom: 14px;
}
#contact input {
	height: 50px;
}
#contact input[type="submit"] {
	background-color: #eb5424;
	color: #ffffff;
	height: 60px;
	font-weight: bold;
	transition: all 0.4s ease-in-out;
}
#contact button[type="submit"] {
	background-color: #eb5424;
	color: #ffffff;
	height: 60px;
	font-weight: bold;
	transition: all 0.4s ease-in-out;
}
#contact input[type="submit"]:hover {
	background-color: #202020;
}
/* contenedor del bloque */
.privacy-label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.4;
  cursor:pointer;
}

/* checkbox */
.privacy-label input[type="checkbox"]{
  margin-top:2px;        /* microajuste vertical */
  flex-shrink:0;         /* evita que se deforme en mvil */
  width:16px;
  height:16px;
}

/* enlaces legales */
.legal-link{
  color:#eb5424;
  text-decoration:underline;
  cursor:pointer;
  font-weight:600;
}

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

.success-popup.active {
  opacity: 1;
  visibility: visible;
}

.success-content {
  background: #111;
  color: #eb5424;
  padding: 50px 60px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  transform: translateY(40px);
  transition: 0.4s ease;
}
.popup-close {
  margin-top: 20px;
  padding: 10px 25px;
  background: #eb5424;
  color: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.popup-close:hover {
  transform: scale(1.05);
}

.success-popup.active .success-content {
  transform: translateY(0);
}

.success-icon {
  font-size: 50px;
  margin-bottom: 15px;
  color: #eb5424;
}

/* footer section */
footer {
	background: #202020;
	color: #ffffff;
	border-bottom: 10px solid #ffffff;
	padding-top: 60px;
	padding-bottom: 60px;
}
footer h2 {
	padding-top: 40px;
	padding-bottom: 20px;
}
footer p {
	line-height: 20px;
}
footer .copyright a {
	color: #eb5424;
}
.social-icon {
	padding: 0;
	margin: 0;
	text-align: center;
	vertical-align: middle;
}
.social-icon li {
	list-style: none;
	display: inline-block;
}
.social-icon li a {
	background: #f8f8f8;
	border-radius: 100%;
	color: #eb5424;
	font-size: 16px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
	margin: 0 6px 40px 6px;
}
.social-icon li a:hover {
	background: #080808;
}
@media screen and (max-width:980px) {
.navbar-default .navbar-nav li a {
	padding-right: 14px;
	padding-left: 14px;
	font-size: 13px;
}
#intro h2 {
	font-size: 32px;
}
#work .title {
	padding: 80px 20px 20px 20px;
}
.portfolio-thumb .portfolio-overlay {
	padding-top: 24px;
}
}
@media (max-width:767px) {
.navbar-brand {
	padding-top: 6px;
}
}
@media (max-width:400px) {
#home h1 {
	font-size: 32px;
}
#home h2 {
	font-size: 22px;
}
#intro h2 {
	font-size: 20px;
}
.portfolio-thumb .portfolio-overlay {
	padding-top: 60px;
}
}
