/*
Theme Name: WORQ Static Theme
Theme URI: https://tusitio.com
Author: WorQ
Author URI: https://tusitio.com
Description: Tema estático convertido desde HTML
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: worq-static-theme
*/



html{
  overflow-x: hidden;
}

body{
  width: 100%;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: #111;
  background: #fff;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HERO */

.test-hero{
  position: relative;
  width: 100%;     /* 🔴 CAMBIO IMPORTANTE */
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */

.hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}


  .back-btn {
    left: 20px;
  }
  section{
  position: relative;
  z-index: 2;
}
/* HAMBURGER BUTTON */
.menu-btn {
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 20;
}

.menu-btn span {
  height: 2px;
  width: 100%;
  background: white;
  display: block;
  transition: all 0.3s ease;
}

/* OVERLAY BASE (OCULTO POR DEFECTO) */
.menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 20;
}

/* CUANDO ESTÁ ACTIVO */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* FONDO IZQUIERDO */
.menu-backdrop {
  flex: 1;
  background: transparent;
  
}


/* panel derecho */
.menu-panel {
  height: 100%;
  max-height: 100vh;

  overflow-y: auto;
  overflow-x: hidden;

  overscroll-behavior: contain;

  width: 50vw;
  max-width: 720px;
  background: #0e0e0e;

  padding: 140px 80px 80px;

  display: flex;
  flex-direction: column;
  gap: 34px;

  transform: translateX(100%);
  transition: transform 0.5s ease;
}


.menu-panel a:hover {
  opacity: 0.6;
  transform: translateX(6px);
}

/* mostrar menú */
.menu-overlay.active {
  pointer-events: all;
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}
.menu-panel::before,
.menu-panel::after {
  content: '';
  position: sticky;
  left: 0;
  right: 0;
  height: 40px;
  pointer-events: none;
  z-index: 2;
}

