/* GM_2026-03-15_Latinum_Concepto2.css | Origen: Diseño AI | Propósito: Estilos Landing Page | DERPACIF */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; }
body { color: #333; background-color: #fff; line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

:root {
    --primary-blue: #3B82F6;
    --accent-gold: #F59E0B;
    --bg-light: #f9fafb;
    --text-dark: #1f2937;
    --header-bg: #fff;
    --secondary-blue: #1e40af;
    --gray-light: #e5e7eb;
}

header {
    background-color: var(--header-bg);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.logo-container {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-symbol { color: var(--accent-gold); font-size: 1.8rem; font-family: serif; font-weight: bold; }
.logo-symbol-C { color: var(--primary-blue); font-size: 1.8rem; font-family: serif; font-weight: bold; position: relative; left: -5px; }
.logo-text { margin-left: 0.5rem; color: var(--text-dark); }

.nav-list { display: flex; gap: 1.5rem; }
.nav-list a { font-weight: 600; font-size: 0.95rem; }
.nav-list a:hover { color: var(--primary-blue); }

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s; background-color: #333; }

.hero-section {
    padding-top: 100px;
    padding-bottom: 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #fff 100%);
}

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

.hero-text-content { flex: 1; padding-right: 2rem; }

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover { background-color: #2563eb; transform: translateY(-2px); }

.hero-image-placeholder { flex: 1; display: flex; justify-content: center; }
.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

section:not(.hero-section) { padding: 4rem 0; }
section:not(.hero-section) h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 1.5rem; text-align: center; }

.section-intro { text-align: center; max-width: 700px; margin: 0 auto 3rem; color: #555; font-size: 1.1rem; }

.about-section { background-color: var(--bg-light); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-card:hover { transform: translateY(-5px); }
.value-card h3 { color: var(--primary-blue); margin-bottom: 1rem; font-size: 1.3rem; }
.value-card p { color: #555; }

.values-list { padding-left: 1.5rem; }
.values-list li { margin-bottom: 0.5rem; color: #555; list-style: disc; }

.services-section { background-color: #fff; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--text-dark); margin-bottom: 1rem; font-size: 1.2rem; }
.service-card p { color: #555; font-size: 0.95rem; }

.team-section { background-color: var(--bg-light); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover { transform: translateY(-5px); }

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-card h3 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.team-card p { color: #777; font-size: 0.9rem; }

.contact-section { background-color: #fff; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container { background: var(--bg-light); padding: 2rem; border-radius: 10px; }

.form-group { margin-bottom: 1.5rem; }

.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-dark); }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-blue); }

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-gold);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover { background-color: #d97706; }

.contact-info h3 { margin-bottom: 1.5rem; color: var(--text-dark); }

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.info-icon { font-size: 1.5rem; }

footer { background-color: #333; color: #fff; padding: 2rem 0; text-align: center; }

.footer-links { margin-bottom: 1rem; }

.footer-links a { margin: 0 1rem; color: #aaa; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent-gold); }

footer p { font-size: 0.9rem; margin-bottom: 0.5rem; color: #aaa; }

@media (max-width: 768px) {
    header { padding: 0.8rem 0; }
    .logo-container { margin-bottom: 0; }
    
    header nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        font-size: 0.85rem;
    }

    .menu-toggle { display: none; }

    .hero-container { flex-direction: column; text-align: center; }
    .hero-text-content { padding-right: 0; order: -1; }
    .hero-section { padding-top: 140px; }

    .hero-section .hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-top: 2rem;
    }

    .hero-section h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero-section p { font-size: 1rem; }
    .hero-section .cta-button { width: 100%; margin-top: 2rem; }

    .contact-grid { grid-template-columns: 1fr; }
}
