/* Tipografía base */
body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Encabezado */
header {
    background-color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    color: #080808;
}

.nombre-sitio {
    font-size: 3rem;
    margin: 0;
}

.nombre-sitio span {
    color:#037bc0;
}

/* Navegación */
.contenedor-navegacion {
    background-color: #ffffff;
}

.nav-principal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}

.nav-principal {
    color: #000;
    font-weight: 700;
}

/* Hero */
.hero {
    background-image: url(img/principal);
    background-size: cover;
    background-position: center;
    height: 200%px;
    width: 200%;
    justify-content: center;

}

/* Contenedor */
.contenedor {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Texto centrado */
.text-center {
    text-align: center;
}



/* Categorías */
.categorias {
    padding: 5rem 0;
}

.listado-categorias {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.categoria {
    flex: 1;
    text-align: center;
}

.categoria a {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #000000;
}

/* Sobre Nosotros */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fuente general */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #030303;
}

/* Sección principal en dos columnas */
.seccion-nosotros {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Columna de imagen */
.columna-imagen {
  flex: 1;
}

.columna-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Columna de texto */
.columna-texto {
  flex: 1;
  background-color: #0077c8;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.columna-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.columna-texto p {
  font-size: 1rem;
  line-height: 1.6;
}


/* Productos */
.contenido-principal {
    padding: 3rem 0;
}

.listado-productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.producto {
    background-color: #00649e;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(252, 252, 252, 0.1);
}

.texto-producto h3 {
    margin-top: 0.5rem;
}

.precio {
    color: #ffffff;
    font-weight: 900;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background-color:#8cbc00;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ffffff;
}

/* Footer */
.site-footer {
    background-color: #fff;
    color: #000000;
    padding: 4rem 0 2rem 0;
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-menu a {
    display: block;
    margin: 0.5rem 0;
    color: #000000;
    font-weight: 400;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #ccc;
}
