/*
Theme Name: People Skateboarding
Theme URI: https://peoplesk8.com
Author: People Skateboarding
Author URI: https://peoplesk8.com
Description: Tema oficial de People Skateboarding — comunidad urbana, clases, impacto social.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: people-sk8
Tags: skateboarding, urban, community, sports, bold, brutalist
*/

/* ============================================================
   PEOPLE SKATEBOARDING — MAIN STYLESHEET
   Design: Brutalist / Editorial / B&W
   Font: Space Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-zinc-100: #f4f4f5;
    --color-zinc-200: #e4e4e7;
    --color-zinc-400: #a1a1aa;
    --color-zinc-500: #71717a;
    --color-zinc-600: #52525b;
    --color-zinc-700: #3f3f46;
    --color-zinc-800: #27272a;
    --color-zinc-900: #18181b;
    --color-surface: #f9f9f9;
    --color-red: #ff0000;
    --font-main: 'Space Grotesk', sans-serif;
    --nav-height: 80px;
    --color-rosado: #f9d2e3;
    --color-celeste: #8ed6ef;
    --color-verde: #c2de98;
    --color-violeta: #d9c2e3;
    --color-amarillo: #f3e9a5;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--color-white);
    color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* ---- Material Icons ---- */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* hero video */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    background: #000;
}

/* capa oscura opcional */
/* overlay viñeta polaroid */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0) 35%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0.45) 85%,
            rgba(0, 0, 0, 0.75) 100%
        );
 
}

/* opcional: grano vintage */
.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    mix-blend-mode: soft-light;
    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            rgba(255,255,255,.08) 1px,
            transparent 2px
        );
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 8vw, 5rem); 
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-style: italic;
    color: var(--color-white);
    font-family: var(--font-main);
    text-align: center;
}


.hero-content p {
    color: var(--color-white);
    padding: 0.25rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
/* móvil */
@media (max-width: 768px) {
    
    .hero-eventos .hero-inner h1{
        font-size:2.5rem!important;
    }
    .section-que-hacemos{
        padding: 30px!important
    }
    .hero-video {
        height: 100svh;
    }

    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

.lumina-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}


.slide-content{
    position: relative;
    z-index: 10;
    max-width: 1400px;
        display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align:center;
}
.slide.active .slide-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align:center;
}

.slide-content h1{
    font-size: clamp(1.5rem, 8vw, 5rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-style: italic;
    color: var(--color-white);
    text-shadow: 3px 3px 8px BLACK;
    text-align:center;
}


.slide-content p{
    font-size: clamp(3.5rem, 12vw, 5rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-style: italic;
    color: var(--color-white);
    text-align:center;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 63px;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: zoomLoop 12s ease-in-out infinite alternate;
  filter:brightness(0.7);
}


/* ✨ Fade In Up */
.slide.active .slide-content {
  animation: fadeUp 0.8s ease forwards;
}

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

/* Animación infinita suave */
@keyframes zoomLoop {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.15);
  }
}

/* ---- Navigation ---- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #efefef;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-bottom: 1px solid #000;    
}

.site-header .site-branding {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: var(--color-black);
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:row;
}

.site-header nav.main-nav {
    display: none;
}

.site-header nav.main-nav a {
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--color-zinc-400);
    transition: color 0.1s, background 0.1s;
    padding: 0.25rem 0.5rem;
}

.site-header nav.main-nav a:hover,
.site-header nav.main-nav a.active {
    color: var(--color-black)!important;
}

.site-header nav.main-nav a.current-menu-item {
    color: var(--color-black);
    border-bottom: 3px solid var(--color-black);
    padding-bottom: 0.25rem;
}

.btn-reservar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-reservar:hover {transform: scale(1.08);
    background: #1ebe5d;
    color: white;
}

@media (max-width: 1000px) {
    
    .cont-cards-vl {
    grid-template-columns: repeat(2, 340px)!important;
}

    
}

@media (max-width: 767px) {
    .services-cards {
    padding: 2rem 1rem!important;
}

.skw-form-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr)!important;
    gap: 1rem;
}

    .cont-cards-vl {
    grid-template-columns: repeat(1, 340px)!important;
}
    
  .btn-reservar {
    display: none;
  }
  
.btn-reservar-mobile {
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.1s;
    display: inline-block;
}


  .hero-badge {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0rem;
}
.hero-badge .divider {
    height: 1px;
    width: 6rem;
    background: var(--color-white);
    display: none;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 28px;
}

.mv-heading {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 2rem;
}


.contact-hero h1 {
    font-size: clamp(3rem, 13vw, 12rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.85;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.booking-grid{
        display: flex!important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

}

@media (min-width: 768px) {
    .site-header nav.main-nav {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }
    .site-header {
        padding: 0 3rem;
    }
}

/* ---- Mobile Menu ---- */
/*.mobile-menu-toggle {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 5px;*/
/*    background: none;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    padding: 4px;*/
/*}*/
/*.mobile-menu-toggle span {*/
/*    display: block;*/
/*    width: 24px;*/
/*    height: 2px;*/
/*    background: var(--color-black);*/
/*    transition: transform 0.2s;*/
/*}*/

/* Botón base */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

/* Líneas */
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-black);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ✨ ANIMACIÓN A X */

/* Línea 1 */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

/* Línea 2 (desaparece) */
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