.menu-panel::before {
  top: 0;
  background: linear-gradient(to bottom, #0e0e0e, transparent);
}

.menu-panel::after {
  bottom: 0;
  background: linear-gradient(to top, #0e0e0e, transparent);
}

/* links */
.menu-panel a {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;        /* antes 32px */
  font-weight: 300;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


/* plus icon */
.plus {
  color: #ff7a00;
  font-size: 28px;
}

/* close button */
.menu-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 28px;
  background: none;
  border: none;
  color: #ff7a00;
  cursor: pointer;
}
/* SUBMENU SERVICES */
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.submenu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* contenedor oculto */
.submenu {
  display: none;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 16px 40px;
  padding-left: 10px;
}

/* activo */
.menu-item.open .submenu {
  display: grid;
}

/* links */
.submenu a {
  font-size: 18px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.submenu a:hover {
  color: #ff7a00;
}

/* mobile */
@media (max-width: 768px) {
  .submenu {
    grid-template-columns: 1fr;
  }
}

/* client login */
.client-btn {
  margin-top: 48px;
  padding: 14px 28px;
  border: 1px solid #ff7a00;
  color: #ff7a00;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-decoration: none;
  width: fit-content;
  transition: all 0.35s ease;
}
.client-btn:hover {
  background: #ff7a00;
  color: #111;
}
@media (max-width: 1024px) {
  .client-btn {
    font-size: 13px;
    padding: 13px 24px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 768px) {
  .client-btn {
    width: 100%;
    margin-top: 32px;
    padding: 16px;
    text-align: center;
    font-size: 13px;
  }
}

/* mobile */
@media (max-width: 900px) {
  .menu-panel {
    width: 100vw;
  }
}
.services-sticky {
  position: sticky;
  top: 120px;
  height: fit-content;
  align-self: flex-start;
}

/* QUITA sticky de aquí */
.services-text {
  position: relative;
}

.services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 8%;
  background: #ffffff;
  color: #000000;
}

/* TEXTO IZQUIERDO */
.services-text {
  position: sticky;
  top: 120px; /* 👈 debajo del header */
  align-self: start;
}

.services-text h2 {
 font-size:50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.services-text p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.services-cta {
  display: inline-block;
  margin-top: 2rem;
  color: #ff7a00;
  text-decoration: none;
  border-bottom: 1px solid #ff7a00;
}
@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
  }

  .services-text {
    position: relative;
    top: auto;
    margin-bottom: 3rem;
  }
}




.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}






/* =========================
   INTRO SECTION
========================= */

.intro-section {
  padding: 80px 8%;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* TITLE */
.intro-grid h1 {
 font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* TEXT */
.intro-text p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTONS */
.button-group {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  align-items: center;
}

.btn-grey {
  color: #ff7a00;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
  transition: transform 0.3s ease;
}

.btn-grey::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #ff7a00;
  transition: width 0.3s ease;
}

.btn-grey:hover {
  transform: translateX(4px);
}

.btn-grey:hover::after {
  width: 100%;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  .intro-section {
    padding: 80px 30px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .button-group a {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }
}

/* =========================
   MOBILE SMALL
========================= */

@media (max-width: 480px) {
  .intro-section {
    padding: 64px 20px;
  }

  .intro-text p {
    font-size: 15px;
    line-height: 1.65;
  }

  .button-group a {
    font-size: 12px;
    padding: 13px 16px;
  }
}



/* QUITA sticky de aquí */
.services-text {
  position: relative;
}

.services-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 8%;
  background: #ffffff;
  color: #000000;
}

/* TEXTO IZQUIERDO */
.services-text {
  position: sticky;
  top: 120px; /* 👈 debajo del header */
  align-self: start;
}

.services-text h2 {
 font-size:50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.services-text p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.services-cta {
  display: inline-block;
  margin-top: 2rem;
  color: #ff7a00;
  text-decoration: none;
  border-bottom: 1px solid #ff7a00;
}
@media (max-width: 768px) {
  .services-section {
    grid-template-columns: 1fr;
  }

  .services-text {
    position: relative;
    top: auto;
    margin-bottom: 3rem;
  }
}


/* LISTA DERECHA */

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;

  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  color: #000;
}

/* iconos */
.service-item img {
  width: 64px;
  height: auto;
  display: block;
  opacity: 0.85;
  flex-shrink: 0;

  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* texto */
.service-item span {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

/* botón */
.service-item button {
  background: none;
  border: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7a00;
  cursor: pointer;
}
.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ff7a00;
  transition: width 0.35s ease;
}

.service-item:hover::after,
.service-item.is-active::after {
  width: 100%;
}
.service-item button {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-item:hover button,
.service-item.is-active button {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .service-item {
    grid-template-columns: 56px 1fr auto;
    gap: 24px;
  }

  .service-item img {
    width: 52px;
  }
}

@media (max-width: 768px) {
  .services-list {
    gap: 1.8rem; /* aire entre servicios */
  }

  .service-item {
    grid-template-columns: 56px 1fr auto;
    gap: 1.4rem;
    padding: 1.4rem 0;
  }

  .service-item img {
    width: 48px;
  }

  .service-item span {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
}
@media (max-width: 480px) {
  .services-list {
    gap: 2rem;
  }

  .service-item {
    grid-template-columns: 56px 1fr;
    gap: 1.4rem;
    padding: 1.6rem 0;
  }

  .service-item img {
    width: 48px;
  }

  .service-item button {
    display: none;
  }
}



/* SECTION */
/* ==============================
   GALLERY SECTION
============================== */

/* ==============================
   GALLERY SECTION
============================== */

.gallery-section {
  padding: 100px 24px;
}

/* ==============================
   TITLE
============================== */

.projects-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  margin-bottom: 64px;
}

/* ==============================
   PROJECTS SLIDER (APPLE SNAP)
============================== */

.projects-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 33vw);
  gap: 24px;

  overflow-x: auto;
  padding-bottom: 20px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}

.projects-slider::-webkit-scrollbar {
  display: none;
}

/* ==============================
   PROJECT CARD
============================== */

.project-card {
  position: relative;
  scroll-snap-align: center;
  overflow: hidden;
  text-decoration: none;
  outline: none;
}

/* ==============================
   IMAGE
============================== */

.project-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  filter: grayscale(90%);
  transform: scale(1);
  transition: 
    filter 0.4s ease,
    transform 0.4s ease;
}

/* ACTIVE IMAGE */
.project-card:hover img,
.project-card:focus img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* ==============================
   OVERLAY
============================== */

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* ACTIVE OVERLAY */
.project-card:hover::after,
.project-card:focus::after {
  opacity: 1;
}

/* ==============================
   PROJECT TITLE
============================== */

.project-title {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;

  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;

  opacity: 0;
  transform: translateY(6px);
  transition: 
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* TITLE ONLY ON ACTIVE CARD */
.project-card:hover .project-title,
.project-card:focus .project-title {
  opacity: 1;
  transform: translateY(0);
}
/* ==============================
   SERVICES LINK – MINIMAL LINE
============================== */

.services-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;

  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ff5a1f; /* tu naranja */

  width: fit-content;
}

/* línea */
.services-line {
  width: 160px;
  height: 1px;
  background-color: #ff5a1f;

  opacity: 0.6;
  transition: all 0.3s ease;
}

/* hover desktop */
@media (hover: hover) {
  .services-link:hover .services-line {
    width: 220px;
    opacity: 1;
  }
}

/* touch feedback (mobile) */
.services-link:active .services-line {
  opacity: 1;
}



/* ==============================
   TABLET
============================== */

@media (max-width: 1024px) {
  .projects-slider {
    grid-auto-columns: minmax(260px, 45vw);
    gap: 20px;
  }
}

/* ==============================
   MOBILE (TOUCH-FIRST)
============================== */

@media (max-width: 768px) {

  .gallery-section {
    padding: 80px 20px;
  }

  .projects-slider {
    grid-auto-columns: minmax(240px, 80vw);
    gap: 16px;
  }

  /* No hover clutter */
  .project-card img {
    filter: grayscale(85%);
  }

  /* Title ONLY when tapped (focus) */
  .project-title {
    font-size: 10px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  }
    .project-card::after {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.2),
      rgba(0,0,0,0)
    );
  }
}

