/* ----- ESTILOS GENERALES ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fff0f0;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----- HEADER ----- */
header {
  background-color: #f29b9b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  color: white;
}

header img {
  height: 50px; 
  
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  font-weight: bold;
  color: white;
}

nav a:hover {
  text-decoration: underline;
}

/* ----- HERO (en index.html) ----- */
 .hero {
  
  background: linear-gradient(to bottom, #002654, #000000) no-repeat center center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  flex-wrap: wrap;
  text-align: center;
} 

.hero h1 {
  background-color: rgba(242, 155, 155, 0.8);
  padding: 20px;
  border-radius: 15px;
  font-size: 2.5em;
}
.hero-img{
    display: block;
    width: 30%;
}

  
.hero-text p {
    font-style: italic;
    font-size: 1.3em;
    margin: 20px 0;
  }

.hero-img img{
    width: 100%;
    max-width: 461px;
    height: auto;
    object-fit: contain;
    float: right;
}

.redes {
  margin-top: 15px;
}

.redes img {
  width: 32px;
  height: 32px;
}
.social {
  margin-top: 10px;
}

.social img {
  width: 32px;
  height: 30px;
}

.productos {
    padding: 10px 20px;
    text-align: center;
  }

.quienes-somos {
  text-align: center;
  padding: 10px 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.quienes-somos p {
  margin-top: 10px;
  line-height: 1.6;
}
.btn {
    padding: 10px 20px;
    border: none;
    background-color: #fcaea0;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
  }
  
/* ----- BOTONES ----- */
.btn-primario,
.btn-secundario {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.btn-primario {
  background-color: #f29b9b;
  color: white;
}

.btn-secundario {
  background-color: white;
  color: #f29b9b;
  border: 2px solid #f29b9b;
}

.btn-secundario:hover {
  background-color: #f29b9b;
  color: white;
}

/* ----- TIENDA (en tienda.html) ----- */
.tienda h1 {
  margin-bottom: 30px;
  font-size: 2em;
  text-align: center;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.producto {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.producto img {
  max-width: 50%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* ----- NOSOTROS (en nosotros.html) ----- */
main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

main h1, main h2, main h3, main h4, main h5, main h6, main h7, main h8, main h9, main h10, main h11, main h12, main h13, main h14{
  font-size: 2em;
  margin-bottom: 20px;
  color: #d55;
}

main p, main li {
  padding: 6px 0px;
  font-size: 1.1em;
  line-height: 1.6;
}

main ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.img-nosotros img {
  max-width: 100%;
  margin-top: 30px;
  border-radius: 20px;
}

/* ----- NEWSLETTER (en index.html) ----- */
.newsletter {
  background-color: #f29b9b;
  color: white;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 20px;
  margin-right: 10px;
  width: 250px;
}

.newsletter button {
  background-color: white;
  color: #f29b9b;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

/* ----- FOOTER ----- */
footer {
  background-color: #f29b9b;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

footer nav {
  margin-bottom: 20px;
}

footer nav a {
  margin: 0 10px;
  font-weight: bold;
  color: white;
}

.logo-footer img {
  height: 40px;
  margin-top: 10px;
}

.logo-footer2 img {
  height: 50px;
  margin-top: 10px;
}

.redes a {
  margin: 0 10px;
  font-size: 20px;
}

/* ----- CONTACTO ----- */
.contacto {
  background-color: #ffe6e6;
  padding: 40px 20px;
  margin: 40px auto;
  border-radius: 20px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 0 10px rgba(242, 155, 155, 0.2);
}

.contacto h2 {
  font-size: 2em;
  color: #d55;
  margin-bottom: 10px;
}

.contacto p {
  font-size: 1.1em;
  margin-bottom: 50px;
}

.contacto form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacto input,
.contacto textarea {
  width: 200%;
  max-width: 500px;
  padding: 15px 15px;
  margin-bottom: 20px;
  border: 3px solid #f2b6b6;
  border-radius: 15px;
  font-size: 1em;
}

.contacto textarea {
  resize: none;
}

.contacto button {
  background-color: #f29b9b;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto button:hover {
  background-color: #d55;
}

/* ----- Ver Mas (Productos) ----- */
#productos{
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(242, 155, 155, 0.2);
  padding: 70px;
  border: #f29b9b;
  margin-top: 40px;
  gap: 20px;
}
@font-face {
  font-family: "Mustika";
  src: url(css/Mustika.otf);
}
#info{
  width: 46%;
  padding: 2%;
  font-size: 1em;
  font-family: "Mustika";
  color: #d55;
  margin-bottom: 15px;
  font-size: 1.8em;
}

#info h1 {
  color: #d55;
  margin-bottom: 15px;
  font-size: 1.5em;
}

#info p {
  margin-bottom: 12px;
  font-size: 1.1em;
  line-height: 1.6;
}

#prod{
  width: 46%;
  padding: 2%;
}
#tabl{
  width: 96%;
  padding: 2%;
}
#prod img,
#tabl img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(242, 155, 155, 0.3);
}