/* ===== IMPORTAR FUENTES ===== */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --primary-dark: #0a192f;
    --primary-blue: #113254;
    --primary-medium: #233554;
    --primary-light: #64ffda;
    --accent-blue: #57cbff;
    --text-white: #e6f1ff;
    --text-gray: #8892b0;
    --text-light: #ccd6f6;
    --orange-start: #FF6600;
    --orange-end: #ff944d;
    --orange-gradient: linear-gradient(90deg, var(--orange-start), var(--orange-end));
    --shadow-light: 0 5px 15px rgba(100, 255, 218, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-hover: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Play', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Títulos con Oswald */
h1, h2, h3, h4, h5, h6, .logo, .logo span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Descripciones y subtítulos con Play */
p, .card-description, .card__descripcion, .mvv-description, 
.team-description, .leader-bio, .contact-details p,
.portfolio-subtitle, .disruptive-subtitle, .card-expertise,
.form-note, .footer-info p, .footer-links a, .footer-services a,
.footer-contact li, .contact-form label, .contact-form input,
.contact-form textarea, .btn, .btn-nav, .contact-link,
.btn-whatsapp, .leader-stat-label, .card-role {
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-hover);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-hover);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 102, 0, 0.2);
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.95);
    transition: var(--transition-hover);
    padding: 20px 0;
    border-bottom: 2px solid transparent;
    border-image: var(--orange-gradient);
    border-image-slice: 1;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
    background-color: rgba(10, 25, 47, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif !important;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.logo span {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-hover);
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-hover);
    position: relative;
    font-size: 1rem;
    font-family: 'Play', sans-serif;
}

.nav-links a:hover {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--orange-gradient);
    bottom: -5px;
    left: 0;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--orange-gradient);
    color: var(--primary-dark) !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Play', sans-serif;
    transition: var(--transition-hover);
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
    color: white    !important;
}

.btn-nav:hover::before {
    left: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-hover);
}

.mobile-menu-btn:hover {
    color: var(--orange-start);
    transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: #F5F5F5;
    margin-bottom: 30px;
    max-width: 90%;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition-hover);
    border: 3px solid transparent;
    border-image: var(--orange-gradient);
    border-image-slice: 1;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 50px rgba(255, 102, 0, 0.3);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-image: var(--orange-gradient);
    border-image-slice: 1;
    border-radius: 20px;
    z-index: -1;
    animation: moveBorder 3s ease-in-out infinite;
}

@keyframes moveBorder {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(3px, -3px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-hover);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Play', sans-serif;
}

.btn-primary {
    background: var(--orange-gradient);
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--orange-gradient);
    bottom: -15px;
    left: 20%;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 25px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

/* ===== DISRUPTIVE AGENCY SECTION - CORREGIDO ===== */
.disruptive-agency {
    background-image: url('../img/monte_olivia.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    width: 100%;
    padding: 0;
    min-height: 100vh;
}

.disruptive-agency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* opacidad reducida de 0.7 a 0.5 para mejor visibilidad */
    z-index: 0;
}

@media (max-width: 768px) {
    .disruptive-agency {
        background-image: url('../img/monte_olivia_celu.jpg');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        min-height: 100vh;
    }
}

.disruptive-agency .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.disruptive-header-box {
    background: rgba(255, 255, 255, 0.98);
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 102, 0, 0.3);
    border-radius: 30px;
    position: relative;
    transform: translateY(30px);
    border: 4px solid transparent;
    background-clip: padding-box;
}

.disruptive-header-box::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: var(--orange-gradient);
    border-radius: 32px;
    z-index: -1;
}

.disruptive-header-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--orange-gradient);
    border-radius: 32px;
    z-index: -2;
    filter: blur(15px);
    opacity: 0.5;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; filter: blur(15px); }
    50% { opacity: 0.8; filter: blur(20px); }
}

.disruptive-header-box * {
    position: relative;
    z-index: 3;
}

.disruptive-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #0a192f !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 102, 0, 0.2);
    position: relative;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.disruptive-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange-gradient);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.disruptive-header-box:hover .disruptive-title::after {
    width: 80px;
}

.disruptive-subtitle {
    font-family: 'Play', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #333333 !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.disruptive-cards-wrapper {
    width: 100%;
    padding: 100px 20px 90px;
    position: relative;
}

