@charset "UTF-8";
/* ======================
   HEADER 
====================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.header {
  width: 100%;
  height: 100vh;
  background-image: url("../img/header/donut.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (min-width: 992px) {
  .header {
    background-size: contain;
  }
}

/* ======================
   HERO + GLASS PANEL 
====================== */
.hero-glass {
  position: absolute;
  left: 0;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100vh;
  padding: 120px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  color: #FAEFEF;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 4px 4px;
}
.hero-glass .hero-kicker {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 500;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-glass .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 10vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  overflow-wrap: break-word;
  hyphens: manual;
}
.hero-glass .hero-title .accent {
  color: #F85E04;
  display: inline-block;
}
.hero-glass {
  /* ESCRITORIO */
}
@media (min-width: 992px) {
  .hero-glass {
    width: 50vw;
    padding: 0 0 0 3rem;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  }
  .hero-glass .hero-kicker {
    font-size: 36px;
  }
  .hero-glass .hero-title {
    font-size: 50px;
    line-height: 1.05;
  }
}
@media (min-width: 1400px) {
  .hero-glass {
    padding-left: 3rem;
  }
}
@media (min-width: 1600px) {
  .hero-glass {
    padding-left: 50px;
  }
  .hero-glass .hero-kicker {
    font-size: 40px;
  }
  .hero-glass .hero-title {
    font-size: 65px;
  }
}

/* ======================
   BOTONES REDES HEADER
====================== */
.hero-socials {
  position: absolute;
  z-index: 100;
  display: flex;
  gap: 20px;
  flex-direction: row;
  /* MOBILE: Centrados abajo */
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .hero-socials {
    /* DESKTOP: Centrados verticalmente a la derecha */
    left: auto;
    right: 50px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    margin-right: 110px;
  }
}

.social-btn {
  width: 55px;
  height: 55px;
  background: rgba(246, 244, 244, 0.155);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}
@media (min-width: 992px) {
  .social-btn {
    width: 70px;
    height: 70px;
  }
}
.social-btn img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .social-btn img {
    width: 30px;
    height: 30px;
  }
}
.social-btn:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.social-btn:hover img {
  transform: scale(1.1);
}

[data-animation=parallax] .cd-section > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

[data-animation=parallax] .cd-section:first-of-type > div {
  background-image: url("../img/img-1.jpg");
}

[data-animation=parallax] .cd-section:nth-of-type(2) > div {
  background-image: url("../img/img-2.jpg");
}

[data-animation=parallax] .cd-section:nth-of-type(3) > div {
  background-image: url("../img/img-3.jpg");
}

[data-animation=parallax] .cd-section:nth-of-type(4) > div {
  background-image: url("../img/img-4.jpg");
}

[data-animation=parallax] .cd-section:nth-of-type(5) > div {
  background-image: url("../img/img-5.jpg");
}

/* === EFECTO TEXTO MASK === */
.texto-mask-line {
  overflow: hidden !important;
  display: block;
  margin: 0;
}

.texto-mask-inner {
  display: block;
  will-change: transform;
}

nav {
  background-color: transparent;
  min-height: 100px;
  transition: all 0.3s ease;
}

.menu {
  position: relative;
  /* Z-index 100 para asegurar que flote sobre el vidrio */
  z-index: 100;
}
.menu img {
  width: 120px;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .menu img {
    width: 145px;
    padding-left: 20px;
    margin-right: 30px;
  }
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FAEFEF;
  position: relative;
  text-decoration: none;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .nav-link {
    margin-bottom: 0;
  }
}
.nav-link {
  /* CORRECCIÓN: Mantiene el blanco al hacer click, foco o hover */
}
.nav-link:hover, .nav-link:focus, .nav-link:active {
  color: #FAEFEF !important; /* Forzamos el blanco */
  background-color: transparent;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #e7704a;
  transition: all 0.3s ease-in-out;
}
.nav-link:hover::after {
  visibility: visible;
  width: 100%;
}

@media (min-width: 992px) {
  .nav-item a {
    margin-right: 20px;
  }
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler img {
  width: 50px !important;
  height: auto;
  filter: brightness(0) invert(1);
}
.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #0A0A09;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    z-index: 101;
    text-align: center;
    width: 100%;
  }
}

/* =========================================
   1. ESTRUCTURA GENERAL (BASE DESKTOP)
========================================= */
.proyectos-section {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}

