/* Reset y Estilos Globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #222222;
    background-color: #fcfcfc;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Header & Navegación */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-logo span {
    color: #555555;
}

.nav-links a {
    text-decoration: none;
    color: #444444;
    margin-left: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #000000;
}

.nav-links .btn-nav {
    background-color: #111111;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 6px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
}

/* Canales Sociales / Badges en Hero */
.social-channels {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-badge.wa {
    background-color: #25D366;
    color: #ffffff;
}

.social-badge.li {
    background-color: #0A66C2;
    color: #ffffff;
}

.social-badge.ig {
    background-color: #E1306C;
    color: #ffffff;
/* Formulario Estilo Camon (Gris Grafito Oscuro) */
.hero-form-wrapper {
    display: flex;
    justify-content: center;
}

.hero-form {
    background-color: #1c1c1c; /* Gris oscuro exacto de tu muestra */
    color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a2a2a;
}

.hero-form h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.hero-form .form-subtitle {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.hero-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 6px;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    background-color: #2b2b2b; /* Tono un poco más claro para los inputs */
    border: 1px solid #3d3d3d;
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #888888;
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #333333;
}

.btn-submit {
    width: 100%;
    background-color: #ffffff;
    color: #1c1c1c;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e2e2e2;
    transform: translateY(-1px);
}

.btn-submit {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e2e2e2;
}

/* Sección Empresa / Historia */
.section-empresa {
    padding: 90px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.empresa-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.empresa-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.empresa-text p {
    color: #555555;
    margin-bottom: 15px;
}

.empresa-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #111111;
}

.highlight-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: #666666;
}

/* Sección Servicios */
.section-servicios {
    padding: 90px 0;
    background-color: #fafafa;
}

.section-servicios h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #666666;
    font-size: 0.95rem;
}

/* Sección Portafolio */
.section-portafolio {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-portafolio h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    text-align: center;
}

.portfolio-placeholder {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-item h4 {
    font-size: 1rem;
    color: #222222;
}

/* Footer */
.footer {
    background-color: #111111;
    color: #888888;
    padding: 30px 0;
    font-size: 0.9rem;
}

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

.footer-socials a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.2s ease;
}

.footer-socials a:hover {
    opacity: 0.7;
}

/* Adaptabilidad Mobile */
@media (max-width: 900px) {
    .hero-container,
    .empresa-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}