*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
section{
    height: auto;
    padding: 60px 0;
   
}
html, body { height: 100%; }
body{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    min-height: 100svh;          /* soporta móviles con barras dinámicas */
    display: flex;
    flex-direction: column;
}

/* =========================
   NAV / HEADER BASE
   ========================= */
:root{
  --container-max: 1200px;
  --gap: 16px;
  --header-h: 72px;
  --border: #ececec;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --brand: #000000; /* ajusta si tienes color de marca */
   --container-max: 1200px;
  --text: #1f1f1f;
  --muted: #4a4a4a;
  --radius: 22px;
}
.brand__logo{
  display: block;
  height: auto;
  max-width: clamp(120px, 40vw, 200px); /* Desktop / Tablet */
}

/* ---- Versión más pequeña en mobile ---- */
@media (max-width: 480px){
  .brand__logo{
    max-width: clamp(70px, 25vw, 120px);
  }
}


.site-branding .brand__logo {
  display: block;
  height: auto;
  max-width: clamp(120px, 40vw, 200px);
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.header__inner{
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.site-branding .brand__logo{
  display:block;
  height:auto;
  max-width: clamp(120px, 40vw, 200px);
}

/* Language switcher (puedes ocultarlo en mobile si quieres) */
.language-switcher{
  display: block;
}
@media (min-width: 900px){
  .language-switcher{
    display: block;
    margin-left: auto;
    margin-right: 8px;
  }
}
/* Centrar ítems en mobile */
@media (max-width: 899px){
  .site-nav{
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra vertical */
    align-items: center;     /* centra horizontal */
    text-align: center;
  }

  .nav__list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; /* espacio entre los enlaces */
  }

  .nav__list > li > a{
    font-size: 1.4rem;
  }

  /* CTA al final centrado */
  .nav-cta.btn{
    margin-top: 32px;
    align-self: center;
  }
}

/* =========================
   HAMBURGER
   ========================= */
.hamburger{
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  border: 0;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  flex-direction: column;
}
.hamburger span{
  display: block;
  width: 26px;
  height: 2px;
  background: #ff8200;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, width .25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
  width: 0%;
}
.hamburger[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}
/* Asegura que la X se vea y esté arriba */
.site-nav { z-index: 1100; }

.nav-close{
  position: absolute;
  top: 30px;
  right:30px !important;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(205, 205, 205, 0.497);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}
@media (min-width: 900px){
  .nav-close{ display: none; }
}

/* Suaviza la animación del icono hamburguesa a X */
.hamburger span{ transform-origin: center; }

/* =========================
   NAV OVERLAY (MÓVIL)
   ========================= */
.site-nav{
  /* Por defecto: oculto en mobile como overlay */
  position: fixed;
  inset: 0;            /* top:0 right:0 bottom:0 left:0 */
  background: #fff;
  padding: 96px 24px 24px; /* deja espacio para el header */
  transform: translateY(-100%);
  transition: transform .28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-nav.is-open{
  transform: translateY(0);
}
body.nav-open{
  overflow: hidden; /* evita scroll del body cuando el menú está abierto */
}

/* Lista del menú */
.nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.nav__list > li > a{
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 10px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}
.nav__list > li > a:hover,
.nav__list > li.current-menu-item > a{
  border-color: #3ab183 !important;
}

/* CTA dentro del nav */
.nav-cta.btn{
  margin-top: 24px;
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  transition: transform .15s ease;
}
.nav-cta.btn:active{
  transform: translateY(1px);
}

/* =========================
   DESKTOP
   ========================= */
@media (min-width: 900px){
  .hamburger{ display: none; }

  .site-nav{
    position: static;
    inset: auto;
    transform: none;      /* visible por defecto */
    transition: none;
    background: transparent;
    padding: 0;
    overflow: visible;
  }

  .header__inner{
    gap: 24px;
  }

  /* Alinea: logo | (language) | nav + cta */
  .site-nav{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto; /* empuja nav a la derecha */
  }

  .nav__list{
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav__list > li > a{
    font-size: 1rem;
    padding: 10px 0;
  }

  .nav-cta.btn{
    margin-top: 0;
    margin-left: 8px;
  }
}

/* =========================
   ACCESIBILIDAD / FOCUS
   ========================= */
a:focus-visible,
button:focus-visible{
  outline: 2px solid #0a84ff;
  outline-offset: 2px;
}

/* Respeta usuarios con reduce motion */
@media (prefers-reduced-motion: reduce){
  .hamburger span,
  .site-nav{
    transition: none !important;
  }
}

/* Padre con hijos */
.menu-item-has-children > a {
  position: relative;
  padding-right: 22px;
}
.menu-item-has-children > a::after{
  content: "▾";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: .8em;
  opacity: .8;
}

/* SUBMENÚ base */
.sub-menu{
  list-style:none;
  margin:0; padding:8px 0;
  background:#fff;
  border:1px solid #ececec;
  border-radius:12px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* --- Desktop: hover dropdown --- */
@media (min-width:900px){
  .menu-item-has-children{
    position: relative;
  }
  .menu-item-has-children > .sub-menu{
    position:absolute;
    left:0; top: 100%;
    opacity:0; visibility:hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 1200;
  }
  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu{
    opacity:1; visibility:visible;
    transform: translateY(0);
  }
  .sub-menu li a{
    display:block;
    padding:10px 14px;
    color:#1f1f1f;
    text-decoration:none;
    white-space: nowrap;
  }
  .sub-menu li a:hover{
    background:#f7f7f7;
  }
}

/* --- Mobile: acordeón dentro del overlay --- */
@media (max-width:899px){
  .sub-menu{
    display:none;            /* oculto por defecto */
    border:0; border-radius:0; box-shadow:none;
    background: transparent; padding: 0 0 0 12px;
  }
  .menu-item-has-children.is-open > .sub-menu{
    display:block;           /* abrir con JS */
  }
  .menu-item-has-children > a{
    display:flex; align-items:center; gap:8px;
  }
  .menu-item-has-children > a::after{
    margin-left:auto;
    transition: transform .2s ease;
  }
  .menu-item-has-children.is-open > a::after{
    transform: translateY(-50%) rotate(180deg);
  }
  .sub-menu a{
   display:block;
    padding:10px 2px;
    text-decoration: none;
    list-style: none;
    color: #000;
    white-space: nowrap;
  }
  .sub-menu a:hover{
    background: #85c8a1;
    color: #fff;
  }
}
/* ===== FLECHA INDICADORA PARA SUBMENÚ ===== */

/* Base: los elementos padre */
.menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Flecha (triángulo o “+”) */
.menu-item-has-children > a::after {
  content: "▾"; /* puedes usar "+" o "›" si prefieres */
  font-size: 0.9em;
  margin-left: 8px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

/* En desktop (hover dropdown) */
@media (min-width:900px){
  .menu-item-has-children > a::after {
    margin-left: 6px;
    transform: translateY(2px);
  }
}

/* En mobile (overlay) */
@media (max-width:899px){
  .menu-item-has-children > a::after {
    content: "▸"; /* flecha hacia la derecha por defecto */
    font-size: 1rem;
    transform: rotate(0deg);
    transition: transform .25s ease;
  }

  /* Cuando el submenú está abierto (clase .is-open puesta por JS) */
  .menu-item-has-children.is-open > a::after {
    content: "▾"; /* flecha hacia abajo */
    transform: rotate(180deg);
    opacity: 1;
  }
}
/* ===== Triángulo (flecha) al lado del texto del padre ===== */
.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* espacio entre texto y triángulo */
  position: relative;
}

/* Icono del triángulo */
.menu-item-has-children > a::after {
  content: "▾";             /* triángulo hacia abajo */
  font-size: 0.7em;
  line-height: 1;
  margin-top: 2px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

/* Al pasar el ratón: gira suavemente */
.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* ===== Ajustes visuales específicos ===== */
@media (min-width:900px){
  /* En desktop, la flecha está pequeña y bien alineada */
  .menu-item-has-children > a::after {
    position: static;
  }
}

/* En mobile (cuando el menú overlay está abierto) */
@media (max-width:899px){
  .menu-item-has-children > a {
    justify-content: space-between;
  }
  .menu-item-has-children > a::after {
    content: "▸";  /* flecha hacia la derecha */
  }
  .menu-item-has-children.is-open > a::after {
    transform: rotate(90deg); /* gira hacia abajo al abrir */
  }
}
/* ====== FIX 1: Flecha alineada al lado del texto ====== */
/* El span que envuelve el texto (link_before/link_after) no debe ser block */
.nav__list > li > a span { display: inline; }

/* El enlace padre en una sola línea con la flecha */
.menu-item-has-children > a{
  display: inline-flex;          /* evita salto de línea entre texto y flecha */
  align-items: center;
  gap: 6px;                      /* espacio texto/flecha */
  flex-wrap: nowrap;
  line-height: 1.3;
}

/* La flecha junto al texto, no debajo */
.menu-item-has-children > a::after{
  content: "▾";                  /* en desktop */
  font-size: .75em;
  line-height: 1;
  margin-top: 0;                 /* evita empuje vertical */
  position: static;              /* que no sea absolute */
  transform: none;
  transition: transform .25s ease, opacity .2s ease;
  opacity: .8;
}

/* Hover desktop: pequeña rotación */
@media (min-width: 900px){
  .menu-item-has-children:hover > a::after{
    transform: rotate(180deg);
    opacity: 1;
  }
}

/* Móvil / overlay: flecha a la derecha y acordeón */
@media (max-width: 899px){
  .menu-item-has-children > a{
    justify-content: space-between; /* texto izq, flecha der */
    width: 100%;
  }
  .menu-item-has-children > a::after{
    content: "▸";                 /* cerrada */
    transform: rotate(0deg);
  }
  .menu-item-has-children.is-open > a::after{
    content: "▾";                 /* abierta */
    transform: rotate(90deg);
    opacity: 1;
  }
}

/* ====== FIX 2: Submenú visible en móviles e iPad cuando el overlay está abierto ====== */
/* Oculto por defecto en modos touch/overlay ... */
.site-nav .sub-menu{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ...pero solo se muestra cuando el padre tiene .is-open */
@media (max-width: 899px){
  .site-nav .sub-menu{ display: none; padding: 6px 0 0 14px; }
  .site-nav .menu-item-has-children.is-open > .sub-menu{ display: block; }
}

/* iPad ancho (>899) pero táctil con overlay abierto:
   fuerza el comportamiento de acordeón igualmente */
.site-nav.is-open .sub-menu{ display: none; padding: 6px 0 0 14px; }
.site-nav.is-open .menu-item-has-children.is-open > .sub-menu{ display: block; }

/* ====== FIX 3: que nada empuje la flecha hacia abajo ====== */
.nav__list > li > a{
  /* si usas subrayado/border en hover, que no cambie el alto del enlace */
  border-bottom: 1px solid transparent;
}
.nav__list > li > a:hover{
  border-color: currentColor;
}

/* === Section Hero Accueil === */
.hero-video{
  position: relative;
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: #000;
}

.hero-video__bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.hero-video__content{
  position: relative;
  z-index: 2;
  max-width: auto;
  padding: 0 20px;
}

.hero-video h1{
  /* móvil ~2rem → fluid 7vw → máx 3rem en desktop */
  font-size: clamp(2rem, 7vw, 3rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-video h2 span{
  /* móvil ~1.1rem → fluid 3.5vw → máx 2.1rem */
  font-size: clamp(1.1rem, 3.5vw, 2.1rem);
  color: #b48aff; /* violeta elegante */
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-video p{
  /* móvil ~1rem → fluid 2.8vw → máx 1.6rem */
  font-size: clamp(1rem, 2.8vw, 1.6rem);
  color: #e6e6e6;
  line-height: 1.6;
  margin-bottom: 40px;
}


.hero-video .btn{
  position: relative;
  display: inline-block;
  background: #ff8200;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  list-style: none;
  font-weight: 600;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1;
}

/* Borde luminoso animado */
/* Botón vidrio con luz en movimiento */
.hero-video .btn{
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .2px;

  /* Vidrio */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);

  overflow: hidden;      /* importante para recortar el brillo */
  isolation: isolate;    /* separa blending interno */
}

/* Luz en movimiento (banda diagonal que cruza el botón) */
.hero-video .btn::before{
  content:"";
  position:absolute;
  top:-100%;
  left:-50%;
  width: 200%;
  height: 300%;
  background: radial-gradient(ellipse at center,
              rgba(255, 5, 163, 0.35) 0%,
              rgba(255,255,255,0.10) 30%,
              rgba(255,255,255,0.00) 60%);
  transform: rotate(20deg);
  animation: sweep 2.8s linear infinite;
  mix-blend-mode: screen;   /* realza el brillo sobre fondos oscuros */
  pointer-events:none;
}

/* Borde/alto brillo sutil al pasar */
.hero-video .btn:hover{
  border-color: rgba(255,255,255,0.35);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Resaltado superior (reflejo del vidrio) */
.hero-video .btn::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(to bottom,
      rgba(255,255,255,0.22), rgba(255,255,255,0.00) 40%);
  mix-blend-mode: screen;
  opacity:.6;
  pointer-events:none;
}

/* Animación de la banda de luz */
@keyframes sweep{
  0%   { transform: translateX(-30%) translateY(-10%) rotate(20deg); }
  50%  { transform: translateX(10%)  translateY(20%)  rotate(20deg); }
  100% { transform: translateX(60%)  translateY(50%)  rotate(20deg); }
}

/* Tamaño y toque en móviles (más compacto) */
@media (max-width: 480px){
  .hero-video .btn{
    padding: 12px 24px;
    border-radius: 12px;
  }
}

/* Capa interior para que no se pinte dentro */
.hero-video .btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: #ff8200;
  border-radius: inherit;
  z-index: -1;
}

/* Animación */
@keyframes glow-move{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* apropos*/
.baner-bgr {
  background-image:linear-gradient(180deg, rgba(0, 0, 0, 0.449) 0%, rgba(0, 0, 0, 0.449) 100%),  url('../img/bgr.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.baner-bgr h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff !important;
}




/* === SECTION À PROPOS === */
.container-a-propos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

/* === PHOTO === */
.foto-a-propos {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.foto-a-propos__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.foto-a-propos__img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* === TEXTE === */
.text-a-propos {
  flex: 1 1 500px;
  color: #222;
  text-align: left;
}

.text-a-propos h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.text-a-propos p {
    font-size: clamp(1.4rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
    text-align: left;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .container-a-propos {
    gap: 2rem;
    padding: 4rem 1.5rem;
  }

  .text-a-propos h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .container-a-propos {
    flex-direction: column;
    text-align: center;
  }

  .text-a-propos {
    text-align: center;
  }

  .text-a-propos h2 {
    font-size: 1.3rem;
  }

  .text-a-propos p {
    font-size: 0.95rem;
    text-align: left; /* mantiene lectura cómoda en móvil */
  }

  .foto-a-propos__img {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .container-a-propos {
    padding: 3rem 1rem;
  }

  .text-a-propos h2 {
    font-size: 1.2rem;
  }
}


/* ===== SECTION COLLABORATION ===== */
.collaboration {
  background: #f9f9f9;
  padding: 5rem 2rem;
}

.collaboration__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}

/* Icono */
.collaboration__icon {
  margin-bottom: 1.5rem;
}

.collaboration__icon img {
  width: 90px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.collaboration__icon img:hover {
  transform: scale(1.05);
}

/* Título */
.collaboration h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #222;
}

/* Texto */
.collaboration p {
   font-size: clamp(1.4rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
    text-align: left;
}

.collaboration .objectif {
  font-size: clamp(1.4rem, 2vw, 1.2rem);
  line-height: 1.6;
  font-weight: 500;
  color: #111;
}

/* === Responsive === */
@media (max-width: 768px) {
  .collaboration {
    padding: 3rem 1.5rem;
  }

  .collaboration__icon img {
    width: 72px;
  }

  .collaboration h2 {
    font-size: 1.6rem;
  }

  .collaboration p {
    font-size: 0.95rem;
  }
}

/* je vous aporte */
/* ===== Ce que je vous apporte ===== */
.offre {
  padding: 4rem 1.5rem;
  background: #fff;
}

.offre__container {
 width: 85%;
  margin: 0 auto;
  padding-bottom: 3rem !important;
}

.offre h2 {
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 1rem;
}

.offre__intro {
  max-width: 860px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.4rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: #444;
  line-height: 1.8;
}

/* Grid responsive */
.offre__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.offre__card {
  position: relative;
  background: #fafafa;
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
  border: 1px solid #f8b572;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  cursor: pointer;
}

/* capa de luz */
.offre__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    250px circle at var(--x, 50%) var(--y, 50%),
    rgba(248, 181, 114, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* aparece en hover */
.offre__card:hover::before {
  opacity: 1;
}

.offre__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
/* icono */

.offre__icon {
  display: block;
  width: 100%;
  height: 72px;
  margin-bottom: 1rem;
  object-fit: contain;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offre__card h3 {
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  text-align: center;
  color:#f78c21;
  font-weight: 600;
}

.offre__card p {
    font-size: clamp(1.4rem, 2vw, 1rem);
    line-height: 1.6;
    color: #676767 !important;
    margin-bottom: 1rem;
    text-align: left;
}
.offre__card h4{
  font-size: 1.8rem;
  color: #676767 !important;
  font-weight: 500;
  text-align: center;
}
/* ===== Breakpoints ===== */
@media (max-width: 1024px) {
  .offre__grid { 
    display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 640px) {
  .offre { padding: 3rem 1rem; }
  .offre h2 { font-size: 1.6rem; }
  .offre__intro { font-size: .95rem; }
  .offre__grid { grid-template-columns: 1fr; }
  .offre__card { text-align: center; }
  .offre__icon { margin: 0 auto 1rem; }
}

/* (Opcional) ligero dark-mode si usas prefers-color-scheme */
@media (prefers-color-scheme: dark) {
  .offre { background: #f0f0f0de; }
  .offre__intro { color: #0b0232; }
  .offre__card { background: #ffffff; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); }
  .offre__card p { color: #0b0232; }

}/* ===== FIN SECTION À PROPOS ===== */


/* ===== creation web ===== */

.video-gallery{
  background:#ededed;   /* cambia si quieres otro fondo */
  color:#4b4b4b;
  padding:70px 0;
  text-align:center;
}

/* Bloque de título + texto arriba (mitad de la sección) */
.video-gallery .pv-text{
  width:50%;
  max-width:900px;
  margin:0 auto 32px auto;   /* centrado + separación con la galería */
}
.video-gallery .pv-text h2{
  font-size:clamp(2rem, 4.5vw, 3rem);
  font-weight:700;
  margin:0 0 10px 0;
  padding-top: 3rem;
}
.video-gallery .pv-text p{
  font-size:clamp(1rem, 2.2vw, 1.25rem);
  line-height:1.6;
  color:#6e6e6e;
  margin:0 auto;
  max-width:60ch;            /* ancho cómodo de lectura */
}

/* Galería de vídeos (también mitad y centrada) */
.video-gallery .video-grid{
  width:50%;
  max-width:900px;
  margin:0 auto;             /* centra el grid */
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  justify-items:stretch;      /* los items ocupan todo su track */
}

/* Asegura que los hijos del grid nunca desborden */
.video-gallery .video-grid > *{
  width:100%;
  min-width:0;
}

/* Estilo de los vídeos */
.video-gallery .vg-video{
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  border-radius:14px;
  background:#000;
  filter:brightness(.9);
  transition:filter .25s ease, transform .25s ease;
  cursor:pointer;
  display:block;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
}
@media (hover:hover){
  .video-gallery .vg-video:hover{
    filter:brightness(1.15);
    transform:translateY(-2px);
  }
}
.offre__grid-web {
  width: 70%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
/* ======= RESPONSIVE ======= */

@media (max-width: 899px){
  .video-gallery{
    padding:56px 0;
  }
  .video-gallery .pv-text,
  .video-gallery .video-grid{
    width:94%;               /* en móvil usa casi todo el ancho */
    max-width:700px;
  }
  .video-gallery .video-grid{
    grid-template-columns: repeat(2, 1fr);  /* 2 columnas si cabe */
    gap:14px;
  }
}
@media (max-width: 520px){
  .video-gallery .video-grid{
    grid-template-columns: 1fr;             /* 1 columna en pantallas pequeñas */
  }
  .offre__grid-web {
    grid-template-columns: 1fr;  
    width: 94%;
    max-width: 700px;
    margin: 0 auto           /* 1 columna en pantallas pequeñas */
  }
}
#videos {
  height: auto;
}
.desavi{
  width: 60%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 5rem;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.08), transparent);
  
}
.desavi h3{
  padding-top: 8rem;
  font-size: clamp(1.4rem, 3.6vw, 2.1rem);
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
  color: #3e3e3e;          /* ajusta a tu paleta */
  margin: 0 auto 1rem;
  text-wrap: balance;  
  padding-bottom: 1rem;
}
/* =====fin creation web ===== */
/* ===== photo ===== */
.hero h1 {
  font-size: clamp(1.1rem, 5vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
  color: #4d4d4dd3;
}
.boton-photo-container{
  text-align: center;
  margin-bottom: 1rem;
}
.btn-photo{
  display: inline-block;
  background:#f79e31;
  border:none;
  color:#fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
   box-shadow:0 8px 26px rgba(247,158,49,.55);
}

.btn-photo:hover{
  background:#d57c1d;
  box-shadow:0 0 15px rgba(247,158,49,.6);
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery figure {
  cursor: pointer;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f5f5;
   box-shadow:0 8px 26px rgba(181, 181, 181, 0.55);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;        /* cuadrado tipo Instagram */
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .25s ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

/* ====== LIGHTBOX ====== */
.ig-lightbox[aria-hidden="false"] { display: grid; }
.ig-lightbox {
  position: fixed;
  inset: 0;
  display: none;               /* toggled a grid al abrir */
  place-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* Imagen */
.ig-lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}

/* Controles */
.ig-btn {
  position: absolute;
  border: none;
  background: rgba(255,255,255,.14);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .1s ease;
  user-select: none;
}

.ig-btn:hover { background: rgba(255,255,255,.22); }
.ig-btn:active { transform: scale(.98); }

.ig-btn--close { top: 20px; right: 20px; font-size: 30px; }
.ig-btn--prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.ig-btn--next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* Indicador (1/10) opcional */
.ig-indicator {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
}

/* Mejoras táctiles */
@media (max-width: 640px) {
  .ig-btn { width: 54px; height: 54px; font-size: 30px; }
  .ig-btn--prev { left: 10px; }
  .ig-btn--next { right: 10px; }
  .ig-btn--close { top: 12px; right: 12px; }
}
.gf-btn{
  display:inline-block; margin:0 .25rem .5rem; padding:.55rem .9rem;
  border-radius:999px; border:1px solid #ddd; background:#fff; cursor:pointer;
  font:500 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
  transition:all .2s ease;
}
.gf-btn:hover{ background:#f6f6f6; }
.gf-btn.is-active{ background:#111; color:#fff; border-color:#111; }
/* ===== OVERLAY TEXTE GALERIE ===== */
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 0;
  cursor: pointer;
  background: #f7f7f7;
}

.gallery figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease, filter .25s ease;
}

/* Zoom léger au survol */
.gallery figure:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.05);
}

/* Overlay */
.gallery figure::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  color: #fff;
  display: flex;
  opacity: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.35;
  transition: opacity .35s ease;
  pointer-events: none;
}

.gallery figure:hover::after {
  opacity: 1;
}
.copyright-photos{
  font-size:.75rem;
  text-align:center;
  color:#777;
  margin-top:1rem;
  padding-bottom: 2rem;
}

/* ===== FIN photo ===== */


/* ===== photo-mariage ===== */
.smm-uniform-gallery{
  width:min(1200px, 92%);
  margin:0 auto;
  padding:5rem 0;
}

.smm-uniform-gallery__intro{
  max-width:760px;
  margin:0 auto 2.5rem;
  text-align:center;
}

.smm-uniform-gallery__eyebrow{
  margin:0 0 .8rem;
  font-size:1.2rem;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:#8b7d6b;
}

.smm-uniform-gallery__intro h2{
  margin:0 0 1rem;
  font-family:"Playfair Display", serif;
  font-size:clamp(2.4rem, 4vw, 4.4rem);
  line-height:1.15;
  color:#1f1f1f;
}

.smm-uniform-gallery__text{
  margin:0;
  font-size:clamp(1.45rem, 1.9vw, 1.8rem);
  line-height:1.8;
  color:#666;
}

.smm-uniform-gallery__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.smm-uniform-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:22px;
  aspect-ratio:4 / 5;
  background:#f4f1ed;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  text-decoration:none;
}

.smm-uniform-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .65s ease, filter .35s ease;
}

.smm-uniform-card__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:end;
  padding:1.4rem;
  background:linear-gradient(to top, rgba(0,0,0,.34), rgba(0,0,0,.03));
  opacity:0;
  transition:opacity .3s ease;
}

.smm-uniform-card__overlay span{
  color:#fff;
  font-size:1.35rem;
  letter-spacing:.03em;
}

.smm-uniform-card:hover img{
  transform:scale(1.04);
  filter:brightness(.97);
}

.smm-uniform-card:hover .smm-uniform-card__overlay{
  opacity:1;
}

/* Lightbox */
.smm-uniform-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2rem;
  background:rgba(10,10,10,.92);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease, visibility .28s ease;
}

.smm-uniform-lightbox:target{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.smm-uniform-lightbox__img{
  max-width:min(100%, 1100px);
  max-height:60vh;
  border-radius:16px;
  object-fit:contain;
  box-shadow:0 18px 48px rgba(0,0,0,.28);
}

.smm-uniform-lightbox__close{
  position:absolute;
  top:16px;
  right:24px;
  color:#fff;
  text-decoration:none;
  font-size:4rem;
  line-height:1;
  font-weight:300;
}

/* Tablet */
@media (max-width: 991px){
  .smm-uniform-gallery__grid{
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
  }
}

/* Mobile */
@media (max-width: 640px){
  .smm-uniform-gallery{
    width:94%;
    padding:3rem 0;
  }

  .smm-uniform-gallery__grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .smm-uniform-card{
    border-radius:18px;
  }

  .smm-uniform-card__overlay{
    opacity:1;
  }

  .smm-uniform-lightbox{
    padding:1rem;
  }

  .smm-uniform-lightbox__close{
    top:10px;
    right:16px;
    font-size:3.6rem;
  }
}


.smm-uniform-card{
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal .8s ease forwards;
}

/* delay progresivo (efecto cascada) */
.smm-uniform-card:nth-child(1){ animation-delay: .1s; }
.smm-uniform-card:nth-child(2){ animation-delay: .2s; }
.smm-uniform-card:nth-child(3){ animation-delay: .3s; }
.smm-uniform-card:nth-child(4){ animation-delay: .4s; }
.smm-uniform-card:nth-child(5){ animation-delay: .5s; }
.smm-uniform-card:nth-child(6){ animation-delay: .6s; }
.smm-uniform-card:nth-child(7){ animation-delay: .7s; }
.smm-uniform-card:nth-child(8){ animation-delay: .1s; }



@keyframes cardReveal {
  to{
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== FIN photo-mariage ===== */
/* ===== contact ===== */
.section--white{
  margin-top: 5rem;
  height: 90vh;
  align-items: center;
  justify-content: center;
}
.section__head{
   font-size: clamp(1.8rem, 3vw, 2rem);
  padding-bottom: 1rem;

}
.grid-2  {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }.section--white{
  margin-top: 5rem;
  height: auto;
  align-items: center;
  justify-content: center;
}
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="password"],
.wpcf7 input[type="search"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
  transition: all .3s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #aaa;
  font-size: 14px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90, 200, 250, .25);
  outline: none;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: #0077a6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.wpcf7-not-valid {
  border-color: #e63946 !important;
  background: #fff5f5;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #e63946;
  margin-top: -10px;
  margin-bottom: 10px;
}

.wpcf7 form .wpcf7-response-output {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #06d6a0;
  background: #e6fffa;
  color: #077f67;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: 1px solid #e63946;
  background: #fff5f5;
  color: #e63946;
}

/* Aside de contacto con imagen */
.contact__aside {
  background: linear-gradient(#00000089, #00000089), url('../img/cafe.webp') no-repeat center/cover;
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55) !important;
  border-radius: 16px;
}

.contact__aside h3,
.contact__aside p,
.contact__aside a {
  position: relative;
  z-index: 1;
}

.contact__aside h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem !important;
  margin-bottom: 1rem;
  color: #f8f9fa;
}

.contact__aside p {
  line-height: 1.6;
}

.contact__aside a {
  color: #ffd166;
  text-decoration: none;
  font-weight: 500;
}

.contact__aside a:hover {
  text-decoration: underline;
}


  /* Bouton principal */
   .footer-recaptcha span  a{
      color: red ;
    }
    .open-modal {
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal.is-open {
      display: flex;
    }

    .modal-content {
      background: #fffefe;
      max-width: 600px;
      width: 90%;
      padding: 30px;
      border-radius: 8px;
      position: relative;
      max-height: 80vh;
      overflow-y: auto;
    }

    .modal-content h2 {
      margin-top: 0;
    }
    .modal-content p {
      font-size: 18px;
    }
    /* Bouton fermer */
    .close-modal {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }

    /* Bouton accepter */
    .accept-btn {
      margin-top: 20px;
      padding: 10px 18px;
      font-size: 16px;
      background: #000;
      color: #fff;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }

    .accepted {
      margin-top: 20px;
      color: green;
      font-weight: bold;
      display: none;
    }



/* ===== FOOTER ===== */
footer {
  background: #fff;
  border-top: 1px solid #ddd; /* línea gris arriba */
  padding: 1.5rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #333;
}

.footer-content {
  max-width: 1200px;
   padding-bottom: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* texto izq - iconos der */
  flex-wrap: wrap;
  gap: 1rem;
}

/* Texto */
.footer-content p {
  margin: 0;
  color: #333;
}

/* Enlaces sociales */
.social-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.social-links a svg {
  fill: #444;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.social-links a:hover svg {
  fill: #f47c00;           /* tu naranja principal */
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .social-links a svg {
    width: 26px;
    height: 26px;
  }
}
footer {
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

/* ===== FIN FOOTER ===== */

/* === FIX: language switcher visible + centered on mobile/tablet === */
@media (max-width: 768px){
  .language-switcher{
    position: absolute;
    top: 25px;
    left: 60%;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1201;
    text-align: center;
  }
}
