@charset "utf-8";
/* CSS Document */

/* ---------------- GLOBAL STYLES ---------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
	    background: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* NAVBAR with dark background */
.custom-navbar {
background: rgba(0, 0, 0, 0.75) !important;
backdrop-filter: blur(4px);
}


/* General link styling */
.nav-link {
color: #ffffff !important;
font-weight: 500;
transition: 0.3s ease;
}


.nav-link:hover {
color: #d1d1d1 !important;
}


/* Disabled state — darker + no click */
.nav-disabled {
color: #555 !important;
pointer-events: none;
cursor: default;
}
/* ---------------- HERO SECTION ---------------- */
#hero {
    height: 100vh;
    background: url( "../img/image0 V2.png") center/cover no-repeat;
    position: relative;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* oscurecer imagen */
}

#hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 650px;
    margin: auto;
}


/* ---------------- ABOUT SECTION ---------------- */

/* Fondo con degradado elegante industrial */
.about-section {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(
        to bottom right,
        #3f3f3f 0%,
        #282828 40%,
        #1f1f1f 100%
    );
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Glow ambiental detrás del contenido */
.about-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(255,255,255,0.12), rgba(0,0,0,0));
    filter: blur(50px);
    opacity: 0.35;
    pointer-events: none;
}

/* TITULO */
.about-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;

    /* Glow sutil para resaltar */
    text-shadow: 0px 0px 12px rgba(0,0,0,0.55);
}

/* TEXTO */
.about-text {
    font-size: 22px;
    line-height: 1.55;
    opacity: 0.90;
    max-width: 650px;

    /* mejor lectura */
    text-shadow: 0px 1px 5px rgba(0,0,0,0.25);
}

/* Contenedor general responsivo */
.about-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* CUADRO DETRÁS DE LA IMAGEN */
.about-image-wrapper {
    background: linear-gradient(
        145deg,
        #353535,
        #2a2a2a
    );
    padding: 26px;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;

    /* borde metálico */
    border: 1px solid rgba(255,255,255,0.15);

    /* sombra elegante */
    box-shadow:
        0 0 25px rgba(0,0,0,0.4),
        0 0 10px rgba(255,255,255,0.05) inset;

    /* ANIMACIÓN */
    opacity: 0;
    transform: translateX(120px);
    transition: all 0.9s ease;
}

/* IMAGEN */
.about-image {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
}

