/* ========================================
   BUDOKAN STUDIO - PROFESSIONAL DESIGN
   ======================================== */

/* Reset y Variables */

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;      /* Negro */
    --secondary-color: #f4f6f8;    /* Gris muy suave */
    
    --accent-color: #00AEEF;       /* 🔵 Azul eléctrico del logo */
    --accent-dark: #0077A6;        /* Azul más profundo */
    
    --accent-red: #D72638;         /* 🔴 Rojo del logo */
    --accent-red-dark: #A61B29;

    --text-color: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 120px;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    font-size: 17px;      /* antes ~16px */
    line-height: 1.75;

    font-weight: 400;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ocupa toda la altura de la pantalla */
    margin: 0;
}

.site-main {
    flex: 1; /* Esto empuja el footer hacia abajo */
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.wrapper {
    padding: 120px 0; /* Aumenta el espacio arriba y abajo de cada sección */
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.col-12 {
    flex: 0 0 100%;
    padding: 0 15px;
}

.col-offset {
    flex: 0 0 33.333%;
    padding: 0 15px;
}

.col-content {
    flex: 0 0 66.666%;
    padding: 0 15px;
}

.col-image,
.col-copy {
    flex: 0 0 50%;
    padding: 0 15px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;

    background: transparent;
    padding: 20px 0;

    transform: none !important;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    /* IMPORTANTE: más alto que el header */
    height: 180%;

    z-index: -1;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.4) 65%,
        rgba(0, 0, 0, 0.15) 80%,
        rgba(0, 0, 0, 0) 100%
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.4) 65%,
        rgba(0, 0, 0, 0.15) 80%,
        rgba(0, 0, 0, 0) 100%
    );
}


.site-header::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -2;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.15) 85%,
        ),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}


.site-header.scrolled {
    padding: 15px 0;

    background-color: rgba(0, 0, 0, 0.20);  /* 🔥 más liviano */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


.site-header.scrolled .nav-menu a {
    color: rgba(255, 255, 255, 0.92);
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    text-decoration: none;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    transition: var(--transition);
}

.logo-text:hover {
    color: var(--accent-color);
}

.central-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    transition: var(--transition);
    padding: 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 30px;
}

.mobile-menu nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu nav ul li a:hover {
    color: var(--accent-color);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

#home {
    background-image:
        linear-gradient(rgba(0,0,0,0.43), rgba(0,0,0,0.43)),
        url("../images/plugins-2.jpg");
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.03) 2px, rgba(0, 255, 0, 0.03) 4px);
    pointer-events: none;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero::before {
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
}


.hero-caption {
    margin-top: -6vh;
}

.hero-logo {
    width: clamp(620px, 58vw, 1100px);   /* 🔥 tamaño protagonista */
    margin-bottom: -6px;
    max-width: 92vw;
    filter: brightness(0) invert(1);    /* 🔥 blanco */
    
    opacity: 0.98;
    transform: translateY(-10px);
}


.hero-title {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(30px, 5.2vw, 68px); /* 🔥 más grande */
    font-weight: 100;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-top: -14px;
    opacity: 0.95;
    text-shadow: 0 0 18px rgba(0, 174, 239, 0.35);
}


/* ========================================
   TEXT & IMAGE SECTION
   ======================================== */

.text-and-image-section {
    background-color: var(--white);
    position: relative;
}

.quote-holder {
    padding: 100px 0;
}

.quote-holder blockquote {
    border-left: 3px solid var(--accent-color);
    padding-left: 40px;
    margin: 0;
}

.quote-holder blockquote p {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 30px;
}

.quote-holder blockquote cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 20px;
}

.masked-img-holder {
    display: flex;
    flex-direction: column;
}

.masked-img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.image-caption {
    margin-top: 1px;
    font-size: 10px;
    line-height: 1.2; 
    letter-spacing: 0.4px;
    color: var(--text-light);
    opacity: 0.6;
}