/* ==============================
   ACCESSIBILITY
============================== */

.project-card:focus {
  outline: none;
}
/* ==============================
   SLIDER ARROWS
============================== */

.projects-wrapper {
  position: relative;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: rgba(255,255,255,0.85);

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 
    background 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.slider-arrow:hover {
  background: #000000;
  color: #fff;
}

.slider-arrow.left {
  left: -22px;
}

.slider-arrow.right {
  right: -22px;
}

@media (max-width: 480px) {

  .gallery-section {
    padding: 64px 16px;
  }

  .projects-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .projects-slider {
    grid-auto-columns: minmax(220px, 88vw);
    gap: 14px;
    padding-bottom: 16px;
    scroll-snap-type: x proximity;
  }

  .project-title {
    font-size: 9px;
    letter-spacing: 0.12em;
    left: 12px;
    bottom: 12px;
  }

  .project-card img {
    filter: grayscale(80%);
  }
}

@media (min-width: 481px) and (max-width: 768px) {

  .gallery-section {
    padding: 80px 20px;
  }

  .projects-title {
    font-size: 26px;
    margin-bottom: 48px;
  }

  .projects-slider {
    grid-auto-columns: minmax(240px, 82vw);
    gap: 16px;
  }

  .project-title {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;

    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.15);

    top: auto;
    bottom: -48px;
    transform: none;
  }

  .slider-arrow.left {
    left: 40%;
  }

  .slider-arrow.right {
    right: 40%;
  }
}

/* ===== TESTIMONIALS FULL SCREEN ===== */
/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay */
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* contenedor */
.testimonials-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 8%;
}

/* SLIDER CONTROLA EL ESPACIO */
.testimonial-slider {
  position: relative;
  max-width: 720px;   
  min-height: 180px;
}

/* testimonio */

.testimonial {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.55;
  font-weight: 300;
  color: #fff;
}

/* activo */
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

/* mobile */
@media (max-width: 768px) {
  .testimonials-inner {
    padding: 0 8%;
  }

  .testimonial-slider {
    max-width: 100%;
    min-height: 260px;
  }

  .testimonial {
    font-size: 20px;
  }
}
.testimonials-plus {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%) translateX(40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  z-index: 2;
}

.testimonials-plus span {
  font-size: 18px;
  color: #ff7a1a; /* naranja WorQ */
  font-weight: 300;
}