/* Línea 3 */
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-top: 2px solid var(--color-black);
    padding: 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-zinc-200);
    padding-bottom: 1rem;
}

/* ---- Page Wrapper ---- */
/*.page-content { padding-top: var(--nav-height); }*/




/* ---- Marquee ---- */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 30s linear infinite; }

/* ---- Utilities ---- */
.grayscale { filter: grayscale(100%); }
.contrast-high { filter: grayscale(100%) contrast(1.25) brightness(0.9); }
.text-outline {
    -webkit-text-stroke: 1px var(--color-black);
    color: transparent;
}
.text-outline-white {
    -webkit-text-stroke: 1px var(--color-white);
    color: #0a0909;
}
.hide-scrollbar { scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* ---- Footer ---- */
.site-footer {
    background: var(--color-zinc-100);
    padding: 3rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer .footer-brand { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.04em; }
.site-footer .footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer .footer-links a { color: var(--color-zinc-500); transition: color 0.1s; }
.site-footer .footer-links a:hover { color: var(--color-black); }
.site-footer .footer-copy { color: var(--color-zinc-500); }

/* ---- Animations ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Contact Form 7 custom styles ---- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-zinc-400);
    padding: 1rem 0;
    font-size: 1.1rem;
    font-family: var(--font-main);
    color: var(--color-black);
    outline: none;
    transition: border-color 0.2s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-bottom-color: var(--color-black);
}
.wpcf7 input[type="submit"] {
    background: var(--color-black);
    color: var(--color-white);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.1s;
}
.wpcf7 input[type="submit"]:hover { background: var(--color-zinc-800); }
.wpcf7-response-output { margin-top: 1rem; padding: 1rem; border: 1px solid var(--color-zinc-400); }

/* ============================================================
   HOME PAGE
   ============================================================ */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 2rem;
    overflow: hidden;
}
@media (min-width: 768px) { .hero-section { padding: 4rem; } }

.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-section .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
}
.hero-section h1 {
    font-size: clamp(3.5rem, 12vw, 5rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-style: italic;
    color: var(--color-white);
}
.hero-badge {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-badge span {
    background: var(--color-white);
    color: var(--color-black);
    padding: 0.25rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-badge .divider {
    height: 1px;
    width: 6rem;
    background: var(--color-white);
}

.contenedor-proposito {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom:60px;
}
.proposito {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 7rem;
    height: 560px;
    transition:.3s ease;
    position:relative;

    
}

.proposito-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

.proposito-bg {
    position: relative;
    height: 117vh;
    width: 100%;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 10rem 4.5rem 10rem 4.5rem;
    justify-content: center;
}
/* overlay oscuro */
.overlay-dark {
    position: absolute;
    inset: 0;
    background:rgb(169 169 169 / 75%);
    z-index: 1;
}

/* contenido */
.content-proposito {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin-bottom: 22px;
    margin-top: 22px;

}

/* titulo */
.text-box h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
    font-family:var(--font-main);
    font-style: italic;
        text-align: center;
}

.text-box h2 span {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -4px;
    font-family:var(--font-main);
}

.white {
    color: white;
}



/* línea roja */

.proposito-bg::before {
content: "";
position: absolute;
top: -5px;
left: -3px;
width: calc(100% + 6px);
height: 145px;
background: white;
clip-path: polygon(0 0, 100% 0, 100% 65%, 0 25%);
z-index: 2;
transform: translateZ(0);
backface-visibility: hidden;
}
/* párrafo */
.text-box p {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.4;
    /* opacity: 0.85; */
    text-align: center;
    color: #000;
    font-family: var(--font-main);
}

/* features */
.features {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    max-width: 170px;
}

.feature-item span {
    width: 54px;
    height: 54px;
    border: 1px solid #e12626;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: #e12626;
}

/* diagonal inferior */
.bottom-diagonal {
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: 185px;
    background: white;
    clip-path: polygon(100% 55%, 0 100%, 100% 100%);
    z-index: 2;

    transform: translateZ(0);
    backface-visibility: hidden;
}

/* dots decorativos */

/* responsive */
@media(max-width:768px) {
    .proposito-bg {
        padding: 4rem 2rem;
        min-height: 720px;
        background-attachment: unset!important;

    }
  

    .text-box h2 span {
        font-size: 4rem;
    }

    .text-box p {
        font-size: 1.1rem;
    }

    .features {
        gap: 20px;
    }

    .bottom-diagonal {
        height: 100px;
    }
}
/* overlay viñeta polaroid */
.proposito-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgb(210 210 210 / 75%);
 
}


.proposito h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 30px;
    color:#2a2525;
}

.cont-texto-proposito {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 500px;

}