.masked-img-placeholder {
    width: 80%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.masked-img-placeholder::before {
    content: 'BUDOKAN STUDIO';
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    letter-spacing: 4px;
}

/* MANIFIESTO LAYOUT */

.manifesto-row {
    justify-content: center;
}

.manifesto-row .col-image {
    display: flex;
    align-items: flex-start;
}

.manifesto-row .col-copy {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
}

.manifesto-row .masked-img-holder {
    max-width: 520px;
}

.manifesto-row .masked-img-placeholder {
    width: 100%;
    height: 520px;
    border-radius: 12px;
}

.manifesto-row .quote-holder {
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-blocks {
    background-color: var(--secondary-color);
}

.service-heading {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1px;
}

.service-row {
    margin-bottom: 120px;
    align-items: center;
}

.service-row.reverse .col-copy {
    order: -1;
}
.service-row.reverse .col-image {
    flex: 0 0 65%;
}

.service-row.reverse .service-img-holder {
    margin-right: -80px;
}

.service-row {
    flex-wrap: nowrap;
}

.service-img-holder {
    position: relative;
    width: 100%;
    height: 520px;      
    overflow: hidden;
    border-radius: 10px;
}


.service-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;     
    display: block;
    image-rendering: auto;
    image-rendering: smooth;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* SOLO Mastering */
.service-row.reverse .service-img-holder {
    height: 420px;
}

.service-row.reverse .service-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-left .col-copy {
    order: -1;
}

.service-left .col-image {
    order: 1;
}

.img-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.img-placeholder::before {
    content: attr(class);
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.img-mixing::before {
    content: 'MEZCLA';
}

.img-mastering::before {
    content: 'MASTERING';
}

.img-production::before {
    content: 'PRODUCCIÓN';
}

.service-copy-holder {
    padding: 0 60px;
}

.service-copy-holder.align-right {
    text-align: right;
}

.service-copy-holder h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.service-copy {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-copy p {
    margin-bottom: 20px;
}

/* ========================================
   SERVICE LINK – ESTILO PREMIUM
   ======================================== */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 28px;
    border-radius: 10px;

    font-family: 'Gilroy', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: none;

    text-decoration: none;
    color: var(--white);

    background: linear-gradient(
        135deg,
        var(--accent-dark),
        var(--accent-color)
    );

    border: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}


/* Hover elegante */
.service-link:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.35);
}

/* Flecha */
.service-link .arrow {
    color: var(--white);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover .arrow {
    transform: translateX(4px);
}


/* ========================================
   EQUIPMENT SECTION
   ======================================== */

.equipment-section {
    background-color: var(--white);
    text-align: center;
}

.section-heading {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.equipment-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background-color: var(--primary-color);
    color: var(--white);
    margin-bottom: 120px; /* separa visualmente del footer */
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-info p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

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

/* ========================================
   NUEVO FOOTER PROFESIONAL - ESTILO AUDIO
   ======================================== */
.site-footer {
    background-color: #0a0a0a; /* Gris casi negro muy elegante */
    color: #fff;
    padding: 80px 0 40px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    font-family: 'Gilroy', sans-serif; /* Aplicando Gilroy */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Efecto sutil de fondo (Disco/Parlante) */
    background-image: 
        radial-gradient(circle at 0% 100%, rgba(230, 161, 44, 0.03) 0%, transparent 40%),
        repeating-radial-gradient(circle at 0% 100%, transparent 0, transparent 40px, rgba(255,255,255,0.01) 41px, transparent 42px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr; /* 4 columnas como la referencia */
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Estilo de los Títulos de columna */
.footer-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff; /* Blanco como la referencia */
}

/* Estilo de los Textos */
.footer-text, .footer-list li {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6); /* Gris suave */
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cambiando iconos azules a Naranja */
.footer-list i {
    color: var(--accent-color);  /* 🔵 azul Budokan */
    width: 18px;
}


.footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--accent-color);
}



/* Redes Sociales */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    text-shadow: 0 0 12px rgba(0, 174, 239, 0.35);
}


/* Barra inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* Ajuste Responsivo para móviles */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-list li {
        justify-content: center;
    }
}
/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .central-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .service-copy-holder {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .col-offset,
    .col-content,
    .col-image,
    .col-copy {
        flex: 0 0 100%;
    }

    .col-offset {
        display: none;
    }

    .service-row {
        flex-wrap: wrap;
    }

    .service-row .col-image {
        order: 1;
        margin-bottom: 25px;
    }

    .service-row .col-copy {
        order: 2;
    }

    .service-row.reverse .col-copy
    .service-row.reverse .col-image {
        order: initial
    }

    .service-copy-holder {
        padding: 0;
        text-align: left !important;
    }

    .img-placeholder {
        height: 400px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .masked-img-placeholder {
        width: 100%;
        height: 300px;
    }

    body {
    font-size: 18px;
}
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: 36px;
    }

    .quote-holder blockquote {
        padding-left: 20px;
    }

    .quote-holder blockquote p {
        font-size: 18px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* HEADER FONT – GILROY */

.site-header,
.site-header .logo-text,
.site-header .nav-menu a {
    font-family: 'Gilroy', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4,
.site-header,
.btn {
    font-family: 'Gilroy', sans-serif;
}

/* ========================================
   CONTACT GRID + WHATSAPP
   ======================================== */

/* ========================================
   CONTACT FORM - ESTILO REFEFERENCIA
   ======================================== */

/* ========================================
   CONTACT SECTION - DISEÑO FINAL REFORZADO
   ======================================== */

.contact-section {
    background-color: #000;
    /* Fondo con un ligero resplandor azulado en el centro */
    background-image: radial-gradient(circle at center, rgba(0, 50, 50, 0.15) 0%, rgba(0,0,0,1) 100%);
    color: var(--white);
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* El form es un poco más ancho */
    gap: 60px;
    align-items: flex-start;
}

/* Título y texto de la izquierda */
.contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 550px;
}

/* Estilo de los campos del Formulario */
.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.07);
}

/* Botón con Degradado Rojo-Naranja */
/* Botón gradiente AZUL */

.btn-gradient {
    background: linear-gradient(
        135deg,
        var(--accent-dark),
        var(--accent-color)
    );
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.35);
}


/* Tarjeta de WhatsApp (Derecha) */
.whatsapp-card {
    background: #080a0f; /* Color oscuro profundo */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 45px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.wa-icon {
    width: 65px;
    margin-bottom: 20px;
}

.whatsapp-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.whatsapp-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #000;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilo específico para la página de FAQ */
.faq-page {
    padding-top: 150px; /* Para que el header no tape el título */
    padding-bottom: 100px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}


.service-row.wide-image {
        flex-wrap: wrap;
    }

.service-row.wide-image .col-image {
    order: 1;
}

.service-row.wide-image .col-copy {
    order: 2;
}


/* Reutilizamos el estilo de acordeón anterior */
details {
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 15px 25px;
    cursor: pointer;
    transition: 0.3s;
}

details[open] {
    border-color: var(--accent-color);
    background: #fff;
}

