@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "poppins", sans-serif;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: rgb(207, 25, 25);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 120px 0 0 0;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;  
}

.logo {
    color: whitesmoke;
    font-size: 25px;
    font-weight: 800px;
    text-transform: uppercase;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: whitesmoke;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover {
    color: rgb(47, 194, 49) 
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-txt {
    flex-basis: 50%;
    margin-right: 50px;
    margin-left: 35px;
}

.header-txt h1 {
    font-size: 55px;
    line-height: 1,2;
    color: whitesmoke;
    margin-bottom: 25px;
}

p {
    font-size: 17px;
    color: white;
    margin-bottom: 50px;
}

.btn-1 {
    display: inline-block;
    padding: 13px 45px;
    background-color: aliceblue;
    color: black;
    font-size: 17px;
    border-radius: 25px;
    margin-bottom: 150px;
}

.btn-1:hover {
    background-color: rgb(47, 194, 49);
}

.header-img {
    flex-basis: 50%;
    margin-bottom: 150px;
}

.mercado-content .container {
    text-align: center;
}

h2 {
    font-size: 45px;
    color:whitesmoke;
    margin-bottom: 15px;
}

.mercado-group {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 20px; 
}

.mercado-1 {
    flex: 1 1 calc(33.333% - 20px); 
    box-sizing: border-box;
    text-align: center; 
    height: 100%;
}

.mercado-1 img {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 15px;
}

.mercado-1 a.btn-1:hover {
    background-color: rgb(47, 194, 49); 
}

.info {
    padding: 120px 0;
    background-color: rgb(207, 25, 25);
    position: relative;
}

.info-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
    height: 650px; 
}

.info-group img {
    width: 90%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 30px; 
}

.info-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6); 
    color: white; 
    padding: 20px;
    max-width: 80%;
    width: auto;
    box-sizing: border-box; 
    border-radius: 10px; 
}

.info-content h2 {
    font-size: 30px; 
    margin-bottom: 15px; 
}

.info-content p {
    font-size: 16px; 
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center; 
}

.footer h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.contact-links {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
    list-style: none; 
    padding: 0; 
}

.contact-links .contact-item {
    margin: 0;
    text-align: center; 
    width: 100%; 
}

.productos {
    background-color: rgb(207, 25, 25);
}
