/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #292524;
    background-color: #fafaf9;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sections */
section {
    padding: 4rem 1rem;
}

/* Buttons */
.btn-primary {
    background: #b45309;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary:hover {
    background: #92400e;
}

.btn-secondary {
    border: 2px solid #b45309;
    color: #b45309;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
    display: inline-block;
}

.btn-secondary:hover {
    background: #fef3c7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #292524;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #57534e;
}

/* Footer */
footer {
    background: #1c1917;
    color: white;
    padding: 2rem 1rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-content p {
    color: #a8a29e;
    margin-bottom: 1rem;
}

.footer-content .copyright {
    color: #78716c;
    font-size: 0.875rem;
}

/* Utility Classes */
.highlight {
    color: #b45309;
}