.testimonial.active ~ .testimonials-plus,
.testimonials-section:hover .testimonials-plus {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.testimonials-plus.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
/* ===== PARTNERS SECTION ===== */
.partners-section {
  
  padding: 60px 8% 40px;
  background: #fff;
}

.partners-content {
  max-width: 520px;
  margin-bottom: 100px;
}

.partners-content h2 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

.partners-content p {
  font-size: 32px;
  line-height: 1.6;
  color: #555;
}

/* ===== SLIDER ESTRUCTURA ===== */
.partners-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 40px; 
  width: max-content;
  /* Animación continua */
  animation: partners-scroll 30s linear infinite;
  will-change: transform;
  align-items: center;
}

@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* PETI: PAUSA AL PASAR EL MOUSE */
.partners-slider:hover .partners-track {
  animation-play-state: paused !important;
}

/* ===== LOGOS ===== */
.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 200px; 
  height: 120px;
}

.partners-track img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  display: block;
}

.partners-track img:hover {
  opacity: 1 !important;
  filter: grayscale(0%) contrast(1) !important;
  transform: scale(1.1);
  cursor: pointer;
}

/* ===== FLECHAS MINIMALISTAS (Grandes y sin línea) ===== */
.partners-arrow {
 position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: rgba(255,255,255,0.85);

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 
    background 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.partners-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.partners-arrow.left { left: -25px; }
.partners-arrow.right { right: -25px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  
  .partners-wrapper { padding-bottom: 100px; }
  .partners-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;

    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.15);

    top: auto;
    bottom: 25px;
    transform: none;
  }

  .partners-arrow.left {
    left: 40%;
  }

  .partners-arrow.right {
    right: 40%;
  }

  
}


.pre-footer-cta {
  background: #0e0e0e;
  padding: 140px 8% 100px;
  color: #fff;
  position: relative;
}

.pre-footer-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  margin-bottom: 24px;
}

.pre-footer-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
  max-width: 520px;
}

/* Línea editorial */
.cta-line {
  width: 0;
  height: 1px;
  background: #ff7a00;
  margin-bottom: 40px;
  animation: lineReveal 1.2s ease forwards;
}

/* Animación */
/* Línea editorial */
.cta-line {
  width: 0;
  height: 1px;
  background: #ff7a00;
  margin-bottom: 40px;
  animation: lineReveal 1.2s ease forwards;
}

/* Animación */
@keyframes lineReveal {
  from { width: 0; }
  to { width: 120px; }
}
.contact-form-section {
  background: #0e0e0e;
  padding: 0 8% 140px;
  color: #fff;
}



.contact-form {
  max-width: 900px;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
  margin-bottom: 60px;
}

/* FIELD */
.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full {
  max-width: 700px;
  margin-bottom: 50px;
}

.form-field label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 10px;
}

/* INPUTS */
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #666;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: #ff7a00;
}

/* CONSENT */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 50px;
  max-width: 700px;
}

.form-consent label {
  font-size: 13px;
  line-height: 1.5;
  color: #aaa;
}

/* BUTTON */
.form-submit {
  background: #ff7a00;
  color: #111;
  border: none;
  padding: 16px 36px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-section {
    padding: 0 6% 100px;
  }
}

/* FOOTER */
.site-footer {
  background: #000;
  color: #fff;
  padding: 80px 8%;
  font-family: 'Outfit', sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* BRAND */
.footer-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 30px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-email {
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-email:hover {
  color: #ff7a00;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
}

.footer-social a:hover {
  color: #ff7a00;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ff7a00;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer {
    padding: 60px 6%;
  }
}

.section-divider {
  position: relative;
  margin: 120px 8% 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

/* línea */
.section-divider::before {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s ease;
}

/* texto */
.section-divider span {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff7a00;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

/* estado activo */
.section-divider.is-visible::before {
  transform: scaleX(1);
}

.section-divider.is-visible span {
  opacity: 1;
  transform: translateY(0);
}


/* ===== FIX OUR SERVICES MOBILE ===== */
@media (max-width: 768px) {

  /* 🔥 Mata el grid */
  .services-section {
    display: block;
    padding: 4rem 6%;
  }


 }