/* VISIBILIDAD AL LLEGAR A LA SECCIÓN */
.about-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ANIMACIÓN DEL TEXTO AL ENTRAR */
.about-text-block {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.about-text-block.visible {
    opacity: 1;
    transform: translateY(0);	
}

/* ================== BOTÓN ABOUT US ================== */
.about-button {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 34px;

    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #ffffff;

    text-decoration: none;
    border-radius: 10px;

    /* fondo industrial */
    background: linear-gradient(145deg, #2e2e2e, #1a1a1a);

    /* borde metálico */
    border: 1px solid rgba(255,255,255,0.18);

    /* sombras */
    box-shadow:
        0 0 18px rgba(0,0,0,0.45),
        inset 0 0 10px rgba(255,255,255,0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

/* HOVER dinámico */
.about-button:hover {
    background: linear-gradient(145deg, #3b3b3b, #262626);
    box-shadow:
        0 0 22px rgba(255,255,255,0.18),
        0 0 40px rgba(0,0,0,0.55);
    transform: translateY(-3px);
}

/* ANIMACIÓN AL ENTRAR */
.about-text-block.visible .about-button {
    animation: fadeUpButton 0.9s ease forwards;
    opacity: 0;
}

@keyframes fadeUpButton {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SECCIÓN SERVICES */
.services-section {
    position: relative;
    width: 100%;
   min-height: 980px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

/* GRID 2×2 */
.services-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px; /* separación estética */
    padding: 20px; /* margen fino alrededor */
    filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.45));
}

/* RANURA */
.slot {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

    /* estética */
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* CAPA OSCURA */
.slot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 3;
    border-radius: 10px;
}

/* IMÁGENES */
.slot img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
}

/* Estado inicial: la primera imagen siempre visible al cargar */
.slot .imgA {
    opacity: 1;
}

/* ANIMACIONES */
.slot .imgA {
    animation: fadeA 20s ease-in-out infinite;
    animation-fill-mode: forwards;
}

.slot .imgB {
    animation: fadeB 20s ease-in-out infinite;
    animation-fill-mode: forwards;
}

/* KEYFRAMES SUAVES */
@keyframes fadeA {
    0%   { opacity: 1; }
    40%  { opacity: 1; }
    50%  { opacity: 0; }
    90%  { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeB {
    0%   { opacity: 0; }
    40%  { opacity: 0; }
    50%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { opacity: 0; }
}

/* DELAYS PARA QUE NO CAMBIEN TODAS IGUAL */
.slot:nth-child(1) .imgA,
.slot:nth-child(1) .imgB { animation-delay: 0s; }

.slot:nth-child(2) .imgA,
.slot:nth-child(2) .imgB { animation-delay: 3s; }

.slot:nth-child(3) .imgA,
.slot:nth-child(3) .imgB { animation-delay: 6s; }

.slot:nth-child(4) .imgA,
.slot:nth-child(4) .imgB { animation-delay: 9s; }

/* BOTÓN */
.services-btn {
    position: relative;
    z-index: 10;

    /* Quitar subrayado EN EL LINK */
    text-decoration: none;
    display: inline-block;

    /* TAMAÑO MÁS GRANDE */
    padding: 24px 48px;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;

    /* FONDO MÁS OPACO */
    background: rgba(0, 0, 0, 0.95);

    /* BORDES Y RADIO */
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;

    /* COLOR DEL TEXTO */
    color: white;

    /* SOMBRA ELEGANTE PARA RESALTAR */
    box-shadow: 
        0 0 25px rgba(0, 0, 0, 0.6),
        0 0 12px rgba(255, 255, 255, 0.15);
	
    /* TRANSICIONES */
    transition: 
        transform 0.30s ease,
        box-shadow 0.35s ease,
        background 0.30s ease,
        border-color 0.30s ease;

    cursor: pointer;
}

/* EFECTO HOVER ELEGANTE */
.services-btn:hover {
    transform: scale(1.10);

    background: rgba(0, 0, 0, 0.92);

    border-color: white;

    text-shadow: 0 0 14px rgba(255, 255, 255, 0.9);

    box-shadow:
        0 0 35px rgba(0, 0, 0, 0.8),
        0 0 22px rgba(255, 255, 255, 0.55);
}

/* ESTADO INVISIBLE DEL BOTÓN */
.services-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ESTADO VISIBLE DEL BOTÓN */
.services-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ==========================
   SERVICES PAGE (PAGE 2)
   ========================== */


.servicesPage-section {
    background: #0f0f0f;          /* Fondo industrial oscuro */
    padding-top: 200px;           /* Para que el navbar NO tape nada */
    padding-bottom: 120px;
    min-height: 100vh;
}

/* TÍTULO */
.servicesPage-title {
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 70px;
    color: #ffffff;               /* Ahora blanco */
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(255,255,255,0.25);
}

/* CONTENEDOR DE DOS FILAS */
.servicesPage-rows {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* FONDO OSCURO DETRÁS DE CADA FILA */
.servicesPage-row-bg {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 18px;

    /* Estética industrial */
    box-shadow: 
        0 0 25px rgba(0,0,0,0.6),
        inset 0 0 18px rgba(255,255,255,0.05);
}

/* GRID DE CADA FILA (3 items) */
.servicesPage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ITEM */
.servicesPage-item {
    text-align: center;
}

/* WRAPPER DE IMAGEN */
.servicesPage-image-wrapper {
    position: relative;
    width: 100%;
    height: 290px;

    overflow: hidden;
    border-radius: 14px;

    /* estilo industrial metalizado */
    background: linear-gradient(135deg, #b8b8b8 50%, #9b9b9b 100%);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    box-shadow: 0 0 16px rgba(0,0,0,0.45);
}

.servicesPage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.servicesPage-image-wrapper:hover .servicesPage-image {
    transform: scale(1.06);
}

/* OVERLAY */
.servicesPage-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    color: white;
    font-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicesPage-image-wrapper:hover .servicesPage-hover-overlay {
    opacity: 1;
}

/* NOMBRE DEL SERVICIO */
.servicesPage-name {
    margin-top: 14px;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;  /* Blanco */
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* CONTACT PAGE */
.contact-section {
  padding-top: 200px; /* el script JS ajusta paddingTop adicional según navbar */
  padding-bottom: 100px;
  background: linear-gradient(135deg, #333 0%, #222 100%); /* tono industrial oscuro */
  color: #fff;
  min-height: 100vh;
}

/* Contenedor */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Título */
.contact-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 46px;
  letter-spacing: 0.8px;
  color: #fff;
}

/* Labels */
.contact-label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
  color: #e6e6e6;
}

/* Inputs y textarea */
.contact-input,
.contact-textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  outline: none;
}

/* Button */
.contact-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(180deg, #e6e6e6, #d3d3d3);
  color: #111;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

/* Responsivo: menos padding en móvil */
@media (max-width: 768px) {
  .contact-section { padding-top: 100px; padding-bottom: 60px; }
  .contact-title { font-size: 32px; }
}


/* ==== MAP SECTION ==== */

.map-wrapper {
    display: flex;
    justify-content: center;
	    background: linear-gradient(
        to top right,
        #3f3f3f 0%,
        #282828 40%,
        #1f1f1f 100%
    );
	 padding: 120px 0; /* Ajusta 80px al gusto */
}

/* RECTÁNGULO DE FONDO */
.map-background {
    background: rgba(255, 255, 255, 0.07); /* trazo suave */
    padding: 18px;
    border-radius: 14px;
    width: 90%;
    max-width: 900px;
    box-shadow:
        0 0 25px rgba(0, 0, 0, 0.35),
        inset 0 0 10px rgba(255, 255, 255, 0.08);
}

/* CONTENEDOR DEL MAPA */
.map-container {
    background: #000;
    padding: 6px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.map-container iframe {
    border-radius: 10px;
    display: block;
}


/* ===== IMAGE SEQUENCE GALLERY ===== */


.sequence-section  {
    background: #121212;
    color: white !important;
}
.sequence-section h2,
.sequence-wrapper h2 {
    color: white !important;
}

/* Fondo de la página del proceso */
.sequence-section {
    padding-top: 120px; /* ← la solución real */
    padding-bottom: 80px;
}

/* Título*/
.sequence-title {
    color: white !important;
  
}

/* Contenedor principal del carrusel */
.sequence-carousel {
    margin: 60px auto;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

/* Marcos laterales */
.side-frame {
    width: 26%;
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(3px);
}

/* Imagen lateral difuminada */
.side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.7);
    opacity: 0.85;
}

/* Marco central */
.center-frame {
    width: 48%;
    height: 340px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(10,10,10,0.9);
    position: relative;
}

/* Imagen central con animación suave */
.center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 
        opacity 0.6s ease,
        filter 0.6s ease,
        transform 0.7s ease;
}

/* Estado durante el cambio */
.center-img.fade-out {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(-12px);
}

/* ==================== DESCRIPCIÓN ==================== */

.desc-section {
    background: #121212;
    padding: 60px 0;
	  text-align: center !important;
}

.description-box {
    max-width: 900px;
    margin: 80px auto 120px auto;

    /* Fondo oscuro igual que los contenedores */
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);

    padding: 50px 55px;
    border-radius: 18px;

    /* Tipografía mejorada */
    color: #fff;
    font-size: 24px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.7px;

    backdrop-filter: blur(4px);
    box-shadow:
        0 0 25px rgba(0, 0, 0, 0.55),
        inset 0 0 25px rgba(255, 255, 255, 0.03);

    overflow: hidden; /* previene cualquier desborde */
}

/* ---------------- FOOTER ---------------- */

.anbos-footer {
    width: 100%;
    padding: 80px 0 20px 0;

    background: linear-gradient(
        to bottom,
        #1a1a1a 0%,
        #0f0f0f 60%,
        #050505 100%
    );

    color: #e6e6e6;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* CONTENEDOR */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 50px;
}

/* LOGO */
.footer-logo img {
    width: 165px;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.35));
}

/* TITULOS */
.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

/* CONTACTO */
.footer-contact p {
    margin: 4px 0;
    font-size: 17px;
    opacity: 0.85;
}
/* CONTENEDOR: ALINEA TÍTULO + ÍCONO EN UNA FILA */
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 18px; /* espacio entre título e icono */
}


/* --- FOLLOW US TITLE MÁS PEQUEÑO --- */
.footer-social .footer-title {
    font-size: 18px;
    margin: 0;         /* eliminamos margen para evitar saltos */
    opacity: 0.9;
    color: white;
}


/* --- ÍCONO DE INSTAGRAM --- */
.footer-social .social-icon {
    font-size: 45px;
    position: relative;
    color: rgba(255,255,255,0.75);
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- TEXTO OCULTO QUE APARECE EN HOVER --- */
.insta-text {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    opacity: 0;
    color: white;
    white-space: nowrap;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}


/* --- EFECTO HOVER COMPLETO --- */
.instagram-hover:hover .insta-text {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

.instagram-hover:hover {
    color: white;
    transform: scale(1.25);
    text-shadow: 0 0 15px rgba(255,255,255,0.7);
}

/* COPYRIGHT */
.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    font-size: 15px;
    opacity: 0.55;
    border-top: 1px solid rgba(255,255,255,0.10);
}