.disruptive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    perspective: 1000px;
}

.disruptive-card {
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.9) 0%, rgba(17, 34, 64, 0.95) 100%);
    border-radius: 30px;
    padding: 35px 25px 30px;
    transition: var(--transition-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 102, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    text-align: center;
    transform-style: preserve-3d;
}

.disruptive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange-gradient);
    transform: translateX(-100%);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.disruptive-card:hover::before {
    transform: translateX(100%);
}

.disruptive-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: var(--orange-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.disruptive-card:hover::after {
    opacity: 1;
}

.disruptive-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 50px rgba(255, 102, 0, 0.4), 0 0 0 2px rgba(255, 102, 0, 0.5);
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 30px;
    padding: 20px;
    transition: var(--transition-hover);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 102, 0, 0.3), transparent 70%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.disruptive-card:hover .card-icon {
    background: rgba(255, 102, 0, 0.2);
    transform: scale(1.05);
    border-color: var(--orange-start);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.disruptive-card:hover .card-icon::after {
    opacity: 1;
    transform: scale(1.1);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-hover);
}

.disruptive-card:hover .card-icon img {
    transform: scale(1.08);
}

.disruptive-card .card-title {
    font-size: 1.3rem;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1.4;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    text-align: center;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.disruptive-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--orange-gradient);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.disruptive-card:hover .card-title::after {
    width: 100px;
}

.card-description {
    flex: 1;
    margin-top: 10px;
    text-align: left;
    padding: 0 5px;
}

.card-description p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.6;
    transition: var(--transition-hover);
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 102, 0, 0.2);
    padding-bottom: 8px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.disruptive-card:hover .card-description p {
    color: #ffffff;
    transform: translateX(5px);
    border-bottom-color: rgba(255, 102, 0, 0.4);
}

.card-description p::before {
    content: '▹';
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 12px;
    font-size: 1.2rem;
    opacity: 0.9;
    transition: var(--transition-hover);
}

.disruptive-card:hover .card-description p::before {
    transform: scale(1.1);
}

.card-description p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a1a2f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
    animation: floatParticles 20s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(-5px, 15px); }
    75% { transform: translate(-15px, -5px); }
}

.portfolio-main-title {
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--orange-start) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.portfolio-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

/* ===== METODOLOGÍA SECTION ===== */
.metodologia {
    width: 100%;
    padding: 5rem 1.5rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.metodologia::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite;
}

.metodologia::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 15s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(50px, -30px); }
    50% { transform: translate(-30px, 50px); }
    75% { transform: translate(30px, 30px); }
}

.metodologia-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.metodologia__titulo {
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #0a192f;
    text-align: center;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.metodologia__titulo::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--orange-gradient);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.metodologia__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    perspective: 1000px;
}

.card {
    display: flex;
    gap: 1.2rem;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
    transform: translateX(3px);
}

.card__numero {
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.9;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: flex-start;
    min-width: 70px;
    justify-content: flex-end;
    text-shadow: 2px 2px 0 rgba(255, 102, 0, 0.2);
    transition: var(--transition-hover);
    font-family: 'Play', sans-serif;
}

.card:hover .card__numero {
    transform: scale(1.05);
    text-shadow: 3px 3px 0 rgba(255, 102, 0, 0.2);
}

.card__contenido {
    background: linear-gradient(145deg, #0A2540 0%, #0d2e4a 100%);
    border-radius: 15px;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 102, 0, 0.2);
    transition: var(--transition-hover);
    position: relative;
    overflow: hidden;
}

.card__contenido::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.15), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.card__contenido:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(255, 102, 0, 0.3), 0 0 0 2px rgba(255, 102, 0, 0.3);
}

.card__contenido:hover::before {
    left: 100%;
}

.card__icono {
    font-size: 2.2rem;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
    line-height: 1;
    transition: var(--transition-hover);
}

.card:hover .card__icono {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.4));
}

.card__titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-hover);
    font-family: 'Oswald', sans-serif;
}

