:root {
    --primary-color: #003366;
    --accent-color: #ff9900;
    --bg-light: #f4f7f9;
    --white: #ffffff;
    --text-dark: #333333;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: #ddd; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

/* TOP BAR */
.top-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    animation: fadeInDown 1s ease-out forwards;
}
.top-info { display: flex; gap: 20px; color: #666; }
.top-info span i { color: var(--accent-color); margin-right: 5px; }
.top-actions { display: flex; gap: 15px; align-items: center; }
.top-btn {
    text-decoration: none;
    color: var(--white);
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
}
.top-btn:hover { background: var(--accent-color); }
.top-btn.admin { background: #444; }

/* HEADER */
header {
    background: var(--white);
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeInDown 1.2s ease-out forwards;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInDown 1.5s ease-out forwards;
}
.logo img { height: 60px; width: auto; display: block; }
.brand-name-cn { font-size: 1.4rem; font-weight: 700; color: var(--primary-color); display: block; }
.brand-name-en { font-size: 0.9rem; font-weight: 400; color: var(--text-dark); letter-spacing: 1px; }

/* NAV */
nav ul { display: flex; list-style: none; animation: fadeInDown 1.8s ease-out forwards; }
nav ul li { margin-left: 25px; position: relative; }
nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 5px 0;
    display: inline-block;
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { color: var(--accent-color); }

.menu-toggle { display: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }

/* HERO */
.hero {
    height: 450px;
    background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.hero-content h1 { font-size: 2.5rem; margin-bottom: 20px; text-transform: uppercase; }

/* SECCIONES */
section { padding: 80px 5%; text-align: center; }
.section-grey { background-color: var(--bg-light); }
.title-underline { width: 80px; height: 4px; background: var(--accent-color); margin: 20px auto 40px; }

/* GRID */
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.grid-item { padding: 40px 20px; background: var(--white); border: 1px solid #eee; transition: var(--transition); }
.grid-item:hover { transform: translateY(-10px); border-color: var(--primary-color); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.grid-item i { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }

/* FOOTER */
footer { background: var(--primary-color); color: var(--white); padding: 60px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 40px; font-size: 0.8rem; }

/* FLOATING BTNS */
.floating-btns { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 2000; }
.f-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: 0.3s; }
.btn-wa { background: #25d366; } .btn-li { background: #0077b5; }

@media (max-width: 992px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }
    nav ul {
        position: absolute; top: 100%; left: -100%; width: 100%;
        background: var(--white); flex-direction: column; padding: 20px;
        border-bottom: 3px solid var(--primary-color); transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    nav ul.active { left: 0; }
    nav ul li { margin: 15px 0; text-align: center; }
}
/* DISEÑO DE CONTACTO */
.contact-layout {
    display: flex;
    gap: 50px;
    text-align: left;
    margin-top: 40px;
}
.contact-info-box { flex: 1; }
.info-item { margin-bottom: 30px; }
.info-item i { font-size: 1.5rem; color: var(--accent-color); margin-bottom: 10px; }
.info-item h4 { color: var(--primary-color); text-transform: uppercase; font-size: 0.9rem; }

.contact-form { flex: 2; background: #fff; padding: 30px; border: 1px solid #eee; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: inherit;
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary-color); }
.input-group { display: flex; gap: 20px; }

.btn-enviar {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.btn-enviar:hover { background: var(--accent-color); transform: scale(1.02); }

/* Mensajes de Estado */
.msg { padding: 15px; margin-bottom: 20px; border-radius: 4px; font-weight: 600; }
.msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.msg.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

@media (max-width: 768px) {
    .contact-layout { flex-direction: column; }
    .input-group { flex-direction: column; gap: 0; }
}
/* ESTILOS DE PROYECTOS */
.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.proyecto-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
}

.proyecto-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.proyecto-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.proyecto-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proyecto-body {
    padding: 25px;
}

.proyecto-body h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.proyecto-body p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.proyecto-meta {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
}

.proyecto-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

@media (max-width: 480px) {
    .proyectos-grid {
        grid-template-columns: 1fr;
    }
}
/* ACTUALIZACIÓN DISEÑO PÁGINA NOSOTROS */
.nosotros-page { padding: 40px 0; text-align: left; }

/* CEO SECTION - Foto Imponente */
.ceo-section { background: var(--bg-light); padding: 80px 5%; margin-bottom: 80px; }
.ceo-grid { display: flex; align-items: center; gap: 80px; }
.ceo-image { flex: 1; position: relative; }
.ceo-image img {
    width: 100%;
    border-radius: 4px;
    border-left: 8px solid var(--primary-color);
    box-shadow: 20px 20px 0px var(--accent-color);
    transition: var(--transition);
}
.ceo-image img:hover { transform: scale(1.02); }
.ceo-content { flex: 1.5; }
.section-subtitle { color: var(--accent-color); letter-spacing: 3px; margin-bottom: 10px; font-weight: 700; font-size: 0.8rem; }
.ceo-content h2 { font-size: 2.8rem; color: var(--primary-color); font-weight: 700; }
.title-underline-left { width: 60px; height: 4px; background: var(--accent-color); margin: 25px 0; }
.quote { font-style: italic; font-size: 1.3rem; color: #555; margin-bottom: 25px; line-height: 1.5; font-weight: 300; }

/* BUSINESS LINES GRID - Estilo Tarjetas Redondeadas */
.business-lines-section { padding: 80px 5%; background: var(--white); }
.lines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.line-card {
    background: var(--bg-light);
    border-radius: 12px; /* Esquinas Redondeadas */
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}
.line-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.line-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.line-body { padding: 30px; text-align: left; }
.line-body i { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 20px; display: block; }
.line-body h3 { margin-bottom: 15px; text-transform: uppercase; font-size: 1.2rem; color: var(--text-dark); }
.line-body p { font-size: 0.9rem; color: #666; margin-bottom: 20px; min-height: 50px; }

.loc-tag { 
    display: inline-block; 
    font-size: 0.7rem; 
    font-weight: 700; 
    background: #e1e8ed; 
    color: var(--primary-color); 
    padding: 4px 12px; 
    border-radius: 50px; 
}

/* OFFICES */
.global-offices { padding: 80px 5%; background: var(--primary-color); color: var(--white); }
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.office-card {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    transition: var(--transition);
}
.office-card:hover { background: rgba(255,255,255,0.12); }
.office-card i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 20px; display: block; }
.office-card h4 { color: var(--accent-color); margin-bottom: 10px; font-size: 1.1rem; text-transform: uppercase; }

@media (max-width: 992px) {
    .ceo-grid { flex-direction: column; gap: 40px; }
    .ceo-image img { box-shadow: 10px 10px 0px var(--accent-color); }
    .hero-content h1 { font-size: 2rem; }
}
/* DISEÑO MAXIMALISTA NOSOTROS */

/* SOCIOS */
.partners-section { padding: 80px 5%; text-align: center; }
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.partner-card { text-align: center; }
.partner-img {
    width: 180px; height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--accent-color);
}
.partner-card h4 { color: var(--primary-color); font-size: 1.1rem; }
.partner-card p { color: var(--accent-color); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }

/* BLOQUES DE NEGOCIO COMPLETOS */
.full-business-lines { background: #fff; }
.business-block {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    border-bottom: 1px solid #eee;
}
.business-block.reverse { flex-direction: row-reverse; }

.block-image { flex: 1; background-size: cover; background-position: center; min-height: 400px; }
.block-content { flex: 1; padding: 80px 5%; display: flex; flex-direction: column; justify-content: center; text-align: left; }

.block-content h3 { font-size: 2rem; color: var(--primary-color); margin-bottom: 25px; }
.block-content h3 i { color: var(--accent-color); margin-right: 15px; }
.block-content p { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.8; }

.feature-list { list-style: none; }
.feature-list li { margin-bottom: 12px; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; }
.feature-list li i { color: var(--accent-color); margin-right: 12px; font-size: 1rem; }

/* SECCIÓN LEGAL DE LUJO */
.legal-luxury-section {
    background: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2959210?auto=format&fit=crop&w=1200&q=80') center/cover;
    padding: 100px 5%;
    color: #fff;
    text-align: center;
}
.legal-offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.legal-city i { font-size: 3rem; color: var(--accent-color); margin-bottom: 20px; }
.legal-city h4 { font-size: 1.5rem; margin-bottom: 10px; }

@media (max-width: 992px) {
    .business-block, .business-block.reverse { flex-direction: column; }
    .block-content { padding: 40px 5%; }
}
/* GESTIÓN DE CAPITAL - ESTILOS */

/* Hero Especializado */
.finance-hero {
    height: 500px;
    background: linear-gradient(rgba(0, 31, 63, 0.85), rgba(0, 31, 63, 0.85)), url('https://images.unsplash.com/photo-1454165833767-027ffea9e77b?auto=format&fit=crop&w=1200&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 5%;
}
.finance-hero h1 { font-size: 3.5rem; text-transform: uppercase; margin: 20px 0; }

/* Tesis de Inversión */
.thesis-grid { display: flex; align-items: stretch; gap: 50px; padding: 100px 5%; background: #fff; }
.thesis-content { flex: 1.2; text-align: left; }
.thesis-image { flex: 0.8; border-radius: 15px; min-height: 400px; background-size: cover; background-position: center; border-right: 10px solid var(--accent-color); }

.check-list { list-style: none; margin-top: 30px; }
.check-list li { margin-bottom: 20px; font-size: 1.1rem; display: flex; align-items: flex-start; }
.check-list li i { color: var(--accent-color); margin-right: 15px; margin-top: 5px; font-size: 1.3rem; }

/* Tarjetas de Finanzas */
.focus-areas { background: var(--bg-light); }
.finance-card { border-top: 5px solid var(--accent-color) !important; text-align: left !important; padding: 50px 30px !important; }
.finance-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 25px; }

/* Workflow Steps */
.workflow-section { padding: 100px 5%; text-align: center; }
.workflow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 60px; }
.step { position: relative; padding: 20px; }
.step-num { font-size: 4rem; font-weight: 900; color: rgba(0, 51, 102, 0.05); position: absolute; top: -10px; left: 0; width: 100%; z-index: 1; }
.step h4 { position: relative; z-index: 2; margin-bottom: 15px; color: var(--primary-color); text-transform: uppercase; }
.step p { position: relative; z-index: 2; font-size: 0.9rem; color: #666; }

/* CTA Final */
.cta-finance { background: var(--primary-color); color: #fff; padding: 100px 5%; text-align: center; }
.cta-finance h3 { font-size: 2.2rem; margin-bottom: 20px; }
.cta-finance p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.8; }
.btn-gold { background: var(--accent-color); color: #fff; padding: 18px 40px; text-decoration: none; font-weight: 700; border-radius: 4px; transition: var(--transition); display: inline-block; }
.btn-gold:hover { background: #e68a00; transform: scale(1.05); }

@media (max-width: 992px) {
    .thesis-grid { flex-direction: column; }
    .finance-hero h1 { font-size: 2.2rem; }
}
/* ESTILOS ESG - SOSTENIBILIDAD */

.esg-hero {
    height: 400px;
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80') center/cover;
    display: flex; align-items: center; justify-content: center; color: #fff; text-align: center;
}

.esg-grid-main { display: flex; gap: 50px; padding: 80px 5%; align-items: center; background: #fff; }
.esg-text { flex: 2; text-align: left; }

.esg-stats { flex: 1; display: flex; gap: 20px; }
.stat-box { background: var(--primary-color); color: #fff; padding: 30px; border-radius: 8px; flex: 1; text-align: center; border-bottom: 5px solid var(--accent-color); }
.stat-box span { font-size: 2.5rem; font-weight: 700; display: block; color: var(--accent-color); }

/* Filas de Pilares */
.pillar-row { display: flex; min-height: 450px; border-bottom: 1px solid #eee; background: #fff; }
.pillar-row.reverse { flex-direction: row-reverse; }

.pillar-image { flex: 1; background-size: cover; background-position: center; }
.pillar-info { flex: 1; padding: 60px 5%; display: flex; flex-direction: column; justify-content: center; text-align: left; position: relative; }

.pillar-letter { 
    font-size: 8rem; font-weight: 900; color: rgba(0,0,0,0.03); 
    position: absolute; top: 20px; right: 40px; 
}

.pillar-info h3 { font-size: 2rem; color: var(--primary-color); margin-bottom: 20px; }
.pillar-info ul { list-style: none; margin-top: 25px; }
.pillar-info li { margin-bottom: 12px; font-weight: 600; display: flex; align-items: center; font-size: 0.95rem; }
.pillar-info li i { color: #28a745; margin-right: 15px; font-size: 1.2rem; }

@media (max-width: 992px) {
    .esg-grid-main, .pillar-row, .pillar-row.reverse { flex-direction: column; }
    .pillar-image { min-height: 300px; }
    .esg-stats { width: 100%; }
}
/* INDEX SPECIFIC STYLES */

/* Hero Moderno */
.hero-main {
    height: 85vh;
    background: linear-gradient(rgba(0,20,40,0.7), rgba(0,20,40,0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1500&q=80') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero-main h1 { font-size: 4.5rem; font-weight: 700; margin-bottom: 20px; }
.hero-main h1 span { color: var(--accent-color); font-weight: 300; }
.hero-btns { margin-top: 40px; display: flex; gap: 20px; justify-content: center; }

/* Stats Bar */
.stats-bar {
    background: var(--primary-color);
    padding: 50px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    color: #fff;
}
.stat-card { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-card:last-child { border: none; }
.stat-card i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 15px; }
.stat-card h3 { font-size: 2rem; }

/* Divisiones Grid */
.home-divisions { padding: 100px 5%; background: #fcfcfc; }
.divisions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.division-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.division-card:hover { transform: translateY(-10px); }
.div-img-wrapper img { width: 100%; height: 250px; object-fit: cover; border-bottom: 5px solid var(--accent-color); }
.div-info { padding: 30px; }
.div-info i { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; display: block; }

/* Legal Flex */
.home-legal { padding: 100px 5%; background: #fff; }
.legal-flex { display: flex; align-items: center; gap: 60px; }
.legal-text { flex: 1.2; text-align: left; }
.legal-image-frame img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px var(--primary-color); }
.legal-list { list-style: none; margin: 30px 0; }
.legal-list li { margin-bottom: 12px; font-weight: 600; display: flex; align-items: center; }
.legal-list li i { color: var(--accent-color); margin-right: 15px; }

/* CTA Large */
.home-cta {
    padding: 120px 5%;
    background: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.9)), url('https://images.unsplash.com/photo-1554224155-169641357599?auto=format&fit=crop&w=1200&q=80') center/cover;
    color: #fff; text-align: center;
}
.btn-gold-large {
    display: inline-block; background: var(--accent-color); color: #fff; padding: 20px 50px;
    font-size: 1.1rem; font-weight: 700; text-decoration: none; border-radius: 5px; margin-top: 30px;
    transition: 0.3s;
}
.btn-gold-large:hover { background: #e68a00; transform: scale(1.05); }

/* Botones Auxiliares */
.btn-primary { background: var(--accent-color); color: #fff; padding: 12px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 12px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; }
.btn-dark { background: var(--primary-color); color: #fff; padding: 12px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; display: inline-block; }

@media (max-width: 992px) {
    .hero-main h1 { font-size: 2.8rem; }
    .legal-flex { flex-direction: column; }
    .stats-bar { grid-template-columns: 1fr 1fr; margin-top: 20px; width: 100%; }
}
/* FOOTER PROFESIONAL JIAN CORP */
.footer-global {
    background: #0a0f1a;
    color: #fff;
    padding-top: 80px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 0 5% 60px;
}

.footer-col h4 {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 2px; background: var(--accent-color);
}

/* Identidad */
.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.footer-logo img { height: 60px; }
.logo-text .cn { display: block; font-size: 1.2rem; font-weight: 700; color: var(--accent-color); }
.logo-text .en { font-size: 0.8rem; color: #fff; opacity: 0.7; }
.footer-desc { font-size: 0.85rem; line-height: 1.8; color: #a0a0a0; margin-bottom: 25px; }

/* Redes */
.footer-socials { display: flex; gap: 15px; }
.footer-socials a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; transition: 0.3s;
}
.footer-socials a:hover { background: var(--accent-color); transform: translateY(-5px); }

/* Links */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a { color: #a0a0a0; text-decoration: none; font-size: 0.85rem; transition: 0.3s; }
.footer-links li a:hover { color: var(--accent-color); padding-left: 10px; }

/* Banderas y Sedes */
.footer-countries { display: flex; flex-direction: column; gap: 15px; }
.country-item { display: flex; align-items: center; gap: 12px; }
.country-item img { width: 25px; height: auto; border-radius: 2px; box-shadow: 0 0 5px rgba(0,0,0,0.3); }
.country-item span { font-size: 0.8rem; color: #a0a0a0; }

/* Contacto */
.contact-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-row i { font-size: 1.5rem; color: var(--accent-color); }
.c-info small { display: block; color: #666; font-size: 0.7rem; text-transform: uppercase; }
.c-info p { font-size: 0.9rem; font-weight: 600; color: #d0d0d0; }

/* Bottom Bar */
.footer-bottom-bar { background: #05080f; padding: 25px 5%; border-top: 1px solid rgba(255,255,255,0.05); }
.bottom-inner { max-width: 1250px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: #555; }
.legal-links a { color: #555; text-decoration: none; margin: 0 5px; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff;
    padding: 12px 25px; border-radius: 50px; text-decoration: none; display: flex;
    align-items: center; gap: 10px; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 2000; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.05); background: #128c7e; }

@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
    .bottom-inner { flex-direction: column; gap: 15px; text-align: center; }
}