.caja-texto {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont-texto-proposito p {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.4;
    /* opacity: 0.85; */
    text-align: center;
    color: #2a2525;
}
.caja-imagen {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont-texto-proposito img {
    max-width: 100%;
    height: 163px;
    border-radius: 18px;
    transition:.3s ease;
}

.proposito:hover .cont-texto-proposito img {
    rotate:-4deg;
}

/* Cards y colores */
.rosado{
background: var(--color-rosado);  
}

.celeste{
background: var(--color-celeste);     
}

.verde{
background: var(--color-verde);     
}


.violeta{
background: var(--color-violeta);     
}

.amarillo{
background: var(--color-amarillo);     
}
.t-rosado{
color: var(--color-rosado);  
}

.t-celeste{
color: var(--color-celeste);     
}

.t-verde{
color: var(--color-verde);     
}


.t-violeta{
color: var(--color-violeta);     
}

.t-amarillo{
color: var(--color-amarillo);     
}


/* QUE HACEMOS*/

section.que-hacemos {
    padding:0rem 4.5rem 8rem 4.5rem;
    width: 100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}

section.que-hacemos h2{
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom:7rem;
}
.cont-cards-qh {
   height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows:auto;
    grid-column-gap: 70px;
    height: auto;
    width: 100%;
}

@media (max-width: 768px) {
.cont-cards-qh {
    grid-template-columns: 1fr !important;
    grid-template-rows: 3fr 3fr 3fr !important;
    grid-row-gap: 101px !important;
}


.nav-menu-cta-links {
    background: var(--color-black);
    color: var(--color-white);
    padding: 10px!important;
    font-weight: 700;
    font-size: 1.4rem!important;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.1s;
    display: flex;
    text-align: center;
    border-radius: 11px;
    width: 300px;
    transition: .3s ease-in-out;
    justify-content: space-between!important;
    align-items: center;
    margin-bottom: 23px;
    flex-direction: row;
}

.menu-cta-links {
    width: 100%;
    display: flex;
    justify-content: center!important;
    align-items: center;
    height: auto!important;
    flex-direction: column;
}


}

.card {
    border-radius: 13px;
    border: 1px solid #979797;
    text-align: center;
    width: 100%;
    height: auto;
    transition: .4s ease;
}

.card:hover {
    scale: calc(101%);
    transition: .4s ease;
    box-shadow: 0px 4px 3px 0px #0000003b;
}


.card:hover img {
    transition:.3s ease;
    rotate:-6deg;
}
    
.card-head {
 position: relative;
    height: 9px;
    width: 100%;
    display: flex;
    height:0px;
    justify-content: center;
    align-items: center;
}

.icono-redondo-qh{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:3;
    border-radius: 100%;
    transform: translateY(-6px);
}
.icono-redondo-qh img {
    width: 200px;
    height: 135px;
    object-fit: cover;
}
.card-body {
    height: 167px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
}
.card-body h4{
    margin-bottom: 45px;
    font-size: 35px;
    color: #000;
    z-index:3;
}
.card-footer.m-0 {
    background-color: #f9f9f9;
    padding: 30px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    height: auto;
    min-height: 144px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card-footer p{
    text-align: center;
    margin-bottom: 21px;
    font-family:var(--font-main);
    color:#525252;
}
a.btn-link {
    background-color: var(--color-black);
    color:#fff;
    padding: 5px 18px;
    border-radius: 7px;
    transition:.3s ease;
    font-size: 22px;
}

a.btn-link:hover {
    background-color: var(--color-zinc-800);
    color:#fff;
    padding: 5px 18px;
    border-radius: 7px;
}

/* IMPACTO */
.text-center{
    text-align:center;
}


/* comunidad que hacemos*/
#comunidad {
    position: relative;
    padding:10rem 4.5rem 10rem 4.5rem;
    background:linear-gradient(to bottom, #fff, #d1d1d1);
    overflow: hidden;
}

#comunidad::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .5;
    pointer-events: none;
}

/* header */
.comunidad-header {
    text-align: center;
    margin-bottom: 7rem;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: block;
    color: #df1d1d;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.comunidad-header h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: .95;
    margin-bottom: 1rem;
}

.red-brush {
    width: 180px;
    height: 6px;
    background: #df1d1d;
    margin: 0 auto 2rem;
    border-radius: 50px;
    transform: rotate(-3deg);
}

.comunidad-header p {
    max-width: 700px;
    margin: auto;
    font-size: 1.25rem;
    color: #666;
    line-height: 1.5;
}

/* slider */
.slider-box-cc {
    position: relative;
    max-width: 1450px;
    margin: auto;
    padding: 0 70px;
}

.slider-wrapper-cc {
    overflow: hidden;
    background: white;
    padding: 1.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.slider-track-cc {
    display: flex;
    gap: 20px;
    transition: transform .6s ease;
}

.slide-cc {
    flex: 0 0 calc(33.333% - 14px);
}

.slide-cc img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform .4s ease;
}

.slide-cc img:hover {
    transform:  scale(1.02);
}

/* botones */
.slider-btn-cc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    cursor: pointer;
    font-size: 1.8rem;
    z-index: 10;
}

.slider-prev-cc {
    left: 0;
}

.slider-next-cc {
    right: 0;
}

/* features */
.community-features {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.feature-item-cc {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
}

.feature-item-cc span {
    min-width: 64px;
    width: 64px;
    height: 64px;
    border: 1px solid #df1d1d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #df1d1d;
    font-size: 1.7rem;
}

.feature-item-cc h4 {
    font-weight: 800;
    margin-bottom: .4rem;
}

.feature-item-cc p {
    color: #666;
    line-height: 1.4;
    font-family:var(--font-main);
}

/* responsive */
@media (max-width: 1024px) {
    .slide-cc {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
   
    .slide-cc {
        flex: 0 0 100%;
    }

    .slider-box-cc {
        padding: 0 10px;
    }

    .slider-btn-cc {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
        top: 42%;
    }

    .slider-prev-cc {
        left: 5px;
    }

    .slider-next-cc {
        right: 5px;
    }

    .slide-cc img {
        height: 338px;
    }

    .community-features {
        gap: 2rem;
    }
    
    .ps-section {
    padding: 30px!important;
}


.clases-title-cta{
    font-size:3rem!important;
    
}


.ps-classes-image img {
    width: 100%;
    height: 200px!important;
}

.hero-content h1{
    font-size: 3rem!important;
    line-height: 1;
    color: #fff;
}

.editorial-gallery {
    padding:10px!important;
}

.testimonial-text{
        font-size: 18px!important;
}

.section-experiencias{
    padding:30px!important;
}


.exp-block {
    grid-template-columns: 1fr!important;
    margin-bottom:30px;
    
}

}
section.quienes-somos-comunidad {
    width: 100%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.mv-heading-comunidad { font-size: 3rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; margin-bottom: 2rem; }
.mv-text-comunidad { font-size: 1.2rem; font-weight: normal; line-height: 1.7;  opacity: 0.85; }
/* Comunidad valores */
.cont-cards-vl {
    display: grid;
    grid-template-rows: 1fr;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(3, 340px);
    gap: 75px;
    justify-content: center;
}
/* Booking section */
.booking-section { padding: 6rem 2rem; background: var(--color-white); }
@media (min-width: 768px) { .booking-section { padding: 6rem 4rem; } }
.booking-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 4fr 8fr; } }
.booking-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; line-height: 1; margin-bottom: 1.5rem; }
.booking-meta { display: flex; flex-direction: column; gap: 1rem; }
.booking-meta-item { display: flex; align-items: center; gap: 1rem; font-weight: 700; letter-spacing: -0.03em; }
.calendar-wrapper { background: #f3f3f4; padding: 0.25rem; }
.calendar-inner { background: var(--color-white); padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 640px) { .calendar-inner { grid-template-columns: 1fr; } }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.calendar-header .month-title { font-weight: 900; font-size: 1.1rem; letter-spacing: -0.04em; }
.calendar-nav-btn { padding: 0.5rem; cursor: pointer; background: none; border: none; transition: background 0.1s; }
.calendar-nav-btn:hover { background: var(--color-black); color: var(--color-white); }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.7rem; font-weight: 700; color: var(--color-zinc-400); margin-bottom: 0.5rem; }
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day { padding: 0.75rem; text-align: center; font-weight: 700; cursor: pointer; background: none; border: none; font-size: 0.9rem; transition: background 0.1s, color 0.1s; }
.cal-day:hover, .cal-day.selected { background: var(--color-black); color: var(--color-white); }
.cal-day.inactive { color: var(--color-zinc-400); cursor: default; }
.time-slots h3 { font-weight: 900; font-size: 1.1rem; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 2rem; }
.time-slot-btn { width: 100%; padding: 1rem; border: 2px solid var(--color-black); font-weight: 700; letter-spacing: -0.03em; background: none; cursor: pointer; transition: background 0.1s, color 0.1s; display: block; margin-bottom: 0.75rem; }
.time-slot-btn:hover { background: var(--color-black); color: var(--color-white); }

/* Comunidad */
.custom-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides, .slide {
    width: 100%;
    height: 100vh;
    margin-top: 117px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    background: rgba(0, 0, 0, .25);
    color: white;
    padding: 14px 20px 15px 20px;
    cursor: pointer;
    border-radius: 24px;
}

.prev { left: 20px; }
.next { right: 20px; }

.marquee-wrapper-cc {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track-cc {
    display: flex;
    width: max-content;
    animation: scrollInfinite 25s linear infinite;
}

.marquee-track-cc img {
    width: 391px;
    height: auto;
    object-fit: cover;
    border-radius: 13px;
    margin-right: 10px;
    flex-shrink: 0;
}

@keyframes scrollInfinite {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* Aliados*/
.aliados-section { position:relative;z-index:1;padding: 0 0; background-image:linear-gradient(to bottom, #d1d1d1, #fff); overflow: hidden; }
.aliados-header { padding: 0 4rem 4rem; text-align:center; }
.aliados-header h2 { font-size: clamp(3rem, 8vw, 4rem); font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 1.5rem; }
.aliados-header p {
    font-size: 1.25rem;
    color: rgb(102, 102, 102);
    line-height: 1.5;
    margin: auto;}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;

}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollInfinite 35s linear infinite;
    background-color: #dbdbdb;
    padding-top:10px;
    padding-bottom:10px;
}
.marquee-item {
    width: 128px;
    height: auto;
    object-fit: contain;
    margin-right: 30px;
    flex-shrink: 0;
}

@keyframes scrollInfinite {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* CTA section */

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #25D366;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.menu-cta-links{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: auto;
}

.nav-menu-cta-links{
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.1s;
    display: flex;
    text-align: center;
    border-radius: 11px;
    width:300px;
    transition:.3s ease-in-out;
        justify-content: center;
    align-items: center;
    flex-direction: row;
}

.nav-menu-cta-links:hover{
    transform: scale(1.08);
    color: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.nav-menu-cta-links:hover i {
     transition: .3s ease; 
    rotate: -56deg;
}

.cta-section { padding: 8rem 2rem; background: var(--color-white); }
@media (min-width: 768px) { .cta-section { padding: 8rem 4rem; } }
.cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border: 2px solid #bbbbbb;
    border-radius: 31px;
    padding: 63px;
    background: var(--color-violeta);
    transition:.3s ease;
    cursor:pointer;
}
.cta-inner:hover{
    scale: calc(101%);
    box-shadow: 0px 4px 3px 0px var(--color-violeta); 
}

.cta-inner:active{
    scale: calc(99%);
}
@media (min-width: 768px) { .cta-inner { flex-direction: column; } }
.cta-heading { font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 7rem;}
.cta-sub { font-size: 1rem; color: var(--color-zinc-500); text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; }
.cta-actions { display: flex; flex-direction: column; gap: 1.5rem; }
.cta-email { font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.04em; text-decoration: underline; text-underline-offset: 0.4rem; transition: color 0.1s; }
.cta-email:hover { color: var(--color-zinc-500); }

/* ============================================================
   COMMUNITY PAGE
   ============================================================ */
.community-hero { position: relative; background: var(--color-white); padding: 8rem 2rem 0rem; overflow: hidden; text-align:center;}
@media (min-width: 768px) { .community-hero { padding: 8rem 4rem 2rem; } }
.community-hero h1 { font-size: clamp(2rem, 7vw, 4rem); line-height: 0.85; font-weight: 900; letter-spacing: -0.04em; text-transform: uppercase; color:#fff;}
.community-hero .hero-desc { font-size: 1.4rem; font-weight: 500; line-height: 1.5; color: var(--color-zinc-600); text-align: center; margin-top: 3rem; }
.community-hero .bg-accent { position: absolute; top: 0; right: 0; width: 33%; height: 100%; background: #f3f3f4; z-index: -1; }

.historia-section { padding: 40px; background: #f9f9f9; }
@media (max-width: 768px) {
    section.que-hacemos {
    padding:30px!important;
}

#comunidad{
        padding:30px!important;

}

    .historia-section { padding: 30px!important; }
    .historia-heading{
        font-size:3rem!important;
        
    }
.community-hero h1 {
    font-size: 3rem!important;}
    
    .quienes-somos-comunidad div{
          flex-direction: column!important;  
    }
    .quienes-somos-comunidad div img{
    width:100%!important;
}

    .quienes-somos-comunidad div p{
        width:100%!important;
            padding: 0px!important;
            margin-top:20px;
    }

    .sec-img{
    background-size:cover; background-position:center center; background-repeat:no-repeat; width:100%; height:300px!important;
}
}
.historia-grid { display:flex; justify-content:center; align-items:center; text-align:center; }
@media (min-width: 768px) { .historia-grid { grid-template-columns: 4fr 8fr; } }
.historia-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; border-left: 4px solid var(--color-black); padding-left: 1rem; margin-bottom: 2rem; }
.historia-img { width: 100%; height: 600px; object-fit: cover; filter: grayscale(100%) contrast(1.25); }
.historia-heading { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; margin-bottom: 3rem; }
.historia-text-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }

.mision-vision { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .mision-vision { grid-template-columns: 1fr 1fr; } }
.mision-box { background: var(--color-black); color: var(--color-white); padding:40px; }
.vision-box { background: #fff; padding: 40px; border:1px solid #000; }
.mv-tag { display: inline-block; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }
.mision-box .mv-tag { background: var(--color-white); color: var(--color-black); }
.vision-box .mv-tag { background: var(--color-black); color: var(--color-white); }
.mv-heading { font-size: 3rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; line-height: 1; margin-bottom: 2rem; }
.mv-text {font-size:1.25rem;
    color: #666;
    line-height: 1.5; text-align:left; }

.valores-section { padding: 8rem 2rem; background: var(--color-white); }
@media (min-width: 768px) { .valores-section { padding: 8rem 4rem; } }
.valores-header { margin-bottom: 5rem; }
.valores-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 1rem; }
.valores-heading { font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; }
.valores-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--color-zinc-200); }
@media (min-width: 768px) { .valores-grid { grid-template-columns: 1fr 1fr 1fr; } }
.valor-card { padding: 3rem; border-bottom: 1px solid var(--color-zinc-200); transition: background 0.2s; }
.valor-card:hover { background: #f9f9f9; }
@media (min-width: 768px) {
    .valor-card:nth-child(3n+1), .valor-card:nth-child(3n+2) { border-right: 1px solid var(--color-zinc-200); }
}
.valor-icon { font-size: 3rem; margin-bottom: 2rem; }
.valor-title { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.valor-desc { color: var(--color-zinc-600); line-height: 1.6; }

.impacto-section { padding:10rem 2rem 10rem 2rem; background-color:#fff;}
.impacto-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 768px) { .impacto-grid { grid-template-columns: 1fr 1fr 1fr; } }
.impacto-number { font-family:var(--font-main);font-size: clamp(4rem, 10vw, 6.5rem); font-weight: 900; line-height: 1; letter-spacing: -0.04em; color:#0a0909; }
.impacto-label {font-family:var(--font-main); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; color:#525252; margin-top: 1rem; }
.impacto-number::before {
    content: '+';
    position: absolute;
    left: 0;
    font-weight: 700;

}
.testimonial-section { padding: 4rem 2rem; background: var(--color-white); text-align: center; }
.testimonial-quote { font-size: 3rem; color: var(--color-zinc-300); margin-bottom: 3rem; }
.testimonial-text { font-size: 1.9rem!important; font-weight: 900; text-transform: uppercase; line-height: 1.3; letter-spacing: -0.03em; max-width: 900px; margin: 0 auto 3rem; }
.testimonial-cite { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }

.community-cta { padding: 8rem 2rem; background: var(--color-zinc-100); text-align: center; }
.community-cta h2 { font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 3rem; }
.btn-primary-xl { background: var(--color-black); color: var(--color-white); padding: 1.5rem 4rem; font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; border: none; cursor: pointer; transition: background 0.2s, transform 0.1s; display: inline-block; }
.btn-primary-xl:hover { background: var(--color-zinc-800); color: var(--color-white); }
.btn-primary-xl:active { transform: translateY(2px); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero { padding: 4rem 3rem 2rem; text-align:center; }
@media (min-width: 768px) { .services-hero { padding: 4rem 2rem 3rem; } }
.services-badge { display: inline-block; background: var(--color-black); color: var(--color-white); padding: 0.25rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 2rem; }
.services-hero h1 { font-size:clamp(3rem, 7vw, 6rem); line-height: 0.85; font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 3rem; }
.services-hero p {text-align:center;  font-size: 1.4rem; font-weight: 500; line-height: 1.5; color: var(--color-zinc-500); }

.chapter-number { font-size: clamp(5rem, 10vw, 8rem); font-weight: 900; }
.service-section { padding: 8rem 2rem; border-top: 1px solid rgba(0,0,0,0.1); }
@media (min-width: 768px) { .service-section { padding: 8rem 4rem; } }
.service-section.alt-bg { background: #f3f3f4; }
.service-section.dark-bg { background: var(--color-black); color: var(--color-white); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.service-grid.reversed { direction: rtl; }
.service-grid.reversed > * { direction: ltr; }
.service-title { font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 2rem; line-height: 1; }
.service-text { font-size: 1.2rem; line-height: 1.75; margin-bottom: 3rem; }
.service-section.dark-bg .service-text { color: var(--color-zinc-300); }
.tags-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.tag-outline { border: 1px solid var(--color-black); padding: 0.5rem 1.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.tag-filled { background: var(--color-black); color: var(--color-white); padding: 0.5rem 1.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.service-section.dark-bg .tag-outline { border-color: var(--color-white); color: var(--color-white); }
.service-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 3rem; }
.service-section.dark-bg .spec-item { border-left-color: var(--color-white); }
.spec-title { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.spec-desc { font-size: 0.85rem; opacity: 0.6; }
.service-cta-btn { background: var(--color-black); color: var(--color-white); padding: 1.25rem 3rem; font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; border: none; cursor: pointer; transition: background 0.1s; display: inline-block; }
.service-section.dark-bg .service-cta-btn { background: var(--color-white); color: var(--color-black); }
.service-cta-btn:hover { background: var(--color-zinc-800); color: var(--color-white); }
.service-section.dark-bg .service-cta-btn:hover { background: var(--color-zinc-200); }

/* Nueva sección en página SERVICIOS */
.services-cards {
    padding: 2rem 9rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px ) {
        
    .que-hacemos-inner h2{
        font-size:3rem!important;
    }
    .section-tipos h2{
                font-size:3rem!important;

    }
    
    .service-card {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .service-grid {
    border-radius: 20px;
    border: 1px solid #000;
     padding: 0px !important; 
}

.pm{
    padding:20px;
}

}

.service-card {
    padding: 2rem;
    border: 1px solid rgb(0 0 0 / 66%);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    text-align:center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow:1px 4px 3px #0000003b;
}

.service-card.active {
    background: var(--color-black);
    color: var(--color-white);
    
}

.service-card.active .text-outline{
 -webkit-text-stroke: 1px var(--color-white)!important;
}


/* CONTENIDO */

.services-content {
    position: relative;
}

.content-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.content-panel.active {
    display: block;
}

.skw-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem!important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}

.service-grid{
    border-radius:20px;
    border: 1px solid #000;
    padding:30px;
}

.service-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.25);
}


/* inner tabs */
.inner-block {
    display: none;
}

.inner-block.active {
    display: block;
    animation: fadeUp 0.4s ease;
}



.content-section-servicios h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.content-section-servicios h3 {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.content-section-servicios  p {
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-zinc-500);
    margin-bottom: 10px;
}

.content-section-servicios ul {
    margin-left: 17px;
    margin-bottom: 10px;
}


/* GRID DE FOTOS */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.media-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.media-card:hover {
  transform: translateY(-3px);
}

.media-placeholder {
  background: #f3f3f3;
  border: 1px dashed #bbb;
  padding: 40px 10px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.gallery-placeholder {
  background: #f3f3f3;
  border: 1px dashed #bbb;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.media-masonry {
  column-count: 3;
  column-gap: 16px;
}

@media (max-width: 900px) {
  .media-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .media-masonry {
    column-count: 1;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
  background: #000;
}

.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* overlay texto */
.masonry-item span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  font-size: 13px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* hover pro */
.masonry-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.masonry-item:hover {
  transform: translateY(-3px);
}

/* animación suave */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding: 8rem 2rem 6rem; text-align:center; }
@media (min-width: 768px) { .contact-hero { padding: 8rem 4rem 6rem; } }
.contact-hero h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.05em; line-height: 0.85; margin-bottom: 1.5rem; color: var(--color-black); }
.contact-hero p { font-size: 1.2rem;  color: var(--color-zinc-500); line-height: 1.6; }

.contact-grid-wrapper { border-top: 2px solid var(--color-black); }
.contact-grid { display: grid; grid-template-columns: 1fr; padding: 0 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; padding: 0 4rem; } }

.contact-form-col { padding: 4rem 0; }
@media (min-width: 1024px) { .contact-form-col { padding: 4rem 5rem 4rem 0; border-right: 1px solid var(--color-zinc-200); } }
.contact-form-col h2 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 3rem; }

.contact-details-col { padding: 4rem 0; background: #f7f7f7; }
@media (min-width: 1024px) { .contact-details-col { padding: 4rem 3rem; } }
.contact-details-col h2 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em; margin-bottom: 2rem; }

.detail-group { margin-bottom: 2.5rem; }
.detail-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--color-zinc-400); margin-bottom: 0.5rem; }
.detail-value { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; }
.detail-value.underline { text-decoration: underline; text-underline-offset: 0.4rem; }

.socials-list { list-style: none; }
.socials-list li { border-bottom: 1px solid rgba(0,0,0,0.1); }
.socials-list a { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-size: 1.25rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; transition: border-color 0.2s; }
.socials-list a:hover .material-symbols-outlined { transform: rotate(-45deg); }
.socials-list a .material-symbols-outlined { transition: transform 0.2s; }

.map-placeholder { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--color-zinc-200); overflow: hidden; margin-top: 2rem; }
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1) brightness(0.9); opacity: 0.8; }
.map-marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1rem; height: 1rem; background: var(--color-black); }