summary {
    list-style: none;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary i {
    color: var(--accent-color);
}

/* Espaciado para que el header fijo no tape el título del FAQ */
.faq-main-content {
    padding-top: 120px; /* Ajusta según el alto de tu header */
    min-height: 60vh;   /* Asegura que haya espacio suficiente */
}

/* Estilo de los detalles del FAQ */
.faq-accordion details {
    background: #f8f8f8;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.faq-accordion summary {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

/* ========================================
   FIX PARA HEADER EN PÁGINAS INTERNAS
   ======================================== */

/* Hacemos que el header en FAQ sea siempre negro y visible */
.header-solid {
    background-color: #000000 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px; /* Ajusta según el alto de tu logo */
    display: flex;
    align-items: center;
}

/* Empujamos el contenido hacia abajo para que el header no lo tape */
.faq-page-main {
    padding-top: 140px; /* Espacio suficiente para que el título baje */
    background-color: #ffffff; /* O el color que prefieras para el fondo de las preguntas */
    flex: 1; /* Esto ayuda a que el footer se mantenga abajo */
}

/* Aseguramos que los enlaces del menú sean blancos en el fondo negro */
.header-solid .nav-menu a {
    color: #ffffff !important;
    font-family: 'Gilroy', sans-serif;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
}

.header-solid .logo {
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
}

/* Header transparente sobre hero FAQ */
.faq-page-body .site-header {
    background: transparent !important;
    position: absolute;
}


/* Forzar disposición horizontal del menú */
.faq-page-body .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-page-body .nav-menu {
    display: flex;
    flex-direction: row; /* Asegura que sea horizontal */
    gap: 30px;
    list-style: none;
}

/* Espaciado para que el título no quede bajo el header */
.faq-main-content {
    padding-top: 50px;
    background-color: #fff;
    min-height: 80vh;
}

/* Estilo de la fuente Gilroy para el título */
.faq-main-content h1 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

/* Contenedor de partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* Fondo blanco con un leve tinte gris para que las partículas resalten */
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

/* Ajustes para la legibilidad en FAQ */
.faq-page-body {
    background-color: transparent !important;
}

.faq-list-section {
    background-color: transparent !important;
    padding-top: 0; /* Reducido como pediste */
}

/* Asegurar que los textos de las preguntas sean oscuros para leer sobre blanco */
.faq-accordion details {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #1a1a1a; /* Texto oscuro */
}

.faq-accordion summary {
    color: #000;
}

.faq-content p {
    color: #444;
}

/* --- FIX PARA PARTÍCULAS EN FAQ --- */

/* Contenedor de fondo */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* Fondo gris muy claro para que las partículas blancas resalten */
    background-color: #f4f4f4; 
}

/* Forzar transparencia para ver el fondo */
.faq-page-body, 
.faq-list-section,
.site-main {
    background-color: transparent !important;
}

/* El Hero de FAQ debe ser igual al del index */
.faq-page-body .hero-section {
    position: relative;
    z-index: 1;
}

/* Asegurar que las preguntas sean legibles (Texto Oscuro) */
.faq-accordion details {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    margin-bottom: 15px;
    border-radius: 8px;
}

.faq-accordion summary {
    font-weight: 700;
    color: #000;
    padding: 15px;
}

/* Esto aplica la imagen de fondo también a la página de FAQ */
#home, .faq-hero {

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.faq-hero {
    height: 100vh;
    min-height: 420px;

    background-image:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../images/faq-background.jpg");
    background-size: cover;
    background-position: center;
}


/* Ajuste para que el header sea transparente sobre el hero de FAQ */
.faq-page-body .site-header {
    background-color: transparent;
    position: absolute;
}

.site-footer {
    margin-top: auto;
}
#contacto {
    padding-bottom: 0;
    margin-bottom: 0;
}
#contacto::after {
    content: "";
    display: block;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), #0a0a0a);
}

/* BOTÓN WHATSAPP FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 62px;
    height: 62px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    text-decoration: none;

    color: var(--white);

    background: linear-gradient(
        135deg,
        var(--accent-dark),
        var(--accent-color)
    );

    box-shadow:
        0 10px 30px rgba(0, 174, 239, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08);

    z-index: 9999;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);

    box-shadow:
        0 18px 40px rgba(0, 174, 239, 0.45),
        0 0 0 4px rgba(0, 174, 239, 0.15);
}
.whatsapp-float i {
    transform: translateY(1px); /* centrado óptico */
}


/* Ajuste móvil */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}


.portfolio-section {
    background: #fff;
    padding: 120px 0;
}

