/* Variables de colores y tipografía - 200 Millas Branding */
:root {
    /* Colores Principales */
    --naranja-principal: #E67E22;
    --marron-calido: #8B4513;
    --rojo-acento: #C0392B;

    /* Colores Secundarios */
    --amarillo-dorado: #F39C12;
    --crema: #FDF6E3;

    /* Colores Neutrales */
    --blanco: #FFFFFF;
    --gris-claro: #ECF0F1;
    --gris-oscuro: #2C3E50;
    --negro-suave: #1A1A1A;

    /* Tipografía */
    --font-titulos: 'Playfair Display', serif;
    --font-subtitulos: 'Montserrat', sans-serif;
    --font-cuerpo: 'Open Sans', sans-serif;

    /* Aplicaciones específicas */
    --primary: var(--naranja-principal);
    --secondary: var(--amarillo-dorado);
    --accent: var(--rojo-acento);
    --light: var(--crema);
    --dark: var(--negro-suave);
    --white: var(--blanco);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-cuerpo);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulos);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary);
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

/* Secciones */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-subtitle {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-align: center;
}

/* Utilidades */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}