/* Form field layout helpers */
.form-field { margin-bottom: 3rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--color-zinc-400); margin-bottom: 0.5rem; }

/* Contenedor de servicios oculto inicialmente */
.servicio-info {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: none; /* oculto por defecto */
}

/* Cuando se activa */
.servicio-info.active {
  display: block;       /* mostrarse */
  opacity: 1;           /* aparecer */
  transform: translateY(0); /* subir suavemente */
    animation: fadeInUp 0.6s ease forwards; 
}
/* Keyframes de fadeInUp */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Transición del texto de intro */
#intro-text {
  transition: opacity 0.3s ease;
}


/* Opcional: estilo de botones activos */
.servicio-btn {
  cursor:pointer;
      border-radius: 9px;
      transition:.3s;
}

.servicio-btn:hover {
  cursor:pointer;
  background:#dbdbdb;
  box-shadow: -1px 3px 1px 0px #00000069;
  transform: translateY(-3px);
  transition:all 0.3s ease;
}

.servicio-btn.active {
  background-color: #000;
  color: #fff;
}


/* SKATE WIDGET */
.skate-widget {
    --skw-gray-mid: #000 !important;
    --skw-white: #fff !important;
    
    font-family: 'DM Sans', sans-serif;
    background: var(--color-white)!important;
    color: var(--color-black)!important;
    border: 1px solid #000;
    border-radius: 20px;
}