.proyectos-bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/proyectos/fondo-naranja-2.jpg);
  background-size: cover;
  position: fixed;
  z-index: 0;
}

.proyectos-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

/* =========================================
   2. ELEMENTOS INTERNOS
========================================= */
.carrousel-title {
  width: 100%;
  padding-left: 80px;
  display: flex;
  gap: 1rem;
}
.carrousel-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 700;
  padding-left: 200px;
  color: white;
  margin: 0;
}

.carrousel.wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
}

/* --- TARJETA BASE (DESKTOP) --- */
.item.box {
  flex: 0 0 450px;
  height: 450px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 50px 2rem 2rem 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  color: #FAEFEF;
}
.item.box figcaption {
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
}
.item.box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 250px;
  margin-top: 0;
}
.item.box img.img-gestor {
  width: auto;
  height: 220px;
  object-fit: contain;
  margin-top: 10px;
  margin-bottom: 0;
}
.item.box img.img-mobile {
  width: auto;
  height: 320px;
  margin-top: 15px;
}
.item.box .img-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-top: 0;
}
.item.box .img-row .img-mobile {
  width: auto;
  height: 280px;
  max-width: 45%;
  margin-top: 0 !important;
}

.item.box.active {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.carrousel-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
  width: 100%;
  z-index: 10;
  padding-left: 0;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.carousel-btn svg {
  width: 24px;
  height: 24px;
}
.carousel-btn:hover {
  background: white;
  color: #0a0a0a;
  transform: scale(1.1);
}

/* =========================================
   3. MODAL
========================================= */
.glass-modal {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  color: white;
  /* NUEVO: Espacio superior para que la "X" no pise el contenido */
}
.glass-modal .modal-body {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.glass-modal .modal-header-custom h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  letter-spacing: -1px;
}
.glass-modal .modal-header-custom h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
}
.glass-modal .project-description-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-height: 300px;
  overflow-y: auto;
  padding: 24px;
  padding-right: 12px;
}
.glass-modal .project-description-box p {
  text-wrap: pretty;
  margin-bottom: 1rem;
}
.glass-modal .project-description-box p:last-child {
  margin-bottom: 0;
}
.glass-modal .project-description-box::-webkit-scrollbar {
  width: 12px;
}
.glass-modal .project-description-box::-webkit-scrollbar-track {
  background: transparent;
  margin: 15px 0;
}
.glass-modal .project-description-box::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  border: 4px solid transparent;
  background-clip: padding-box;
}
.glass-modal .project-description-box::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.glass-modal .project-tags span {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 106, 48, 0.202);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}
.glass-modal {
  /* Contenedor de flechas de navegación de la galería */
}
.glass-modal .d-flex.justify-content-center.gap-3 {
  margin-top: 10px !important;
  margin-bottom: 3rem !important;
}
.glass-modal .project-gallery {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  scroll-behavior: smooth;
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
  /* EFECTO IMÁN */
  scroll-snap-type: x mandatory;
  /* OCULTAR BARRA DE SCROLL */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.glass-modal .project-gallery::-webkit-scrollbar {
  display: none;
}
.glass-modal .project-gallery {
  /* Altura uniforme */
  height: 350px !important;
}
.glass-modal .project-gallery img {
  height: 100% !important;
  width: auto !important;
  object-fit: contain !important;
  border-radius: 8px;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.glass-modal .project-gallery .modal-img-desktop {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}
.glass-modal .project-gallery .modal-img-mobile {
  flex: 0 0 auto !important;
}
.glass-modal .action-btn {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.glass-modal .action-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}
.glass-modal .action-btn img, .glass-modal .action-btn svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 992px) {
  .glass-modal .border-lg-start {
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

.modal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(210, 165, 252, 0.3) 0%, rgba(210, 165, 252, 0) 70%);
  filter: blur(40px);
  z-index: 1;
}

/* =========================================
   3. MODAL - AJUSTE DE GAP VERTICAL
========================================= */
#proyectoModal {
  /* 1. Ajustamos la columna izquierda para que use el gap */
}
#proyectoModal .col-lg-5 {
  /* Bootstrap ya pone d-flex y flex-column en el HTML, 
     aquí solo definimos la distancia entre los elementos */
  gap: 35px !important;
  /* Opcional: un poco de padding a la derecha para que no 
     toque la línea divisoria si la tienes */
  padding-right: 30px !important;
}
#proyectoModal {
  /* 2. Ajustamos los elementos internos para que no tengan márgenes que molesten */
}
#proyectoModal .modal-header-custom {
  margin-bottom: 0 !important;
}
#proyectoModal .project-description-box {
  margin-bottom: 0 !important;
  border-radius: 12px;
  flex-grow: 0;
}
#proyectoModal .project-tags {
  margin-top: 0 !important;
}