.card:hover .card__titulo {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card__descripcion {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    transition: color 0.3s ease;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.card:hover .card__descripcion {
    color: #ffffff;
}

/* ===== MISSION, VISION, VALUES SECTION ===== */
.mission-vision-values {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    perspective: 1000px;
}

.mvv-card {
    background: linear-gradient(145deg, #112240 0%, #0a1a2f 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-hover);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 102, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--orange-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.mvv-card:hover::after {
    opacity: 1;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(255, 102, 0, 0.3), 0 0 0 2px rgba(255, 102, 0, 0.3);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--orange-start);
    transition: var(--transition-hover);
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.mvv-card:hover .mvv-icon {
    background: var(--orange-gradient);
    color: #ffffff;
    transform: scale(1.05) rotate(360deg);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.mvv-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.mvv-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--orange-gradient);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mvv-card:hover .mvv-title::after {
    width: 60px;
}

.mvv-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.mvv-card:hover .mvv-description {
    color: #ffffff;
}

/* ===== TEAM SECTION ===== */
.team {
    background: #0a192f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite;
}

.team::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 15s ease-in-out infinite reverse;
}

.team-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange-start) !important;
    margin-bottom: 15px;
    padding: 6px 18px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 30px;
    border: 1px solid var(--orange-start);
    font-family: 'Play', sans-serif;
}

.team-title {
    font-size: clamp(2rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.team-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #8892b0;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

/* ===== TEAM LEADER CARD ===== */
.team-leader {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.leader-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: start;
    background: linear-gradient(145deg, #112240 0%, #0a192f 100%);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 40px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 102, 0, 0.2);
    transition: var(--transition-hover);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: var(--orange-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.leader-card:hover::before {
    opacity: 1;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -20px rgba(255, 102, 0, 0.3), 0 0 0 2px rgba(255, 102, 0, 0.3);
}

.leader-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.leader-avatar-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.leader-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    border: 4px solid rgba(255, 102, 0, 0.3);
    transition: var(--transition-hover);
}

.leader-initials {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.avatar-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a192f;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.leader-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leader-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leader-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    background: var(--orange-gradient);
    padding: 8px 16px;
    border-radius: 25px;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    font-family: 'Play', sans-serif;
}

.leader-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
}

.leader-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #8892b0;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    margin: 0;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 102, 0, 0.3);
}

.expertise-tag {
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: var(--orange-start);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-hover);
    font-family: 'Play', sans-serif;
}

.expertise-tag:hover {
    background: var(--orange-gradient);
    color: #ffffff;
    border-color: var(--orange-start);
    transform: translateY(-2px);
}

.leader-stats {
    display: flex;
    gap: 40px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 102, 0, 0.3);
}

.leader-stat {
    text-align: left;
}

.leader-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
}