.skw-hero {
    background: transparent !important;
    border-bottom: 3px solid var(--color-violeta) !important;
}

.skw-hero h1 {
    color: var(--color-black)!important;
}

.skw-hero::before {
    color: rgb(0 0 0 / 22%) !important;
}


.skw-tabs {
    display: flex;
    border-bottom: 1px solid var(--color-violeta)!important;
    background: var(--color-amarillo)!important;
    overflow-x: auto;
    scrollbar-width: none;
}

.skw-tab {
    background: var(--color-white)!important;
    border-bottom-color: var(--color-violeta)!important;
}

.skw-hero p {
    font-size: 1rem!important;
}

.skw-tab:hover {
    color: var(--color-black)!important;
}

.skw-tab.active {
    background: var(--color-black)!important;
    color: var(--color-white)!important;
    border-bottom-color: var(--color-violeta)!important;
}

.skw-section-label{
    color: var(--color-black)!important;
}

.skw-pkg-card {
    background: transparent !important;
    border: 1px solid var(--color-black)!important;
}

.skw-pkg-badge{
 background: var(--color-amarillo)!important;
}

.skw-pkg-features li::before {
    color: var(--color-black)!important;
}

.skw-pkg-price {
    color: var(--color-black)!important;
}

.skw-form-section {
    background: #00000014 !important;
    margin: 30px !important;
    border-radius:20px;
}