/* =========================================
   3. LAPTOP 
========================================= */
@media (max-width: 1440px) and (min-width: 992px) {
  .carrousel-title {
    padding-left: 40px;
  }
  .carrousel-title h2 {
    font-size: 48px;
    padding-left: 50px;
  }
  .item.box {
    flex: 0 0 450px;
    height: 400px;
    padding: 40px 1rem;
  }
  .item.box img {
    max-height: 250px;
  }
  .item.box img.img-gestor {
    height: 250px;
  }
  .item.box img.img-mobile {
    height: 260px;
  }
  .item.box .img-row .img-mobile {
    height: 240px;
  }
}
/* =========================================
   4. RESPONSIVE MÓVIL 
========================================= */
@media (max-width: 991px) {
  .proyectos-section {
    height: auto !important;
    min-height: 100vh;
    padding: 8rem 1.5rem 6rem 1.5rem;
    align-items: flex-start;
    overflow: visible !important;
    background-color: #0a0a0a;
    z-index: 10;
  }
  .proyectos-bg {
    position: absolute !important;
    height: 100% !important;
  }
  .proyectos-inner {
    align-items: center;
    height: auto;
    gap: 2rem;
  }
  .carrousel-title {
    padding-left: 0;
    justify-content: center;
  }
  .carrousel-title h2 {
    padding-left: 0;
    font-size: 42px;
    text-align: center;
  }
  .item.box {
    flex: 0 0 85vw !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 30px 1.5rem 30px 1.5rem !important;
  }
  .item.box img {
    width: 100% !important;
    height: auto !important;
    max-height: 250px !important;
    margin-bottom: 0 !important;
  }
  .item.box img.img-gestor {
    width: 100% !important;
    height: auto !important;
  }
  .item.box img.img-mobile {
    height: 240px !important;
    width: auto !important;
  }
  .item.box .img-row {
    gap: 10px;
  }
  .item.box .img-row .img-mobile {
    height: 180px !important;
  }
  .item.box figcaption {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .carrousel-actions {
    margin-bottom: 0;
  }
}
/* --- Customizar el fondo oscuro de Bootstrap --- */
.modal-backdrop.show {
  opacity: 0.85 !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-especial-grafico .col-lg-7 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 500px;
}
.modal-especial-grafico .project-gallery {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: center !important;
  overflow-x: auto !important;
  width: 100% !important;
  height: 350px !important;
  gap: 20px !important;
  /* Asegura que el scroll sea visible si es necesario o fluido */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.modal-especial-grafico .project-gallery img {
  flex: 0 0 auto !important;
  height: 100% !important;
  width: auto !important;
  scroll-snap-align: center;
}

.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.video-container video {
  max-height: 100%;
  width: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* =========================================
   1. ESTILOS GENERALES (Desktop)
========================================= */
.servicios-section {
  position: relative;
  width: 100%;
  background: #0a0a0a;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}

.servicios-bg {
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/servicios/fondo-violeta-2.jpeg);
  background-size: cover;
  opacity: 0.5;
  position: fixed;
  z-index: 0;
}

.servicios-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.block-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.servicios-inner .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: 1px;
  padding-left: 5px;
  text-align: left;
}

.glass-box {
  width: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(50px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.servicios-box {
  height: 280px;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  justify-items: center;
  gap: 2rem;
  position: relative;
}
.servicios-box::before, .servicios-box::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  display: block;
}
.servicios-box::before {
  left: 33.333%;
}
.servicios-box::after {
  left: 66.666%;
}

.servicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.servicio .servicio-icon img {
  width: 40px;
  margin-bottom: 10px;
}
.servicio .servicio-heading {
  color: rgb(210, 165, 252);
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
}
.servicio .servicio-text {
  font-family: "Poppins", sans-serif;
  color: #ccc;
  font-size: 16px;
  line-height: 1.3;
  max-width: 250px;
  margin: 0 auto;
}

.separator {
  display: none;
}

.skills-box {
  height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.skills-track {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-left: 20px;
  height: 100%;
  width: max-content;
}

.skill-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.skill-item img {
  height: 50px;
  width: auto;
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease;
}
.skill-item:hover img {
  transform: scale(1.1);
}

.servicio-icon img, .servicio-icon svg {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
  display: block;
  stroke: white;
  fill: none;
  filter: brightness(0) invert(1);
}

/* =========================================
   2. RESPONSIVE (SOLO MÓVIL)
========================================= */
@media (max-width: 991px) {
  .cd-section,
  .cd-section.visible,
  .cd-section > div {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
  }
  .servicios-section {
    height: auto !important;
    min-height: 100vh;
    padding: 8rem 1.5rem 15rem 1.5rem;
    align-items: flex-start;
    overflow: visible !important;
    background-color: #0a0a0a;
    z-index: 10;
  }
  .servicios-bg {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
  }
  .servicios-inner {
    height: auto;
    justify-content: flex-start;
    gap: 6rem;
  }
  .servicios-inner .section-title {
    text-align: center;
    padding-left: 0;
    font-size: 42px;
    margin-bottom: 2rem;
  }
  .servicios-box {
    display: flex !important;
    flex-direction: column;
    height: auto !important;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  .servicios-box::before,
  .servicios-box::after {
    display: none !important;
  }
  .separator {
    display: block !important;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
  }
  .servicio-text {
    max-width: 100%;
    font-size: 16px;
  }
  .skills-box {
    height: 100px;
  }
  .skills-track {
    gap: 40px;
  }
  .skill-item img {
    height: 40px;
  }
}
/* =========================================
   1. ESTILOS BASE (DESKTOP GRANDE )
========================================= */
.sobre-mi-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-image: url(../img/servicios/fondo-violeta-2.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  overflow: hidden;
}

.sobre-mi-container {
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.sobre-mi-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 800 !important;
  color: white;
  margin: 0;
  padding-left: 10px;
  text-align: left;
}

.glass-box-sobre-mi {
  background: linear-gradient(145deg, rgba(13, 12, 12, 0.303), rgba(13, 12, 12, 0.669));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre-mi-card {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3rem;
  width: 100%;
}

.inner-text {
  flex: 1;
}
.inner-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #e0e0e0;
}
.inner-text p:last-child {
  margin-bottom: 0;
}
.inner-text p .accent {
  color: #eab1ff;
  font-weight: 700;
}
.inner-text p b {
  color: white;
  font-weight: 700;
}

.sobre-mi-image {
  flex: 0 0 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sobre-mi-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, rgba(210, 165, 252, 0.6), rgba(231, 112, 74, 0.4));
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
}
.sobre-mi-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sobre-mi-image:hover img {
  transform: scale(1.02);
}

/* ============================================================
   2. MEDIDA INTERMEDIA 
============================================================ */
@media (max-width: 1440px) {
  .sobre-mi-container {
    max-width: 1100px;
  }
  .sobre-mi-section {
    padding: 0 2rem;
  }
  .section-title {
    font-size: 48px;
  }
  .sobre-mi-card {
    padding: 2.5rem;
    gap: 2.5rem;
  }
  .sobre-mi-image {
    flex: 0 0 350px;
  }
  .inner-text p {
    font-size: 15px;
    line-height: 1.5;
  }
}
/* ============================================================
   3. MÓVIL / TABLET 
============================================================ */
@media (max-width: 991px) {
  .sobre-mi-section {
    height: auto;
    min-height: 100vh;
    padding: 8rem 1.5rem 4rem 1.5rem;
    align-items: flex-start;
    overflow-y: visible;
  }
  .section-title {
    text-align: center;
    padding-left: 0;
    font-size: 42px;
  }
  .sobre-mi-card {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 2rem;
  }
  .sobre-mi-image {
    flex: auto;
    width: 100%;
    max-width: 300px;
  }
  .sobre-mi-image::before {
    filter: blur(40px);
    opacity: 0.7;
  }
  .inner-text p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 1rem;
  }
}
.contacto-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-image: url(../img/proyectos/fondo-naranja-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  overflow: hidden;
}

.contacto-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.contacto-content {
  width: 100%;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: white;
  margin: 0;
  padding-left: 10px;
  text-align: left;
}

.contacto-flex-container {
  display: flex;
  width: 100%;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}

.col-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-left: 20px;
}
.col-info .info-header {
  margin-bottom: 3rem;
}
.col-info .info-title {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: rgb(253, 241, 221);
  line-height: 1.1;
  width: 500px;
}
.col-info .info-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: #ffffff;
  margin: 0;
  width: 300px;
}
.col-info .info-list {
  width: fit-content;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: auto 0;
  display: flex;
  justify-content: center;
}
.col-info .info-list .info-item {
  width: 100%;
}
.col-info .info-list .info-item .contact-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e0e0e0;
  transition: transform 0.2s ease;
}
.col-info .info-list .info-item .contact-link:hover {
  transform: translatey(-10px);
  color: white;
}
.col-info .info-list .info-item .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.col-info .info-list .info-item .icon-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.col-info .info-list .info-item span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.col-form.contacto-glass-form {
  flex: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.col-form.contacto-glass-form .form-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.contacto-form .form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contacto-form .input-group {
  position: relative;
  width: 100%;
}
.contacto-form .input-group input, .contacto-form .input-group textarea, .contacto-form .input-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(247, 241, 241, 0.3);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: white;
  outline: none;
  transition: all 0.3s ease;
}
.contacto-form .input-group input::placeholder, .contacto-form .input-group textarea::placeholder, .contacto-form .input-group select::placeholder {
  color: transparent;
}
.contacto-form .input-group input:focus, .contacto-form .input-group textarea:focus, .contacto-form .input-group select:focus {
  border-color: #e78624;
  background: rgba(255, 255, 255, 0.05);
}
.contacto-form .input-group textarea {
  height: 120px;
  resize: none;
  border-radius: 20px;
}
.contacto-form .input-group select {
  appearance: none;
  cursor: pointer;
  color-scheme: dark;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22white%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}
