@font-face {
    font-family: 'Chunkfive';
    src: url('../Fuentes/Chunkfive.otf') format('opentype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../Fuentes/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../Fuentes/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../Fuentes/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

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

/* Text Hierarchy */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Chunkfive', serif;
    font-weight: normal;
}

p,
li,
a {
    font-family: 'Montserrat', sans-serif;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
    border: 2px solid #0a3148;
    background-color: #0a3148;
    color: #f4f4f4;
}

.btn-primary:hover {
    background-color: #ef7f16;
    border-color: #ef7f16;
}

.btn-secondary {
    border: 2px solid #ef7f16;
    background-color: #ef7f16;
    color: #f4f4f4;
}

.btn-secondary:hover {
    background-color: #0a3148;
    border-color: #0a3148;
}

.btn-outline {
    border: 2px solid #0a3148;
    background-color: transparent;
    color: #0a3148;
}

.btn-outline:hover {
    background-color: #fff;
    color: #333;
}