.skate-widget select{
    color: #fff !important;
}

.skate-widget select option{
    color: #fff !important;
}

.skw-form-header h3{
        color: var(--color-black)!important;

}
.skw-form-section{
    border-top:1px solid transparent!important;
}

.skw-pkg-card {
    border-color: var(--skw-yellow);
    background: var(--color-violeta) !important;
}

.skw-pkg-card:hover {
    background: var(--color-rosado) !important;
    transform: translateY(-5px);
}

.skw-pkg-card.selected {
    background: var(--color-rosado) !important;
}

.skw-form-header-icon {
    background: var(--color-violeta)!important;
 
}

.day-chip:hover:not(.chip-disabled) {
    border-color: var(--skw-yellow);
    color: #000000 !important;
}

.skw-select-btn:hover {
    border-color: var(--skw-yellow);
    background: var(--color-black) !important;
    color: var(--color-white)!important;
}

.skw-pkg-card.selected .skw-select-btn{
    background: var(--color-black) !important;
     color: var(--color-white)!important;

}

.skw-pkg-card.selected::before{
    background: var(--color-black);
}

.skw-pkg-name{
    color: var(--color-black)!important;
}

.skw-selected-summary{
    font-size: 1.2rem!important;
    color: var(--color-black)!important;
    font-weight: bold;
}