.service-copy {
     max-width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.portfolio-item h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.portfolio-item iframe {
    width: 100%;
    height: 166px;
    border-radius: 12px;
}
.logo-svg {
    height: 42px;
    width: auto;
    display: block;

    filter: none
}


.site-branding {
    display: flex;
    align-items: center;
}
.footer-logo-svg {
    width: 300px;   /* prueba este valor */
    height: 300px;  /* ajustable para mantener proporción */
}
.service-row.wide-image .col-image {
    flex: 0 0 55%;
}

.service-row.wide-image .col-copy {
    flex: 0 0 45%;
}

/* ========================================
   SERVICES – FIX MOBILE DEFINITIVO
   ======================================== */
@media (max-width: 768px) {

    /* 🔥 Reset total del row */
    .service-row {
        display: flex;
        flex-direction: column;   /* 💥 apilado vertical */
        flex-wrap: nowrap;
        margin-bottom: 70px;
    }

    /* 🔥 Anular reverse/wide-image */
    .service-row.reverse,
    .service-row.wide-image {
        flex-direction: column;
    }

    /* 🔥 Columnas full width */
    .service-row .col-image,
    .service-row .col-copy {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* 🔥 Imagen SIEMPRE primero */
    .service-row .col-image {
        order: 1;
        margin-bottom: 20px;
    }

    .service-row .col-copy {
        order: 2;
    }

    /* 🔥 Imagen tamaño móvil */
    .service-img-holder {
        height: 240px;
        border-radius: 14px;
    }

    /* 🔥 Texto más cómodo */
    .service-copy-holder {
        padding: 0 12px;
        text-align: center !important;
        padding-bottom: 30px;
    }

    .service-copy-holder h3 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .service-copy {
        font-size: 16px;
        line-height: 1.6;
        max-width: 100%;
    }

    .service-copy p {
        margin-bottom: 14px;
    }

    /* 🔥 Link centrado */
    .service-link {
        justify-content: center;
        font-size: 15px;
    }

    .service-row.reverse .col-image {
        order: 1;   /* 🔥 fuerza imagen arriba */
    }

    .service-row.reverse .col-copy {
        order: 2;
    }
 
}
/* ========================================
   FIX OVERFLOW MOBILE – DEFINITIVO
   ======================================== */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 768px) {

    .row {
        margin: 0;
    }

    .service-row.reverse .service-img-holder {
        margin-right: 0 !important;
    }

    .service-row {
        flex-wrap: nowrap !important;
    }

    .manifesto-row .masked-img-holder {
        max-width: 100%;
    }

    iframe {
        max-width: 100%;
    }
}
/* ========================================
   DROPDOWN SERVICIOS – DESKTOP
   ======================================== */

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    min-width: 220px;
    padding: 10px 0;

    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);

    list-style: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.25s ease;
    z-index: 999;
}

/* Links dropdown */
.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    font-family: 'Gilroy', sans-serif;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(0, 174, 239, 0.08);
    color: var(--accent-color);
}

/* Mostrar en hover */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   DROPDOWN SERVICIOS – MOBILE
   ======================================== */

@media (max-width: 768px) {

    .has-dropdown {
        width: 100%;
    }

    /* 🔥 Reset del dropdown */
    .dropdown-menu {
        position: static;          /* 💥 ya no flotante */
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        max-height: 0;             /* 💥 colapsado */
        overflow: hidden;

        background: none;
        border: none;
        padding: 0;

        transition: max-height 0.35s ease;
    }

    /* 🔥 Estado expandido */
    .has-dropdown.open .dropdown-menu {
        max-height: 300px;         /* suficiente para items */
    }

    /* 🔥 Estilo items */
    .dropdown-menu a {
        font-size: 16px;
        padding: 8px 0 8px 18px;
        color: rgba(255,255,255,0.7);
    }

    .dropdown-menu a:hover {
        background: none;
        color: var(--accent-color);
    }
}

/* ========================================
   DROPDOWN MOBILE – FIX REAL
   ======================================== */

@media (max-width: 768px) {

    .mobile-menu .dropdown-menu {

        position: static;      /* 🔥 clave */
        transform: none;
        left: auto;
        top: auto;

        max-height: 0;         /* 🔥 colapsado */
        overflow: hidden;

        opacity: 1;            /* 🔥 evita invisibilidad desktop */
        visibility: visible;
        pointer-events: auto;

        transition: max-height 0.35s ease;
    }

    .mobile-menu .has-dropdown.open .dropdown-menu {
        max-height: 300px;     /* 🔥 expansión */
    }

    /* Espaciado visual */
    .mobile-menu .dropdown-menu a {
        padding-left: 28px;
        font-size: 15px;
        opacity: 0.85;
    }
}

/* ========================================
   MOBILE DROPDOWN FIX
   ======================================== */

@media (max-width: 1024px) {

    .mobile-menu .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu .has-dropdown.open .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        margin-top: 10px;
    }

    .mobile-menu .dropdown-menu li {
        margin-bottom: 12px;
    }

    .mobile-menu .dropdown-menu a {
        font-size: 16px;
        color: rgba(255,255,255,0.7);
    }
}

/* ========================================
   MOBILE DROPDOWN – ALINEACIÓN CORRECTA
   ======================================== */

@media (max-width: 1024px) {

    .mobile-menu .has-dropdown {
        width: 100%;
    }

    .mobile-menu .dropdown-menu {
        position: static;          /* 🔥 clave → elimina absolute */
        transform: none;           /* 🔥 elimina centrado desktop */
        left: auto;
        top: auto;

        background: transparent;   /* opcional, más limpio visual */
        border: none;
        border-radius: 0;

        padding: 8px 0 0 0;
        margin: 0;

        opacity: 1;                /* ya controlamos con max-height */
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu .dropdown-menu li {
        padding-left: 12px;        /* pequeño sangrado elegante */
    }

    .mobile-menu .dropdown-menu a {
        display: block;
        padding: 6px 0;
    }
}

/* ========================================
   MOBILE DROPDOWN – ALINEACIÓN PERFECTA
   ======================================== */

@media (max-width: 1024px) {

    .mobile-menu .dropdown-menu {
        width: 100%;              /* 🔥 ocupa toda la columna */
        padding-left: 0;          /* 🔥 elimina corrimiento lateral */
        margin-left: 0;
    }

    .mobile-menu .dropdown-menu li {
        padding-left: 0;          /* 🔥 evita sangrado excesivo */
    }

    .mobile-menu .dropdown-menu a {
        padding-left: 0;          /* 🔥 alineación exacta */
        margin-left: 0;
        display: block;
        font-size: 15px;
        opacity: 1;
    }
    .mobile-menu .dropdown-menu a:hover {
    opacity: 1;
    }

    /* Sangrado sutil opcional (PRO LOOK) */
    .mobile-menu .has-dropdown.open .dropdown-menu a {
        padding-left: 12px;
    }
}
.faq-accordion summary {
    position: relative;
    padding-right: 35px;
    cursor: pointer;
}

/* Icono */
.faq-accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--accent-color);
    transition: transform 0.3s ease, content 0.3s ease;
}

