* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#app {
  width: 100%;
}

#logoImageLogin {
  height: 20vh;
  width: 20vh;
  object-fit: fill;
  border-radius: 200px;
  align-self: center;
  margin: 20px 0;
  background-color: #000;
}

#header {
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header a img {
  height: 6.8vw;
}

#header_container {
  display: flex;
  align-items: center;
}

#header_container a {
  font-size: 1.2vw;
}

.nav {
  display: flex;
  margin-left: 4vw;
  gap: 4vw;
}

.box-wc {
  width: 85%;
  margin-top: 10.7vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img_product {
  max-width: 35%;
}

.button_contact {
  padding: 1.2vw 3.8vw;
  border-radius: 40px;
  background-color: #000;
  color: #fff;
  border-style: solid;
  border-color: #ffffffc8;
  border-width: 1px;
  font-size: 1.1vw;
  margin-right: 2vw;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav a:hover {
  text-decoration: underline;
}

.container1 {
  width: 100%;
  height: 35vw;
  background: url('/images/home.svg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  flex-direction: column;
}

h1 {
  font-size: 3.8vw;
  text-align: center;
  line-height: 1.45;
  color: #fff;
  font-weight: bold;
}

.search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 55vw;
  height: 3.7vw;
  margin-top: 6vw;
}

.search-bar {
  border: none;
  height: 100%;
  flex: 1;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  padding-left: 2.3vw;
  font-size: 1.5vw;
}

.search-bar:focus {
  outline: none;
}

.search-bar::placeholder {
  color: #000;
  font-weight: bold;
}

.search-box button {
  border: none;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  height: 100%;
  width: 10%;
  clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%);
}

.search-box button:hover {
  background-color: #f1f1f1;
}



.line {
  display: block;
  height: 1px;
  width: 50vw;
  border-bottom: solid;
  border-width: 0.8vw;
  border-color: #e83f38;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
}

.line2 {
  width: 22vw;
  border-width: 0.7vw;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.slider-container {
  overflow: hidden;
  text-align: center;
  font-size: 35px;
  background-color: #e73939;
  min-width: 100%;
  width: 100%;
  height: 30vw;
  position: relative;
}

.slider-container h2 {
  margin-top: 3.5vw;
  font-size: 3.2vw;
}

h2 {
  margin-bottom: 0.2vw;
}

.slider-container p {
  font-weight: bold;
}

.text-description {
  font-size: 30px;
  margin-bottom: 50px;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider_item_container {
  display: flex;
  overflow: hidden;
  gap: 2vw;
}

.slider_item_container img {
  width: 10vw;
}

.slider-button {
  width: 4.5vw;
  height: 12vw;
  background-color: rgba(0, 0, 0, 0.5);
  color: #000000;
  border: none;
  cursor: pointer;
}

.slider-button:hover {
  background-color: #1a1a1a;
}

.container-productos {
  padding: 0 5.5vw;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: black;
}

.container-productos p {
  color: #e73939;
  margin-top: 1.5vw;
  margin-bottom: 0;
}

.header {
  color:  #e73939; 
  font-size: 3.5vw;
  padding-top: 4.5vw;
  margin-left: 0.7vw;
}

.container-items{
  display: grid;
  margin-bottom: 10vw;
  grid-column-gap: 3vw;
  grid-template-columns: repeat(3, 1fr);
}


.product-category {
  background-color: #ffffff; 
  margin-top: 3vw;
  display: flex;
  max-height: 30vh;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.5);
}


.product-category img {
  height: auto;
  height: 100%;
  object-fit: cover;
}

.product-text-box {
  text-align: left;
  flex: 1;
  padding: 1vw;
}

.list-items {
  margin-left: 2vw;
}

.list-items li {
  color: #e83f38;
  font-weight: bold;
}

.product-text-box p {
  font-size: 1vw;
}

.button-view-product {
  width: 3vw;
  border-radius: 0;
  border: none;
  background-color: #e73939;
  color: #fff;
}

.button-view-product img {
  width: 100%;
  height: 17%;
  object-fit: contain;
}

/* Encabezado de cada categoría */
.product-category h2 {
  color: #e83f38; /* Texto rojo */
  font-size: 1.7em;
  margin-bottom: 15px;
}

footer {
  background-color: #000000;
  width: 100%;
  padding: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  height: 6.8vw;
}

footer p {
  color: #fff;
  font-weight: bold;
  font-size: 1.1vw;
}

footer img {
  width: 13%;
}

/* public/css/nosotros.css */

.nosotros-container {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.header-section {
  background: url('../images/about-back.svg');
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20vw;
}

.header-title {
  font-size: 3.5vw;
  font-weight: bold;
  margin: 5%;
}

.about_line1 {
  width: 15vw;
  border-width: 0.6vw;
  border-color: #000;
}

.header-underline {
  width: 50px;
  height: 5px;
  background-color: #d32f2f;
  margin: 10px auto;
}

.content-section {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  margin-top: 0.5vw;
}

.image-section {
  display: flex;
  gap: 20px;
  z-index: 1000;
  margin-left: 2vw;
}

.about-description-image1 {
  position: absolute;
  left: 0;
  width: 16vw;
}

.about-description-image2 {
  width: 30vw;
  margin-top: -5vw;
}

.text-quality .company-title{
  text-transform: none;
}

.text-quality {
  margin-left: 5vw;
}

.content-quality {
  background-color: #1a1a1a;
  padding-top: 3vw;
  padding-bottom: 8vw;
  display: flex;
  flex-direction: row;
}

.image-section2 {
  margin-left: 5vw;
}

.text-quality ul {
  margin-left: 2vw;
  padding-right: 4vw;
}

.quality_line {
  width: 34vw;
}

.quality-image {
  width: 13vw;
  left: -2vw;
  top: 0;
  position: absolute;
  z-index: 50;
}

.quality-image2 {
  position: relative;
  width: 27vw;
  margin-top: 5vw;
}

.quality-image3 {
  left: -6vw;
  position: absolute;
  bottom: -5vw;
  z-index: 100;
  width: 20vw;
}

.image-section2 {
  position: relative;
  margin-right: 2vw;
}

.text-section {
  flex: 1;
  padding: 3vw;
  padding-right: 7vw;
  margin-bottom: 5vw;
}

.about_line2 {
  position: relative;
  border-width: 0.7vw;
  margin-top: 0.6vw;
  width: 50vw;
  right: 13.5vw;
}

.company-title {
  font-size: 3.5vw;
  font-weight: bold;
  color: #e83f38;
  text-transform: uppercase;
}

.company-description {
  font-size: 1.4vw;
  margin-top: 2vw;
  color: #fff;
}

.content-evolution .company-description {
  padding: 0 7vw;
}

.evolution_line {
  width: 32vw;
}

.content-evolution {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  padding-top: 4vw;
  text-align: center;
}

.text-evolution .company-title {
  text-transform: none;
}

.content-evolution .text-section {
  padding-top: 0;
}

.products-container {
  width: 100vw;
}

.products-line {
  width: 17vw;
}

.products-list-container {
  background-color: #000;
  padding-bottom: 5vw;
}

.products-list-container .search-box {
  margin-top: 0;
}

.form-products {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3vw;
}

.select-products {
  height: 3.7vw;
  border-radius: 50px;
  width: 12vw;
  font-size: 1.5vw;
  font-weight: bold;
  text-align: center;
  margin-left: 1vw;
}

.search-button2 {
  background-color: #e73939 !important;
}

/* GALERÍA */
.galeria {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  width: 90%;
  margin: auto;
}

/* TARJETAS DE PRODUCTOS */
.producto {
  background: white;
  text-align: center;
  transition: transform 0.2s;
  width: 90%;
  height: 40vh;
  margin-bottom: 4.5vh;
  display: flex;
  flex-direction: column;
}

.producto:hover {
  transform: scale(1.05);
}

.producto img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.product_title {
  font-size: 1.6vw;
  font-weight: bold;
  color: #e82630;
  text-align: left;
  
}

.consult_text {
  font-size: 1vw;
  color: #e82630;
  font-weight: bold;
  text-align: left;
  margin-bottom: 1vw;
}

.product_text_container {
  margin: 0.8vw 1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.text-black {
  color: #fff;
  margin: 2vw 5vw;
}

.products-list-container img {
  border-radius: 0;
}

/* public/css/contact.css */

.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-color: #fff;
  font-family: Arial, sans-serif;
 
}
.main{
  height:83vh;
}

.contact-left {
  width: 50%;
}

.contact-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-right {
  width: 35vw;
}

.contact-title {
  font-size: 3vw;
  font-weight: bold;
  color: #000;
}

.contact-underline {
  width: 50px;
  height: 3px;
  background-color: #d32f2f;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.form-container .form-group input, .form-group textarea{
  width: 90%;
  margin-left: 5%;
}

.form-container {
  width: 90%;
  margin-top: 2vw;
}

.send-button{
  width: 90%;
  margin-left: 5%;
  padding-bottom: 30px;
  color:#000;
}
.send-button .submit-btn{
  color:#000000;
}
.form-group input, .form-group textarea {
  padding: 1.5vw;
  font-size: 16px;
  border: 2px solid #000000;
  border-radius: 25px;
  outline: none;
  height: 4vw;
}

.form-group input::placeholder, textarea::placeholder {
  color: #000;
  font-weight: bold;
}

.form-group textarea {
  resize: vertical;
  height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #d32f2f;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #a02c2c;
}

.contact-container {
  background: url('/images/contact-background.svg');
  width: 100vw;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.contact-right {
  background-color: #fff;
  padding-top: 6vw;
  padding-bottom: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}