/* pagina eventos */

.ps-section {
    padding: 10rem 4.5rem 10rem 4.5rem;
}

.ps-hero {
    text-align: center;
    margin-bottom: 110px;
}

.ps-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color:#000;
    font-family:var(--font-main);
}

.ps-hero p {
    line-height: 1.8;
    opacity: .9;
    color:#000;
    font-family:var(--font-main);    

}

.people-gallery-slider .people-slider-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.people-gallery-slider .people-gallery-item {
    min-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    display: block !important;
}


.people-gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 14px;
}
.ps-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ps-main-grid{
   display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:start;
}

.ps-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:32px;
    padding:32px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:700px;
}

.ps-label{
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:600;
    color:#888;
}

/* PRODUCTO */

.ps-product-card{
    text-align:center;
}

.ps-product-image{
    flex:1;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding:30px 0;
}

.ps-product-image img {
    width: 100%;
    height: 396px;
    object-fit: cover;
    object-position: right;
}

.ps-card-bottom{
    margin-top:auto;
}

.ps-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 26px;
    border-radius:14px;
    background:#000;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    min-width:180px;
    transition:transform .3s ease;
}

.ps-btn:hover{
    transform:translateY(-3px);
}


/* CLASES */

.ps-classes-header h3{
    font-size:2rem;
    margin-bottom:0;
}