/* Cuando está abierto */
.faq-accordion details[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}
.faq-accordion details {
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

/* Estado abierto */
.faq-accordion details[open] {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
    background: #ffffff;
}
.faq-accordion details p {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.25s ease;
}

/* Visible al abrir */
.faq-accordion details[open] p {
    opacity: 1;
    transform: translateY(0);
}
.faq-accordion details:hover {
    border-color: rgba(0, 174, 239, 0.35);
}
.faq-accordion {
    max-width: 820px;
}
.mezcla-hero {
    background-image:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../images/MIX_grande_alto.jpg");
}

.mastering-hero {
    background-image:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../images/MASTERING_1.jpg");
}

.feedback-hero {
    background-image:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../images/MIX_2_bajo.jpg");
}
.curso-hero {
    background-image:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../images/curso-bg.jpg");
}
.home-page .logo-svg {
    filter: brightness(0);   /* 🔥 negro solo home */
}

/* ========================================
   FEEDBACK EXPLAINER
   ======================================== */

.feedback-steps {
    padding: 130px 0;
}

.feedback-steps .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;              /* MÁS separación horizontal */
    margin-top: 70px;
}



.step-item h3 {
    padding: 0 15px;
}

.step-item p {
    font-size: 15.5px;
    line-height: 1.7;
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;

    margin: 0 auto 20px;

    border: 2px solid rgba(0,0,0,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    color: var(--accent-color);
}

/* Pricing */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    text-align: left;
    margin-top: 50px;
}

.pricing-column ul {
    list-style: disc;
    padding-left: 20px;
}

.pricing-column li {
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--text-light);
}

/* Responsive */

@media (max-width: 768px) {

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feedback-explainer {
        padding: 80px 0;
    }
}

/* ========================================
   FEEDBACK INTRO
   ======================================== */

.feedback-intro {
    background-color: var(--white);
    padding: 140px 0 110px;
}

.feedback-headline {
    text-align: center;
    font-size: clamp(28px, 4.2vw, 46px);
    font-weight: 700;
    margin-bottom: 70px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.feedback-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.feedback-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.feedback-text ul {
    margin: 22px 0;
    padding-left: 18px;
}

.feedback-text li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-color);
}

.feedback-highlight {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 10px;
}

.feedback-image img {
    width: 100%;        /* 💥 clave */
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}



.feedback-cta {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 70px;
    color: var(--text-color);
}

/* Responsive */

@media (max-width: 768px) {

    .feedback-intro {
        padding: 90px 0 70px;
    }

    .feedback-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feedback-headline {
        margin-bottom: 40px;
    }

    .feedback-cta {
        font-size: 18px;
        margin-top: 40px;
    }
}

/* ========================================
   MASTERING PAGE
   ======================================== */

.mastering-intro {
    background-color: var(--white);
    padding: 140px 0 100px;
    text-align: center;
}

.mastering-headline {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 18px;
    line-height: 1.3;
}

.mastering-lead {
    font-size: 18px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 60px;
}

.mastering-benefits {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    text-align: left;
}

.mastering-benefits ul {
    margin-top: 18px;
    padding-left: 20px;
}

.mastering-benefits li {
    margin-bottom: 12px;
    font-size: 16px;
}

.benefits-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* PROCESS */

.mastering-process {
    background-color: var(--secondary-color);
    padding: 110px 0;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-top: 60px;
    text-align: left;
}

.process-column ul {
    list-style: disc;
    padding-left: 20px;
}

.process-column li {
    margin-bottom: 14px;
    font-size: 16px;
}

/* Responsive */

@media (max-width: 768px) {

    .mastering-benefits {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mastering-lead {
        font-size: 17px;
    }
}

/* ========================================
   MASTERING DELIVERY
   ======================================== */

.mastering-delivery {
    background-color: #0b0d12;
    color: var(--white);
    padding: 120px 0;
    text-align: center;

    /* 🔥 Fondo técnico sutil */
    background-image:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../images/audio-bg-dark.jpg");
    background-size: cover;
    background-position: center;
}

.delivery-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 20px;
    font-weight: 700;
}

.delivery-divider {
    width: 120px;
    height: 2px;
    margin: 0 auto 60px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-color),
        transparent
    );

    opacity: 0.6;
}

.delivery-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.delivery-item {
    flex: 1 !important;
    width: auto !important;
    max-width: none !important;
}

