@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');
/*:root{
    --clr-main:#963b20;
    --clr-main-light:#d8603b;
    --clr-white:#ececec;
    --clr-gray:#e2e2e2;
    --clr-red:#961818;
}
*{
    margin: 0;
    padding: .5rem;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}
h1, h2, h3, h4, h5, h6, p, a, input, textarea{
    margin: 0;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
    font-size: 2rem;
}
.wrapper{
        width: 200vh;
}
.titulo{
    color: var(--clr-main);
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: var(--clr-white);
    padding: 1rem;
    gap: 2rem;
    border-radius: 1rem;
    position: sticky;
}
.nombre{
    font-size: 3rem;
}
.contacto{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
body {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 4fr;
    background-color: var(--clr-main);
}
h2{

    opacity: 100%;
    color: black;  
}
button{
    top: 50%;
    border-radius: .5rem;
    background-color: var(--clr-gray);
    width: 15rem;
    height: 9rem;
    border: none;
    display:flex;
    align-items: center;
    border: 2px solid var(--clr-white);
    transition: background-color .2s, color .2s;
    justify-content: center;
    font-size: 2rem;
    opacity: 90%;
}
button:hover{
    background-color: var(--clr-main);
    cursor: pointer;
}
.contenedor{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    
}
.contenedor img{
    width: 100%;
    border-radius: 1rem;
    
}
.ver-catalogo{
    position:absolute;
    top: 25.5%;
    left: 42.5%;
}

.slogan h2{
    display: none;
    color: #e2e2e2;
    position: absolute;
    left: 24%;
    top: 30%;

}
.info{
    background-color: var(--clr-white);
    border-radius: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    text-align: center;
    margin-top: 1REM;
}
*/
/* Reset de estilos y estilos generales */

/* Reset de estilos y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.titulo {
    text-align: center;
    margin-bottom: 20px;
}

.nombre p {
    font-size: 36px;
    color: #8b0000; /* Rojo oscuro */
}

.contacto a {
    text-decoration: none;
    color: #8b0000; /* Rojo oscuro */
    margin: 0 10px;
}

.info {
    text-align: justify;
    margin-bottom: 20px;
}

.contenedor {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.slogan {
    text-align: center;
    margin: 20px 0;
    color: #8b0000; /* Rojo oscuro */
}

.ver-catalogo button {
    background-color: #8b0000; /* Rojo oscuro */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.ver-catalogo button:hover {
    background-color: #660000; /* Rojo más oscuro */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Estilos generales */

/* ... (tus estilos actuales) ... */

/* Media Query para pantallas de hasta 600px */
@media screen and (max-width: 600px) {
    .nombre p {
        font-size: 24px;
    }

    .contacto {
        text-align: center;
        margin-top: 10px;
    }

    .info {
        padding: 10px;
    }

    .contenedor {
        flex-direction: column;
    }

    .ver-catalogo {
        text-align: center;
        margin-top: 20px;
    }

    .slogan {
        text-align: center;
        margin-top: 20px;
    }

    img {
        width: 100%;
        height: auto;
    }
}