.ps-classes-content{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
    align-items:center;
    flex:1;
    margin-top:20px;
}

.ps-steps{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.ps-step{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding-bottom:18px;
    border-bottom:1px solid #eee;
}

.ps-step span{
    font-size:13px;
    font-weight:700;
    color:#999;
    min-width:28px;
}

.ps-step p{
    margin:0;
    font-size:1rem;
    line-height:1.4;
}


.ps-classes-image img {
    width: 100%;
    height: 313px;
    border-radius: 17px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}


/* MOBILE */

@media(max-width:900px){
    .ps-main-grid{
        grid-template-columns:1fr;
    }

    .ps-classes-content{
        grid-template-columns:1fr;
    }

    .ps-card{
        min-height:auto;
    }
}
.ps-label {
    font-size: 12px;
    opacity: .6;
    letter-spacing: 2px;
}

.ps-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
}

.ps-list {
    padding-left: 18px;
    line-height: 2;
}

.ps-whatsapp {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: white;
}

.ps-skatepark-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
}

.ps-skatepark-text h2{
    color:#000;
    font-family:var(--font-main);
}
.ps-skatepark-text p{
    color:#000;
    font-family:var(--font-main);
}
.ps-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ps-type-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    transition: .3s ease;
    color:#fff;
}

.ps-type-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.18);
}

.ps-type-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.ps-type-card h4,
.ps-type-card ul,
.ps-type-card .ps-btn,
.ps-card-tag {
    padding-left: 22px;
    padding-right: 22px;
}

.ps-card-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: .65;
    margin-top: 20px;
}

.ps-type-card h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 22px;
}

.ps-type-card ul {
    list-style: none;
    padding-bottom: 10px;
}

.ps-type-card ul li {
    margin-bottom: 10px;
    opacity: .9;
    font-size: 14px;
    line-height: 1.5;
}

.ps-type-card .ps-btn {
    margin: 20px 22px 24px;
    width: calc(100% - 44px);
    text-align: center;
    justify-content: center;
    background-color:#fff;
    color:#000;
}

@media (max-width: 900px) {
    .ps-types-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width:768px) {
    .ps-main-grid,
    .ps-skatepark-section,
    .ps-types-grid {
        grid-template-columns: 1fr;
    }

    .ps-hero h1 {
        font-size: 34px;
    }
}

.container-md{
    padding: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.product-page {
    max-width: 1280px;
    margin: auto;
    padding: 80px 20px;
    color: white;
}

.product-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-info {
    position: sticky;
    top: 100px;
    color:#000;
}

.product-label {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .6;
}

.product-info h1 {
    font-size: 42px;
    margin: 15px 0;
    line-height: 1.1;
}

.product-price {
    font-size: 52px;
    font-weight: 700;
    margin-top: 20px;
}

.product-tax {
    opacity: .6;
    margin-bottom: 30px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-extra {
    margin-top: 100px;
    text-align: center;
}

.product-extra h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color:#000;
}

.product-extra p {
    max-width: 700px;
    margin: auto;
    opacity: .8;
    color:#000;
}

.product-benefits {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-box {
    background: #111;
    padding: 30px;
    border-radius: 18px;
}

.ps-btn {
    padding: 16px 20px;
    border-radius: 26px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ps-btn.secondary {
    background: white;
    color: black;
}

.ps-btn.primary {
    background: #111;
    color: white;
    border: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .product-info {
        position: relative;
        top: auto;
    }

    .product-benefits {
        grid-template-columns: 1fr;
    }

    .product-info h1 {
        font-size: 32px;
    }

    .product-price {
        font-size: 40px;
    }
}


.grecaptcha-badge{
    display:none!important;
}