.delivery-item p {
    font-size: 15.5px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.delivery-spec {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

/* Íconos */

.delivery-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;

    margin: 0 auto 22px;

    border: 2px solid rgba(255,255,255,0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    color: var(--accent-color);

    box-shadow: 0 0 18px rgba(0,174,239,0.15);
}

/* Responsive */

@media (max-width: 768px) {

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mastering-delivery {
        padding: 90px 0;
    }
}

/* ========================================
   MASTERING STEPS — EXTRA PRO
   ======================================== */

.mastering-steps-pro {
    position: relative;
    background-color: var(--white);
    padding: 110px 0 110px;
    text-align: center;
}

.mastering-steps-pro .steps-title {
    margin-bottom: 70px;
}

/* Línea horizontal glow */

.steps-line {
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,174,239,0.45),
        rgba(0,174,239,0.25),
        transparent
    );

    opacity: 0.35;
}

/* Grid */

.mastering-steps-pro .steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

/* Step */

.mastering-steps-pro .step {
    position: relative;
    padding: 30px 12px 10px;
    transition: transform 0.45s ease;
}

/* Micro parallax */

.mastering-steps-pro .step:hover {
    transform: translateY(-1x);
}

/* Número fantasma */

.mastering-steps-pro .step-number {
    position: absolute;
    top: -60px;   /* ← AJUSTA AQUÍ */
    left: 50%;
    transform: translateX(-50%);

    font-size: 52px;
    font-weight: 700;
    color: rgba(0,0,0,0.06);

    pointer-events: none;
    transition: all 0.35s ease;
}


/* Número hover */

.mastering-steps-pro .step:hover .step-number {
    color: rgba(0,174,239,0.18);
    transform: translateX(-50%) translateY(-2px);
}

/* Icono */

.mastering-steps-pro .step-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;

    margin: 0 auto 14px;

    border: 2px solid rgba(0,0,0,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: var(--accent-color);

    background-color: var(--white);
    position: relative;
    z-index: 2;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Icono hover premium */

.mastering-steps-pro .step:hover .step-icon {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 
        0 12px 28px rgba(0,174,239,0.25),
        0 0 22px rgba(0,174,239,0.35);
}

/* Títulos */

.mastering-steps-pro h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.mastering-steps-pro p {
    font-size: 13.5px;
    color: var(--text-light);
}

/* Responsive */

@media (max-width: 1024px) {

    .mastering-steps-pro .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .steps-line {
        display: none;
    }
}

@media (max-width: 768px) {

    .mastering-steps-pro {
        padding: 90px 0;
    }

    .mastering-steps-pro .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-number {
        font-size: 34px;
        top: -28px;
    }
}

/* ========================================
   MASTERING PRICING
   ======================================== */

.mastering-pricing {
    background-color: var(--white);
    padding: 120px 0;
}

.mastering-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px;
    align-items: start;
    margin-top: 22px;
}

.mastering-pricing .pricing-column:last-child {
    transform: translateY(18px);
}

.mastering-pricing h3 {
    font-size: 20px;
    margin: 28px 0 12px;
}

.mastering-pricing ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 18px;
}

.mastering-pricing li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}

.mastering-pricing p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 6px;
}

/* Responsive */

@media (max-width: 768px) {

    .mastering-pricing {
        padding: 80px 0;
    }

    .mastering-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ========================================
   MIXING PROCESS SECTION
   ======================================== */

.mixing-process {
    background-color: var(--white);
    padding: 120px 0;
}

.mixing-heading {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.mixing-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.mixing-text ul {
    list-style: disc;
    padding-left: 22px;
}

.mixing-text li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.mixing-result {
    margin-top: 28px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-color);
}

.mixing-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}


/* Responsive */

@media (max-width: 768px) {

    .mixing-process {
        padding: 80px 0;
    }

    .mixing-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mixing-heading {
        text-align: left;
        font-size: 24px;
        margin-bottom: 35px;
    }
}

/* ========================================
   MIXING DELIVERY SECTION
   ======================================== */

.mixing-delivery {
    background-color: #050505;
    padding: 80px 0;
    color: var(--white);
    position: relative;
}

.delivery-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 70px;
    letter-spacing: -0.5px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.delivery-item {
    text-align: center;
    position: relative;
}

.delivery-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    margin-bottom: 35px;
}

.delivery-item h3 {
    font-size: 22px;
    margin-bottom: 22px;
}

.delivery-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255,255,255,0.35);

    font-size: 26px;
    color: var(--accent-color);
}

.delivery-item p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 420px;
    margin: 0 auto;
}

/* Responsive */

@media (max-width: 768px) {

    .mixing-delivery {
        padding: 80px 0;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .delivery-heading {
        margin-bottom: 45px;
        font-size: 26px;
    }
}

/* ========================================
   MIXING STEPS SECTION
   ======================================== */

.mixing-steps {
    background-color: var(--white);
    padding: 10px 0 110px; 
    text-align: center;
    position: relative;
}

.steps-heading {
    font-size: 30px;
    margin-bottom: 65px;
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
}

.step-item {
    max-width: 380px;
    margin: 0 auto;
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 52px;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    z-index: 0;
}

.step-icon {
    width: 105px;
    height: 105px;
    border-radius: 50%;

    margin: 0 auto 22px;

    border: 2px solid rgba(0,0,0,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 40px;          /* 🔥 icono más visible */
    color: var(--accent-color);

    box-shadow: 0 0 22px rgba(0,174,239,0.18); /* glow sutil */
}


.step-item h3 {
    font-size: 15.5px;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-light);
    max-width: 160px;
    margin: 0 auto;
}

/* Responsive */

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }
}

