/* 1. VARIABLES DE MARCA (Manual de Estilo) */
:root {
    --rose-gold: #E2A79F;
    --black-pure: #000000;
    --charcoal: #333333;
    --pearl-white: #F5F5F5;
}



/* 2. ESTILOS GLOBALES */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pearl-white);
    color: var(--charcoal);
    line-height: 1.6;
    padding-top: 90px;
    /* Espacio para el navbar fijo */
    overflow-x: hidden;
}

/* 3. TIPOGRAFÍA (Montserrat para Títulos y Marca) */
h1,
h2,
h3,
h4,
.navbar-brand,
.btn-lacolo,
.brand-titles,
.brand-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4. NAVEGACIÓN (Navbar) */
.navbar {
    background-color: var(--black-pure) !important;
    border-bottom: 3px solid var(--rose-gold);
    padding: 0.8rem 0;
    z-index: 1050;
}

.navbar-brand {
    font-weight: 800;
    color: var(--rose-gold) !important;
}

.logo-main {
    height: 50px;
    width: auto;
    min-width: 80px;
    /* Tamaño mínimo según manual */
    padding: 5px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-main:hover {
    transform: scale(1.05);
    /* Efecto sutil de interacción */
}

.brand-text {
    font-weight: 800;
    color: var(--rose-gold) !important;
    font-size: 1.25rem;
}

.nav-link {
    color: var(--pearl-white) !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--rose-gold) !important;
}

/* 5. BOTONES (Estilo LaColo) */
.btn-lacolo {
    background-color: var(--rose-gold);
    color: var(--black-pure);
    border: none;
    font-weight: 800;
    padding: 12px 30px;
    transition: 0.3s ease-in-out;
}

.btn-lacolo:hover {
    background-color: var(--charcoal);
    color: var(--rose-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 6. SECCIONES Y LAYOUT */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E9E9E9 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--black-pure);
    font-weight: 800;
}

.text-rose {
    color: var(--rose-gold);
}

.section-padding {
    padding: 100px 0;
}

/* 7. COMPONENTES (Tarjetas y Portfolio) */
.card-pricing,
.portfolio-card {
    border: 1px solid rgba(226, 167, 159, 0.2);
    background: white;
    transition: 0.4s;
    border-radius: 0;
}

.card-pricing:hover,
.portfolio-card:hover {
    border-color: var(--rose-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

/* 8. SECCIÓN IMPACTO */
.impact {
    background-color: var(--charcoal);
    color: var(--pearl-white);
    padding: 100px 0;
    border-top: 5px solid var(--rose-gold);
}

/* 9. TÍTULOS DE SECCIÓN */
.section-title {
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--rose-gold);
    bottom: 0;
    left: 0;
    /* Por defecto alineado a la izquierda */
}

/* Modificador para títulos centrados */
.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 10. FOOTER */
footer {
    background-color: var(--black-pure);
    color: var(--pearl-white);
    padding: 60px 0;
}

/* Agrégalo a la sección 7 u 8 de tu style.css */
.form-control {
    border-radius: 0;
    border: 1px solid #dee2e6;
    padding: 12px;
}

.form-control:focus {
    border-color: var(--rose-gold);
    box-shadow: none;
}

.responsive-title {
    /* Bajamos el mínimo a 1.3rem para que 'DEVELOPMENT' quepa en 320px de ancho */
    font-size: clamp(1.3rem, 10vw, 3.8rem); 
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;

    /* DESACTIVAR CORTES: Esto evita el efecto de la imagen que me enviaste */
    hyphens: none !important;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    
    /* CONTROL DE PALABRAS: No permite romper palabras internamente */
    word-break: keep-all; 
    overflow-wrap: normal;
    
    display: block;
    width: 100%;
}

/* Forzar que cada bloque de texto ocupe su línea en móviles */
@media (max-width: 550px) {
    .responsive-title span {
        display: block;
        width: 100%;
        margin-bottom: 0.2rem;
    }
}


/* 11. RESPONSIVE */
@media (max-width: 768px) {
    .logo-main {
        height: 35px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        text-align: center;
        padding: 100px 0 60px;
    }

    body {
        padding-top: 70px;
        /* Menos espacio en móvil */
    }
}