/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #B88C09;
    color: black;
}

h1 {
    font-size: 3.5em;
    text-align: center;
}

h2 {
    font-size: 1.8em;
    text-align: center;
}

h3 {
    font-size: 2em;
}

p {
    font-size: 1.25em;
    text-align: center;
}

img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #FFC30D;
    color: black;
    text-align: center;
    padding: 20px 0;
}

header .logo {
    margin: 0;
    font-weight: bold;
    font-size: 2em;
    color: black;
}

header h2 {
    font-size: 2.2em;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}

header a {
    text-decoration: none;
    font-weight: bold;
    color: black;
    transition: color 0.3s ease;
}

header a:hover {
    color: #B88C09;
}

/* Footer */
footer {
    background-color: #FFF61A; 
    color: black;
    text-align: center;
    padding: 20px 0;
}

footer .container p {
    font-size: 1.0em;
}

/* Secciones */
section {
    padding: 40px 0;
}

section .container {
    width: 80%;
    margin: 0 auto;
}


#delivery {
    background-color: #F6B400; 
}

#negocios {
    background-color: #F7D200; 
}

#quienes {
    background-color: #FFDC00; 
}

#hazte {
    background-color: #F5C400;
}

/* Carta de negocios */
.negocios-carta {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.carta {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carta:hover {
    transform: translateY(-5px);
}

.carta img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

button {
    background-color: #B88C09;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}

button:hover {
    background-color: #FFB800;
}