@media (max-width: 768px) {

    .mixing-steps {
        padding: 70px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-number {
        font-size: 42px;
        top: -50px;
    }
}

/* ========================================
   MIXING PRICING
   ======================================== */

.mixing-pricing {
    background-color: var(--white);
    padding: 120px 0;
}

.mixing-pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px;
    margin-top: 55px;
}

.mixing-pricing h3 {
    font-size: 20px;
    margin: 28px 0 12px;
}

.mixing-pricing ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 18px;
}

.mixing-pricing li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}

/* Ajuste alineación derecha */

.mixing-pricing .pricing-column:last-child {
    margin-top: 22px;
}

/* Responsive */

@media (max-width: 768px) {

    .mixing-pricing {
        padding: 80px 0;
    }

    .mixing-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mixing-pricing .pricing-column:last-child {
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .delivery-grid {
        flex-direction: column;
        gap: 35px; /* opcional, un poco menos de espacio en móvil */
    }

}

.course-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 18px;

    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;

    color: var(--accent-color);
    border: 1px solid rgba(0,174,239,0.35);
    border-radius: 30px;

    background: rgba(0,174,239,0.08);
}

.course-duration {
    padding: 110px 0;
    text-align: center;
    background: var(--white);
}

.duration-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.duration-item i {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.course-pricing {
    background: #050505;
    color: var(--white);
    padding: 120px 0;
}

.course-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.course-price-card {
    background: #0b0d12;
    border-radius: 18px;
    padding: 38px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: transform 0.35s ease;
}

.course-price-card:hover {
    transform: translateY(-6px);
}

.course-price-card.featured {
    border: 1px solid rgba(0,174,239,0.4);
    box-shadow: 0 0 25px rgba(0,174,239,0.15);
}

.price {
    font-size: 34px;
    font-weight: 700;
    margin: 12px 0 2px;
}

.course-testimonial {
    padding: 110px 0;
    text-align: center;
    background: var(--white);
}

.course-testimonial blockquote {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto 18px;
}

.course-faq {
    padding: 110px 0;
    background: var(--secondary-color);
}

@media (max-width: 768px) {

    .duration-grid,
    .course-pricing-grid {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   MIXING STEPS — WOW (SCOPED)
   ======================================== */

.mixing-steps {
    position: relative;
    background-color: #050505;
    padding: 130px 0 120px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.mixing-steps .steps-heading {
    font-size: 32px;
    margin-bottom: 35px;
    position: relative;
    color: var(--white);
}

/* Línea glow debajo del título */

.mixing-steps .steps-heading::after {
    content: "";
    display: block;
    margin: 18px auto 0;

    width: 180px;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        var(--accent-color),
        transparent
    );

    opacity: 0.7;
}

.mixing-steps .steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}
.mixing-steps .step-item {
    position: relative;

    background: rgba(15,18,24,0.85);
    backdrop-filter: blur(6px);

    border-radius: 18px;
    padding: 55px 22px 32px;

    border: 1px solid rgba(255,255,255,0.06);

    transition: transform 0.45s ease, box-shadow 0.45s ease, border 0.45s ease;
}
.mixing-steps .step-item:hover {
    transform: translateY(-10px) scale(1.02);

    border: 1px solid rgba(0,174,239,0.35);

    box-shadow:
        0 25px 45px rgba(0,0,0,0.55),
        0 0 28px rgba(0,174,239,0.12);
}
.mixing-steps .step-number {
    position: absolute;
    top: -45px;   /* 🔥 más arriba */
    left: 50%;
    transform: translateX(-50%);

    font-size: 54px;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
}

.mixing-steps .step-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255,255,255,0.25);
    background-color: #050505;

    font-size: 28px;
    color: var(--accent-color);

    box-shadow:
        0 0 16px rgba(0,174,239,0.25),
        inset 0 0 12px rgba(0,174,239,0.08);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mixing-steps .step-item:hover .step-icon {
    transform: translateY(-4px);

    box-shadow:
        0 0 24px rgba(0,174,239,0.45),
        inset 0 0 16px rgba(0,174,239,0.18);
}
.mixing-steps .step-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--white);
}