.leader-stat-label {
    font-size: 0.8rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

/* ===== TEAM GRID CARDS ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.team-card {
    background: linear-gradient(145deg, #112240 0%, #0a192f 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 102, 0, 0.15);
    transition: var(--transition-hover);
    position: relative;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: var(--orange-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -10px rgba(255, 102, 0, 0.3), 0 0 0 2px rgba(255, 102, 0, 0.3);
}

.card-header {
    position: relative;
    z-index: 2;
    padding: 25px 20px 15px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-bottom: 1px dashed rgba(255, 102, 0, 0.2);
}

.card-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
    border: 3px solid rgba(255, 102, 0, 0.3);
    transition: var(--transition-hover);
}

.team-card:hover .card-avatar {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5);
}

.avatar-initials {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.avatar-badge-small {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #64ffda, var(--orange-start));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #0a192f;
    box-shadow: 0 4px 12px rgba(100, 255, 218, 0.3);
    border: 2px solid #0a192f;
}

.card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.card-role {
    font-size: 0.8rem;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Play', sans-serif;
    margin-bottom: 10px;
}

.card-expertise-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 102, 0, 0.2);
}

.tag {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: var(--orange-start);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Play', sans-serif;
    transition: var(--transition-hover);
}

.team-card:hover .tag {
    background: rgba(255, 102, 0, 0.2);
    border-color: var(--orange-start);
}

.card-bio {
    font-size: 0.9rem;
    color: #8892b0;
    line-height: 1.5;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    flex-grow: 1;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf5 100%);
    color: #0a192f;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    border-radius: 50%;
    animation: moveGradient 18s ease-in-out infinite alternate;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 102, 0, 0.04) 0%, transparent 50%);
    border-radius: 50%;
    animation: moveGradient 15s ease-in-out infinite alternate-reverse;
    z-index: 0;
}

@keyframes moveGradient {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(3%, 3%) scale(1.05);
    }
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title h2 {
    color: #0a192f;
}

.contact .section-title h2::after {
    background: var(--orange-gradient);
}

.contact .section-title p {
    color: #0a192f;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: 1000px;
}

.contact-card {
    background: #113254;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition-hover);
    border: 1px solid rgba(255, 102, 0, 0.15);
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.1);
    border-color: transparent;
    background: #113254;
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--orange-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--orange-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: var(--transition-hover);
}

.contact-card:hover .contact-icon {
    transform: scale(1.05) rotate(360deg);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #e4e7ec;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.contact-details p {
    color: #cecfd2;
    margin-bottom: 5px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-link {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-hover);
    font-family: 'Play', sans-serif;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--orange-gradient);
    bottom: -2px;
    left: 0;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-link:hover::after {
    width: 100%;
}

.btn-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-hover);
    margin-top: 8px;
    font-size: 0.85rem;
    font-family: 'Play', sans-serif;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.contact-form-container {
    background: #113254;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 102, 0, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-hover);
}

.contact-form-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--orange-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.contact-form-container:hover::after {
    opacity: 1;
}

.contact-form-container:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
    margin-bottom: 25px;
    text-align: center;
}

.contact-form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #f1f6fd;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.contact-form-header p {
    color: #e0e2e6;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #e3e6eb;
    font-size: 0.9rem;
    font-family: 'Play', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    background: var(--primary-dark) !important;
    border: 1px solid rgba(255, 102, 0, 0.3);
    color: #ffffff !important;
    font-family: 'Play', sans-serif;
    transition: var(--transition-hover);
    font-size: 0.95rem;
    font-weight: 700;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange-start);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
    transform: translateY(-1px);
    background: var(--primary-blue) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.form-note {
    margin-top: 0;
    font-size: 0.8rem;
    color: #beb7b7;
    text-align: center;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-dark);
    padding: 60px 0 25px;
    border-top: 1px solid rgba(255, 102, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-info .logo {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: inline-block;
    color: #FFFFFF;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-info .logo span {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700;
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 280px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--orange-gradient);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-hover);
    font-family: 'Play', sans-serif;
    font-weight: 700;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-services a:hover {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-contact i {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: 18px;
    transition: var(--transition-hover);
    font-size: 0.9rem;
}

.footer-contact li:hover i {
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 102, 0, 0.15);
    text-align: center;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.footer-credits {
    color: var(--orange-start);
    letter-spacing: 2px;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== HOVER EFFECTS ADICIONALES ===== */
.disruptive-card,
.team-card,
.mvv-card,
.contact-card {
    cursor: pointer;
}

h1, h2, h3 {
    transition: var(--transition-hover);
}

h1:hover, h2:hover, h3:hover {
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .disruptive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .leader-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .leader-left {
        margin-bottom: 30px;
    }
}

@media (max-width: 1024px) {
    .disruptive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leader-card {
        gap: 30px;
    }
    
    .leader-stats {
        justify-content: center;
    }
    
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image img {
        aspect-ratio: 16 / 10;
        width: 100%;
        height: auto;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .metodologia__grid {
        grid-template-columns: 1fr;
    }
    
    .disruptive-header-box {
        width: 95%;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-medium);
        border-top: 1px solid rgba(255, 102, 0, 0.2);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .btn-nav {
        margin-top: 10px;
        width: auto;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-image img {
        aspect-ratio: 16 / 10;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .disruptive-agency {
        background-image: url('../img/monte_olivia_celu.jpg') !important;
        background-size: cover;
        background-position: center top;
        background-attachment: scroll;
    }
    
    .disruptive-header-box {
        padding: 30px 15px;
        width: 100%;
        border-radius: 20px;
    }
    
    .disruptive-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .leader-card {
        padding: 30px;
        gap: 25px;
    }
    
    .leader-avatar {
        width: 120px;
        height: 120px;
    }
    
    .leader-initials {
        font-size: 3rem;
    }
    
    .leader-name {
        font-size: 1.8rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info p {
        max-width: 100%;
    }
    
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image img {
        aspect-ratio: 4 / 3;
        width: 100%;
        height: auto;
    }
    
    .metodologia__titulo {
        font-size: 1.8rem;
    }
    
    .card__numero {
        font-size: 4rem;
        min-width: 50px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .leader-card {
        padding: 20px;
    }
    
    .leader-avatar {
        width: 100px;
        height: 100px;
    }
    
    .leader-initials {
        font-size: 2.5rem;
    }
    
    .leader-name {
        font-size: 1.5rem;
    }
    
    .leader-stat-number {
        font-size: 1.5rem;
    }
    
    .team-card {
        padding: 0;
    }
    
    .card-header {
        padding: 15px;
    }
    
    .card-avatar {
        width: 75px;
        height: 75px;
    }
    
    .avatar-initials {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .disruptive-title {
        font-size: 1.3rem;
    }
    
    .disruptive-subtitle {
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    
    .disruptive-card {
        padding: 25px 15px 20px;
    }
    
    .leader-header {
        text-align: center;
    }
    
    .leader-badge {
        align-self: center;
    }
    
    .leader-stats {
        justify-content: space-around;
        width: 100%;
        gap: 20px;
    }
    
    .leader-expertise {
        justify-content: center;
    }
    
    .hero-image img {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
    }
    
    .disruptive-agency {
        background-position: 55% 50% !important;
    }
}

/* ===== TOUCH OPTIMIZATIONS ===== */
@media (hover: none) {
    .nav-links a:hover::after {
        width: 0;
    }
    
    .disruptive-card:hover,
    .team-card:hover,
    .mvv-card:hover,
    .leader-card:hover {
        transform: none;
    }
}

/* ===== HIGH CONTRAST SUPPORT ===== */
@media (prefers-contrast: high) {
    :root {
        --orange-start: #FF4400;
        --orange-end: #FF8844;
    }
}

/* Optimización para dispositivos iOS */
@supports (-webkit-touch-callout: none) {
    .disruptive-agency {
        background-attachment: scroll;
    }
    
    .hero-image img {
        transform: none;
    }
}

/* ===== SECCIÓN PRODUCCIONES ===== */
.producciones-section {
    margin-top: 80px;
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.producciones-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.producciones-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    font-family: 'Oswald', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, var(--orange-start) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.producciones-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--orange-gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.producciones-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 30px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.producciones-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ===== PRODUCCIÓN PRINCIPAL ===== */
.produccion-principal {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    perspective: 1000px;
    position: relative;
}

.produccion-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    aspect-ratio: 16 / 9;
    background: var(--primary-dark);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 102, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    border: 2px solid transparent;
    border-image: var(--orange-gradient);
    border-image-slice: 1;
    cursor: pointer;
}

.produccion-video-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 35px 60px rgba(255, 102, 0, 0.3),
        0 0 0 2px rgba(255, 102, 0, 0.5);
}

.produccion-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 28px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 28px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.play-button-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    z-index: 3;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.4);
    animation: playPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes playPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.produccion-video-wrapper:hover .play-button-main {
    opacity: 1;
    animation: none;
}

.produccion-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.produccion-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0.1) 100%);
    color: var(--orange-start);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    border: 1px solid rgba(255, 102, 0, 0.3);
    font-family: 'Play', sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.produccion-badge i {
    font-size: 1rem;
}

.produccion-title-main {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, var(--orange-start) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.produccion-description-main {
    font-size: 1rem;
    color: #8892b0;
    line-height: 1.8;
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

.produccion-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
    border-top: 1px dashed rgba(255, 102, 0, 0.3);
    border-bottom: 1px dashed rgba(255, 102, 0, 0.3);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
}

.spec-item i {
    font-size: 1.8rem;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.spec-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.4));
}

.spec-item span {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 700;
    font-family: 'Play', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE PRODUCCIONES ===== */
@media (max-width: 1200px) {
    .produccion-principal {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .produccion-specs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .produccion-principal {
        grid-template-columns: 1fr;
    }
    
    .produccion-info {
        order: 2;
    }
    
    .produccion-video-wrapper {
        order: 1;
    }
    
    .produccion-badge {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .produccion-title-main {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .producciones-section {
        margin-top: 60px;
        padding: 60px 0 40px;
    }
    
    .producciones-header {
        margin-bottom: 40px;
    }
    
    .producciones-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }
    
    .producciones-title::after {
        bottom: -12px;
        width: 80px;
    }
    
    .producciones-subtitle {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .produccion-principal {
        gap: 25px;
    }
    
    .produccion-video-wrapper {
        aspect-ratio: 16 / 9;
        border-radius: 20px;
    }
    
    .produccion-iframe {
        border-radius: 20px;
    }
    
    .video-overlay {
        border-radius: 20px;
    }
    
    .produccion-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 15px 0;
    }
    
    .spec-item i {
        font-size: 1.5rem;
    }
    
    .spec-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .producciones-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .producciones-subtitle {
        font-size: 0.9rem;
    }
    
    .produccion-badge {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
    
    .produccion-title-main {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .produccion-description-main {
        font-size: 0.9rem;
    }
    
    .produccion-specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .spec-item {
        flex-direction: row;
        justify-content: center;
    }
    
    .spec-item i {
        font-size: 1.3rem;
    }
    
    .spec-item span {
        font-size: 0.75rem;
    }
    
    .play-button-main {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== PORTFOLIO SECTION - CARRUSEL GRANDE ===== */
.portfolio-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.portfolio-slides-large {
    position: relative;
    width: 100%;
    padding-bottom: 45%; /* Proporción más ancha (16:7.2) */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
    background: #0a192f;
}

.portfolio-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.portfolio-slide.active {
    opacity: 1;
    z-index: 10;
}

.portfolio-slide-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a192f;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a192f;
}

/* Controles */
.portfolio-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--orange-start);
    background: rgba(0,0,0,0.5);
    color: var(--orange-start);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-hover);
}

.portfolio-btn:hover {
    background: var(--orange-gradient);
    color: #fff;
    border-color: transparent;
}

.portfolio-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: var(--orange-start);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    z-index: 20;
    backdrop-filter: blur(5px);
}

.portfolio-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
    margin-top: 30px;
    border-radius: 2px;
}

.portfolio-progress-bar {
    height: 100%;
    background: var(--orange-gradient);
    transition: width 0.6s ease;
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--orange-start);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-hover);
}

.dot.active {
    background: var(--orange-start);
}

.dot:hover {
    transform: scale(1.2);
}

/* ===== MÓVIL: CARRUSEL CON PROPORCIÓN LIGERAMENTE MÁS ALTA, IMAGEN COMPLETA ===== */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 30px 0 !important;
    }
    .portfolio-section .container {
        padding: 0 !important;
        width: 100% !important;
    }
    .portfolio-container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Contenedor con ancho completo y altura un poco mayor que 16:9 */
    .portfolio-slides {
        padding-bottom: 0 !important;
        width: 100% !important;
        aspect-ratio: 16 / 11 !important;     /* 16:11 ≈ 1.45 (16:9 = 1.77) → más alto */
        height: auto !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #0a192f;
        overflow: hidden;                     /* Oculta cualquier desbordamiento */
    }
    
    .portfolio-slide {
        position: absolute !important;
        height: 100% !important;
        width: 100% !important;
    }
    .portfolio-slide-wrapper {
        height: 100% !important;
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0a192f;
    }
    
    /* Imagen completa sin recortes, se adapta al contenedor */
    .portfolio-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center;
        background: #0a192f;
    }
    
    /* Controles (sin cambios) */
    .portfolio-controls {
        bottom: 10px;
        gap: 15px;
    }
    .portfolio-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(0,0,0,0.6);
    }
    .portfolio-counter {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.8rem;
    }
    .portfolio-progress {
        margin-top: 15px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .portfolio-dots {
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Ajuste opcional para pantallas más pequeñas */
@media (max-width: 480px) {
    .portfolio-slides {
        aspect-ratio: 16 / 12 !important;    /* Un poco más alto aún (4:3) */
    }
    .portfolio-btn {
        width: 35px;
        height: 35px;
    }
}

/* Botón nav más elegante en PC */
@media (min-width: 769px) {
    .btn-nav {
        padding: 10px 28px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        text-align: center;
    }
    .nav-links {
        gap: 20px;
    }
}