/* HiCity Styles - Built to protect index.html aesthetics */
@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20Regular_PERSONAL%20USE.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20Medium_PERSONAL%20USE.otf') format('opentype');
    font-weight: 500;
}
@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20Bold_PERSONAL%20USE.otf') format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20ExtraBold_PERSONAL%20USE.otf') format('opentype');
    font-weight: 800;
}
@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20Black_PERSONAL%20USE.otf') format('opentype');
    font-weight: 900;
}

:root {
    --neon-cyan: #00ffcc;
    --text-white: #ffffff;
    --bg-dark: #07090f;
    --overlay-color: rgba(0, 0, 0, 0.3);
    --overlay-darker: rgba(0, 0, 0, 0.75);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Made Tommy', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { color: var(--text-white); font-weight: 700; }
p { color: #d0d0d0; line-height: 1.6; }
.text-center { text-align: center; }

/* Video Backgrounds */
.scroll-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.bg-video {
    width: 100%; height: 100%; object-fit: cover;
}
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--overlay-color);
}
.overlay-dark {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--overlay-darker);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; z-index: 1000;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}
.logo-container .logo { max-height: 45px; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links li a { color: var(--text-white); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links li a:hover { color: var(--neon-cyan); }
.nav-contact { border: 1px solid #00d28f; padding: 8px 20px !important; border-radius: 20px; color: #00d28f !important; transition: 0.3s; }
.nav-contact:hover { background: #00d28f; color: #000 !important; box-shadow: 0 0 15px #00d28f; }
.nav-contact {
    border: 1px solid var(--neon-cyan);
    padding: 8px 20px; border-radius: 20px;
    color: var(--neon-cyan) !important;
}
.nav-contact:hover {
    background: var(--neon-cyan); color: #000 !important;
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* 1. Hero Section */
#hero { margin-top: 0; padding-top: 150px; }
.hero-content {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.hero-text {
    text-align: left;
    max-width: 900px;
}
.hero-top-text {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
}
.hero-logo-img {
    max-width: 600px;
    width: 100%;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 25px rgba(0, 255, 204, 0.5));
}
.neon-badge {
    background-color: var(--neon-cyan);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}
.hero-desc {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* 2. Funcionalidades */
.func-layout {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.giant-right-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: right;
    line-height: 1.1;
    color: var(--text-white);
}
.func-left { width: 50%; }
.func-right { width: 45%; display: flex; flex-direction: column; align-items: flex-end; }
.hicity-mockup {
    max-width: 180%;
    margin-top: 30px;
    transform: translateX(30%);
    filter: drop-shadow(-10px 15px 30px rgba(0,0,0,0.7));
}
.hicity-video {
    width: 250px;
    height: 450px;
    object-fit: cover;
    align-self: center;
    margin-top: 40px;
    border-radius: 32px;
    border: 10px solid #1c1c1e;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px rgba(0, 255, 204, 0.15);
    transition: opacity 0.3s ease;
    background: #000;
}
.icon-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.icon-list li { display: flex; gap: 20px; align-items: flex-start; }

.func-card {
    background: rgba(4, 9, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.func-card:hover {
    background: rgba(4, 9, 20, 0.7);
    border-color: rgba(0, 255, 204, 0.5);
    transform: translateX(10px);
}
.func-card.active {
    background: rgba(4, 9, 20, 0.9);
    border-color: var(--neon-cyan);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.15);
}
.func-card h4 {
    transition: color 0.3s ease;
}
.func-card.active h4 {
    color: var(--neon-cyan);
}
.cyan-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-top: 5px;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.icon-list h4 { font-size: 1.4rem; margin-bottom: 5px; font-weight: 700; color: var(--text-white); }
.icon-list p { font-size: 1rem; color: #ccc; }

/* 3. Agencias y Privado */
.block-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: var(--text-white);
}
.grid-7 { display: grid; grid-template-columns: repeat(7, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-item {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px;
}
.cyan-icon-large {
    font-size: 3rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.6));
}
.grid-item span { font-weight: 500; font-size: 1rem; }

/* 4. Ventajas Inteligentes */
.ventajas-layout {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    align-items: center;
}
.giant-left-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: left;
}
.ventajas-cards-col {
    display: flex; flex-direction: column; gap: 30px;
}
.dark-card {
    background: rgba(4, 9, 20, 0.85); /* Dark Blue */
    border: 1px solid rgba(0, 255, 204, 0.4);
    border-radius: 20px;
    padding: 35px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.dark-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.15);
    border-color: var(--neon-cyan);
}
.dark-card h4 { font-size: 1.5rem; margin-bottom: 12px; color: var(--neon-cyan); font-weight: 800; }
.dark-card p { font-size: 1.05rem; }

/* 5. Resultados */
.section-title { font-size: 3.5rem; font-weight: 900; margin-bottom: 60px; }
.glass-cards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.glass-metric-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
}
.glass-metric-card:hover { border-color: var(--neon-cyan); transform: translateY(-10px); }
.metric-big {
    font-size: 5rem;
    font-weight: 900;
    margin: 10px 0;
    line-height: 1;
}
.neon-glow {
    color: #fff;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 30px var(--neon-cyan);
}
.cyan-text { color: var(--neon-cyan); font-size: 1.4rem; font-weight: 700; text-transform: uppercase;}

/* 6. CTA Final */
.flex-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.giant-center-title { font-size: 4.5rem; font-weight: 900; margin-bottom: 40px; }
.cta-glass-box {
    background: rgba(10, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    text-align: center;
}
.cta-glass-box p { font-size: 1.2rem; margin-bottom: 15px; }
.bold-highlight { font-weight: 800; font-size: 1.4rem !important; color: #fff; margin-bottom: 40px !important;}
.btn-mega {
    background: var(--neon-cyan);
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 20px 50px;
    border-radius: 50px;
    border: none; cursor: pointer;
    box-shadow: 0 0 20px rgba(0,255,204,0.4);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.btn-mega:hover { transform: scale(1.05); box-shadow: 0 0 40px var(--neon-cyan); animation: none; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}

/* Animations JS */
.section-reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.section-reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-item {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-item.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .func-layout { flex-direction: column; gap: 40px; }
    .func-left, .func-right { width: 100%; }
    .giant-right-title { text-align: center; font-size: 4rem; }
    
    .grid-7 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    
    .ventajas-layout { grid-template-columns: 1fr; }
    .giant-left-title { text-align: center; margin-bottom: 30px; font-size: 3.5rem; }
    
    .glass-cards-grid { grid-template-columns: 1fr; }
    
    .hero-logo-img { max-width: 80%; }
    .hicity-mockup { max-width: 100%; transform: none; }
    .giant-center-title { font-size: 3.5rem; }
    .hero-top-text { white-space: normal; font-size: 1.2rem; }
}
@media (max-width: 768px) {
    .grid-7, .grid-4 { grid-template-columns: 1fr !important; }
    .hero-top-text { font-size: 1.2rem !important; margin-bottom: 10px; }
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.5rem !important; }
    .giant-right-title, .giant-left-title, .giant-center-title { font-size: 2.2rem !important; }
    .metric-big { font-size: 3rem !important; }
    .neon-badge { font-size: 0.9rem !important; padding: 8px 15px !important; }
    .btn-mega { font-size: 1.1rem !important; padding: 12px 25px !important; }
    .nav-links { display: none; }
    .scroll-section { padding: 60px 5% !important; min-height: auto; }
    footer div { min-width: 100% !important; }
}