.mixing-steps .step-item p {
    font-size: 13.8px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    max-width: 190px;
    margin: 0 auto;
}
@media (max-width: 992px) {

    .mixing-steps .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {

    .mixing-steps {
        padding: 85px 0;
    }

    .mixing-steps .steps-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

}

/* ========================================
   FEEDBACK – STEPS DARK
   ======================================== */

.feedback-steps {
    background-color: #050505;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}
.feedback-steps .step-item {
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
}

.feedback-steps .step-item p {
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 340px;
    margin: 0 auto;
    text-wrap: balance;
}

.feedback-steps h2 {
    color: var(--white);
    margin-bottom: 70px;
}
.feedback-steps .step-item h3 {
    color: var(--white);
}

.feedback-steps .step-item p {
    color: rgba(255,255,255,0.65);
}

.feedback-steps .step-icon {
    border: 2px solid rgba(255,255,255,0.25);
    background-color: #050505;
    color: var(--accent-color);

    box-shadow: 0 0 18px rgba(0,174,239,0.18);
}
.feedback-steps .step-number {
    color: rgba(255,255,255,0.06);
}

.feedback-pricing {
    background-color: var(--white);
    padding: 40px 0 120px;
}

.feedback-pricing .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-column li {
    font-size: 16px;
    line-height: 1.7;
}

/* ========================================
   PRODUCTION STAGES — WOW VERSION
   ======================================== */

.production-stages {
    background: var(--white);
    padding: 140px 0;
    text-align: center;
}

.stages-intro {
    max-width: 760px;
    margin: 0 auto 90px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Contenedor general */
.stages-wrapper {
    position: relative;
    margin-bottom: 50px;
}

/* Línea conectora */
.stages-line {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,0,0,0.12),
        transparent
    );

     transform: translateY(-40px);  /* 🔥 sube sin pelear layout */
}

/* Grid */
.stages-visual {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

/* Card */
.stage {
    background: white;
    border-radius: 16px;
    padding: 26px 18px 22px;
    border: 1px solid rgba(0,0,0,0.08);

    transition: transform 0.35s ease,
                box-shadow 0.35s ease,
                border 0.35s ease;
}

/* Número */
.stage span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 14px;
}

/* Título */
.stage h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Texto */
.stage p {
    font-size: 13.8px;
    line-height: 1.5;
}

/* Etapas apagadas */
.stage.muted {
    opacity: 0.35;
    background: rgba(0,0,0,0.02);
}

.stage.muted span {
    background: rgba(0,0,0,0.06);
}

/* Etapas Budokan */
.stage.active {
    background: linear-gradient(
        135deg,
        var(--accent-dark),
        var(--accent-color)
    );

    color: white;
    border: none;

    box-shadow: 0 14px 35px rgba(0,174,239,0.28);
}

.stage.active span {
    background: rgba(255,255,255,0.22);
    color: white;
}

/* Hover WOW */
.stage:hover {
    transform: translateY(-15px);
}

.stage.active:hover {
    box-shadow: 0 18px 45px rgba(0,174,239,0.4);
}

/* Texto final */
.stages-outro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {

    .stages-visual {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stages-line {
        display: none;
    }

    .stage {
        opacity: 1 !important;
    }
}

/* ========================================
   ABOUT / QUIÉNES SOMOS
   ======================================== */

.about-intro {
    padding: 90px 0 90px;
    text-align: center;
}

.about-main-image img {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    margin-bottom: 50px;
}

.about-text {
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Perfil */

.about-profile {
    padding: 40px 0 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-profile-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.about-profile-text h3 {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-profile-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.about-contact {
    margin-top: 25px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
}

/* ========================================
   ABOUT PROFILE — VERTICAL LAYOUT
   ======================================== */

.about-profile {
    padding: 60px 0 140px;
}

.about-profile-vertical {
    max-width: 760px;
    margin: 0 auto;
}
.about-profile-text {
    text-align: left;   /* 🔥 ordena el bloque */
}
.about-profile-text h3,
.profile-role,
.about-contact {
    text-align: center;
}

.about-profile-image img {
    width: 100%;
    max-width: 260px;
    border-radius: 50%;
    margin-bottom: 28px;

    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.about-profile-text h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.profile-role {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 32px;
}

.about-profile-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 64px;

    text-align: justify;
    text-justify: inter-word;       

    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens:     auto;
}



.about-contact {
    margin-top: 25px;
    font-weight: 600;
}

.footer-credit {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 6px;
}

/* ========================================
   PORTFOLIO – MOBILE STACK
   ======================================== */

@media (max-width: 768px) {

    .portfolio-grid {
        grid-template-columns: 1fr;   /* 💥 1 sola columna */
        gap: 35px;                    /* más compacto */
    }

    .portfolio-item {
        text-align: center;           /* opcional, se ve elegante */
    }

    .portfolio-item h3 {
        font-size: 20px;
    }

    .portfolio-item p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .portfolio-item iframe {
        height: 170px;                /* un poquito más alto */
        border-radius: 14px;
    }
}
@media (max-width: 768px) {

    .portfolio-item {
        background: #f8f8f8;
        padding: 18px;
        border-radius: 18px;
    }
}

/* ========================================
   FEEDBACK PRICING – MOBILE FIX
   ======================================== */

@media (max-width: 768px) {

    .pricing-grid {
        grid-template-columns: 1fr;   /* 💥 apilado */
        gap: 25px;
    }

    .pricing-column {
        background: #f8f8f8;
        padding: 20px;
        border-radius: 16px;
    }

    .pricing-column ul {
        padding-left: 18px;
    }

    .pricing-column li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}
/* ========================================
   FEEDBACK STEPS – MOBILE FIX
   ======================================== */

@media (max-width: 768px) {

    .steps-grid {
        grid-template-columns: 1fr;   /* 💥 vertical */
        gap: 30px;
    }

    .step-item {
    height: auto !important;
    min-height: unset !important;
}

    .step-item {
        height: auto !important;
        min-height: unset !important;
    }


    .step-item h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .step-item p {
        font-size: 15px;
        line-height: 1.6;
    }

    .step-icon {
        font-size: 26px;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {

    .step-item,
    .pricing-column {
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }
}
/* ========================================
   FEEDBACK STEPS – MOBILE FINAL FIX
   ======================================== */

@media (max-width: 768px) {

    .feedback-steps .steps-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .feedback-steps .step-item {

        background: rgba(15,18,24,0.9);   /* 🔥 oscuro elegante */
        border-radius: 18px;
        padding: 26px 18px;

        border: 1px solid rgba(255,255,255,0.06);

        height: auto;
        min-height: unset;

        overflow: visible;
    }

    .feedback-steps .step-item p {
        max-width: 100%;
    }
    .feedback-steps,
    .feedback-steps .container,
    .feedback-steps .steps-grid {
        overflow: visible;
    }
}
@media (max-width: 768px) {

    .feedback-image img {
        width: 100%;
        max-width: 100%;
    }
}