.contacto-form .input-group select option {
  background: #1a1a1a;
  color: white;
}
.contacto-form .input-group select:invalid {
  color: transparent;
}
.contacto-form .input-group label {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #efeaea;
  pointer-events: none;
  transition: all 0.3s ease;
}
.contacto-form .input-group input:focus ~ label,
.contacto-form .input-group input:not(:placeholder-shown) ~ label,
.contacto-form .input-group textarea:focus ~ label,
.contacto-form .input-group textarea:not(:placeholder-shown) ~ label,
.contacto-form .input-group select:focus ~ label,
.contacto-form .input-group select:valid ~ label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #da7e15;
  font-weight: 700;
  background: #2e1d10;
  padding: 0 5px;
  border-radius: 4px;
}
.contacto-form .btn-enviar {
  margin-top: 1rem;
  padding: 15px;
  background: #f5dfcf;
  color: #cf5001;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
  width: 100%;
}
.contacto-form .btn-enviar:hover {
  background: white;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE (Móvil)
========================================================================== */
@media (max-width: 991px) {
  .contacto-section {
    height: auto !important;
    min-height: 100vh;
    padding: 8rem 1.5rem 4rem 1.5rem;
    align-items: flex-start;
    overflow-y: visible;
  }
  .section-title {
    text-align: center;
    font-size: 42px;
    padding-left: 0;
    align-self: center;
  }
  .contacto-flex-container {
    flex-direction: column;
    gap: 3rem;
  }
  .col-info {
    text-align: center;
    align-items: center;
    padding-left: 0;
  }
  .col-info .info-title {
    font-size: 32px;
    width: 100%;
  }
  .col-info .info-subtitle {
    width: 100%;
  }
  .col-info .info-list {
    gap: 1.5rem;
  }
  .col-info .info-list .info-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .col-form.contacto-glass-form {
    padding: 1.5rem;
    width: 100%;
  }
  .col-form.contacto-glass-form .form-title {
    font-size: 24px;
  }
  .input-group input, .input-group textarea, .input-group select, .input-group label {
    font-size: 14px !important;
  }
  .input-group input:focus ~ label,
  .input-group input:not(:placeholder-shown) ~ label,
  .input-group textarea:focus ~ label,
  .input-group textarea:not(:placeholder-shown) ~ label,
  .input-group select:focus ~ label,
  .input-group select:valid ~ label {
    font-size: 11px;
  }
  .input-group input:focus ~ label,
  .input-group input:not(:placeholder-shown) ~ label,
  .input-group textarea:focus ~ label,
  .input-group textarea:not(:placeholder-shown) ~ label,
  .input-group select:focus ~ label,
  .input-group select:valid ~ label {
    background: #111;
  }
}

/*# sourceMappingURL=main.css.map */
