/* -------------------------------------------------
   IMPORTAR FUENTE (Myriad Pro fallback)
   ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Helvetica Neue', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1B2735;
    overflow-x: hidden;
}

/* -------------------------------------------------
   COLORES OFICIALES
   ------------------------------------------------- */
:root {
    --color-primary: #2D4B6D;
    --color-dark: #1B2735;
    --color-accent: #F3DF4B;
    --color-secondary: #E18736;
    --text-light: #e0e0e0;
    --text-dark: #ffffff;
}

/* -------------------------------------------------
   HERO
   ------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(27, 39, 53, 0.9));
    z-index: 2;
}

header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 4;
    padding: 15px 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo { 
    height: 55px; 
    transition: all 0.3s;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color .3s;
    padding: 6px 12px;
}
nav a:hover { 
    color: var(--color-accent); 
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    animation: fadeInUp 1.5s ease-out;
}
.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: .4rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 1px;
}
.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
    font-weight: 300;
}
.hero-content button {
    background: linear-gradient(45deg, var(--color-accent), var(--color-secondary));
    color: #000;
    border: none;
    padding: 18px 42px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(243, 223, 75, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.hero-content button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 223, 75, 0.6);
}

/* -------------------------------------------------
   SECCIONES COMUNES
   ------------------------------------------------- */
section {
    padding: 80px 20px;
    text-align: center;
    background: var(--color-dark);
}
section h2 {
    font-size: 2.5rem;
    margin-bottom: .5rem;
    color: var(--text-dark);
    position: relative;
    animation: fadeInUp 1s ease-out;
    font-weight: 400;
}
section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 70px;
    height: 4px;
    background-color: var(--color-accent);
    transform: translateX(-50%);
    animation: underlineGrow 1.5s infinite alternate;
}
section > p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 45px;
    font-weight: 300;
}

/* -------------------------------------------------
   SERVICIOS Y VALORES – ESTILO EXACTO AL ORIGINAL
   ------------------------------------------------- */
.weapons-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.weapon,
.service {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.weapon img,
.service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.weapon .content,
.service .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: #fff;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 10%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.weapon .content h3,
.service .content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s ease;
}

.weapon .content p,
.service .content p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s ease;
}

/* HOVER */
.weapon:hover,
.service:hover {
    transform: scale(1.05);
}

.weapon:hover .content,
.service:hover .content {
    opacity: 1;
    visibility: visible;
}

.weapon:hover .content h3,
.weapon:hover .content p,
.service:hover .content h3,
.service:hover .content p {
    opacity: 1;
    transform: scale(1);
}

/* -------------------------------------------------
   ESTADÍSTICAS & QUIÉNES SOMOS
   ------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.stat span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
}
.stat p { 
    font-size: 1.1rem; 
    color: #aaa; 
}

.stats .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}
.stats h3 {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

/* -------------------------------------------------
   CTA
   ------------------------------------------------- */
.experiential {
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    color: #000;
    padding: 100px 20px;
}
.experiential h2 { 
    color: #000; 
    font-size: 2.8rem; 
    font-weight: 400;
}
.experiential p { 
    color: #333; 
    font-size: 1.3rem; 
    margin-bottom: 30px; 
}
.experiential button {
    background: #fff;
    color: var(--color-dark);
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid var(--color-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: .3s;
}
.experiential button:hover {
    background: var(--color-dark);
    color: var(--color-accent);
    transform: scale(1.05);
}

/* -------------------------------------------------
   BEST EVENTS & CONTACTO
   ------------------------------------------------- */
.projects,
.contact {
    background: var(--color-primary);
    color: var(--text-light);
    padding: 80px 20px;
}

.projects-grid { max-width: 1200px; margin: 0 auto; text-align: left; }
.projects ul { margin: 20px 0; }
.projects li { margin-bottom: 8px; padding-left: 5px; color: #ccc; }

.contact form {
    max-width: 600px;
    margin: 40px auto;
    display: grid;
    gap: 15px;
}
.contact input,
.contact textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #334;
    color: #fff;
    font-size: 1rem;
    border: 1px solid #555;
}
.contact textarea { min-height: 120px; resize: vertical; }
.contact button {
    background: var(--color-accent);
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}
.contact button:hover { 
    background: #ffd700; 
    transform: translateY(-2px);
}
.contact-info { 
    margin-top: 40px; 
    line-height: 2; 
    font-size: 1.1rem; 
}
.contact-info a { 
    color: var(--color-accent); 
}

/* -------------------------------------------------
   FOOTER
   ------------------------------------------------- */
footer {
    background: var(--color-dark);
    color: #888;
    padding: 60px 20px;
    font-size: .9rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.footer-links a {
    display: block;
    margin: 10px 0;
    color: #aaa;
    transition: color .3s;
    font-weight: 300;
}
.footer-links a:hover { 
    color: var(--color-accent); 
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 50%;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-4px);
}
.footer-social svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: fill 0.3s;
}
.footer-social a:hover svg {
    fill: #000;
}

/* -------------------------------------------------
   ANIMACIONES
   ------------------------------------------------- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes underlineGrow {
    0% { width: 70px; }
    100% { width: 130px; }
}

/* -------------------------------------------------
   RESPONSIVE
   ------------------------------------------------- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.6rem; }
    .hero-content h2 { font-size: 1.3rem; }
    .hero-content button { padding: 15px 35px; font-size: 1.1rem; }

    .logo { height: 48px; }
    nav ul { gap: 18px; }
    nav a { font-size: 0.95rem; }

    section { padding: 70px 15px; }
    section h2 { font-size: 2.2rem; }

    .weapons-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .weapon, .service { height: 260px; }
}

@media (max-width: 480px) {
    .header-container { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center;
    }
    nav ul { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 12px;
    }
    .hero-content h1 { font-size: 2.1rem; }
    .hero-content h2 { font-size: 1.1rem; }
    .hero-content button { padding: 13px 28px; font-size: 1rem; }

    section h2 { font-size: 1.9rem; }
    section > p { font-size: 1.05rem; }

    .stats-grid { grid-template-columns: 1fr; }
    .stat span { font-size: 2.6rem; }

    .footer-social a { width: 38px; height: 38px; }
    .footer-social svg { width: 19px; height: 19px; }
}