* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.body {
    color: #030303;
    background-color: #fffdfd;
    margin-top: 90px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E8E3E0; /* Meg Original 9D1139 */
    padding: 10px 50px;
    height: 90px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    width: 100px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #252525;
    text-decoration: none;
}

.btnGetStart {
    background-color: #9D1139;
    padding: 15px 20px;
    border: none;
    color: #fff;
    transition: background-color 0.5s ease, color 0.5s ease;
    cursor: pointer;
}

.btnGetStart:hover {
    background-color: #73142b;
    color: #fff;
}

.main {
    margin-top: 90px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: repeat(7, auto);
}

.grid-item1 {
    grid-column: 1 / span 2; 
    position: relative;
    text-align: center;
}

.full-image {
    grid-column: 1 / span 2;
    position: relative; 
}

.image-1{
    width: 100%;
    height: 90vh;
}

.text-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #611a1ad9; 
    width: 50%; 
    height: 100%;
    text-align: center;
}

.text-over-transparent{
    color: #ffffff;
    font-size: 20px;
    padding: 25px 50px;
    font-weight: 400;
}

.title{
    font-size: 35px;
    padding: 160px 10px 5px 10px;
    color: #f0f0f0;
}

.subtile{
    font-size: 24px;
    padding: 5px 10px 5px 10px;
    color: #f0f0f0;
}

.buttons-section1{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    gap: 40px;
}

.btnExploreServices{
    background-color: #d96c28;
    padding: 15px 20px;
    border: none;
    color: #ffffff;
    border : 2px solid #d96c28;
    width: 130px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.btnLearnMore{
    background-color: #9d113900;
    padding: 15px 20px;
    border: none;
    color: #ffffff;
    border : 2px solid #d96c28;
    width: 130px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.btnExploreServices:hover{
    background-color: #fff;
    border : 2px solid #ffffff;
    color: #9D1139;
    cursor: pointer;
}

.btnLearnMore:hover{
    background-color: #fff;
    border : 2px solid #d96c28;
    color: #d96c28;
    cursor: pointer;
}

.grid-item2 {
    grid-column: 1;
    grid-row: 2; 
    padding: 20px;
    text-align: center;
}

.title-about{
    font-size: 38px;
    font-weight: bold;
    padding: 30px;
    text-align: center;
}

.text-about{
    font-size: 16px;
    padding: 20px 40px;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.5;
    text-align: center;
}

.comments-container-cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px 10px;
    margin: 0px 0 30px;
}

.comments-container{
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px; 
    font-size: 13px;
}

.head-comments{
    font-size: 24px;
    text-align: left;
    margin-bottom: 10px;
}

.comments{
    text-align: left;
}

.image-only{
    display: flex;
    padding: 50px 40px;
    flex-direction: column; 
    align-items: center; 
    justify-content: start;
    height: 90vh;
}

.grid-item3 {
    grid-column: 2;
    grid-row: 2; 
    padding: 20px;
    text-align: center;
}

.image-2 {
    width: 80%;
    height: auto;
    padding: 10px;
    object-fit: cover;
}

.grid-item4 {
    grid-column: 1 / span 2; 
    text-align: center;
}

#wave {
    position: relative;
    top: -15px; 
    background-color: #ffffff;
    z-index: 1;
}

.text-products-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background-color: black;
    color: white;
    margin-top: -20px;
    gap: 40px;
    z-index: 2;
}

.title-products{
    width: 1500px;
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

.text-products{
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.5;
}

.grid-container-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    margin: 0px 0 20px;
    background-color: #000000;
}

.grid-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    text-align: center;
    margin: 0 auto;
    color : #fff;
}

.icon{
    width: 380px;
    height: auto;
}

.title-product{
    font-size: 22px;
    padding: 15px;
    text-align: center;
}

.description{
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    width: 400px;
    margin: 10px 10px 30px 10px;
}

.btnLearnMoreProduct{
    background-color: #9d113900;
    padding: 15px 20px;
    border: none;
    color: #ffffff;
    border : 2px solid #fafafa;
    width: 130px;
    transition: background-color 0.5s ease, color 0.5s ease;
    margin-bottom: 40px;
}

.btnLearnMoreProduct:hover{
    background-color: #fff;
    border : 2px solid #ffffff;
    color: #000000;
    cursor: pointer;
}

.grid-item5 {
    grid-column: 1;
    grid-row: 4; 
    padding: 140px 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item6 {
    grid-column: 2;
    grid-row: 4;
    padding: 20px;
    text-align: center;
}

.searches-container{
    display: flex;
    flex-direction: column;
    padding: 20px 60px;
    margin-top: -20px;
    gap: 40px;
    z-index: 2;
}

.grid-item7 {
    grid-column: 1 / span 2; 
    background-color: #ffffff;
    text-align: center;
}

.feedback-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 50px 20px;
    background-color: black;
    color: white;
    margin-top: -25px;
    gap: 40px;
}

.title-feedback{
    font-size: 45px;
    text-align: left;
}

.text-feedback{
    font-size: 36px;
    line-height: 1.5;
}

.container-feedback-cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px 30px;
    padding: 60px 30px 50px;
    margin-top: -25px;
    color: rgb(255, 255, 255);
    background-color: black;
}

.feedback-card{
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 300px;
    font-size: 13px;
    text-align: left;
    background-color: #9D1139;
}

.stars{
    font-size: 25px;
}

.feedback{
  font-size: 12px;
  width: 250px;
  height: 100px;
  padding: 15px;
  text-align: center;
}

.reference{
  font-size: 14px;
  padding: 15px;
  text-align: center;
  width: 180px;

}

footer {
    background-color: #E8E3E0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    color: #333;
  }

  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-logo{    
    width: 150px;
    height: auto;
  }
  
  .footer-columns {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding: 20px 0;
  }
  
  .footer-column {
    flex-basis: 22%;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .pages {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #333;
  }
  
  .footer-column ul li a:hover {
    color: #f50057;
  }
  
  .footer-form {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }

  .fields {
    width: 100%;
    padding: 4px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #2b2b2b;
    background-color: transparent;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .fields:focus {
    border-bottom: 2px solid #f50057; /* Color de borde al enfocar */
  }
  
  .btnSend {
    padding: 10px 20px;
    background-color: #9D1139;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .btnSend:hover {
    background-color: #73142b;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    gap: 20px;
  }
  
  .footer-bottom p {
    margin: 0;
  }

  .copyright {
    font-size: 14px;
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .footer-links li a {
    text-decoration: none;
    color: #333;
  }
  
  .footer-links li a:hover {
    color: #9D1139;
  }
  
  .footer-social a {
    margin-left: 10px;
    color: #333;
  }
  
  .footer-social a:hover {
    color: #9D1139;
  }
  
  .footer-social i {
    font-size: 14px;
  }
  
  .file-hidden {
    display: none; /* Oculta el input de archivo */
  }
  
  .attach-icon {
    display: inline-block;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border-radius: 3px;
    background-color: #f4f4f400;
    transition: background-color 0.3s ease;
  }
  
  .attach-icon i {
    margin-right: 5px;
  }
  
  .attach-icon:hover {
    background-color: #e0e0e0;
  }
  

/* -------------------------------------- */
/* Nosostros */

.grid-container-about {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: repeat(2, auto);

}

.grid-item-nosotros{
    grid-column: 1 / span 2; 
    padding: 50px 160px;
    text-align: center;
}

.title-about{
  font-size: 40px;
}
.text-nosotros{
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
    padding: 20px 20px 20px 20px;
}


.grid-item-teem{
    grid-column: 1 / span 2; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-nosotros-container{
  display: flex;
  flex-direction: column;
  width: 95%;
  gap: 10px;
  padding: 70px;
}

.grid-container-teem {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  margin: 30px 0 20px;
}

.person{  
    width: 250px;
    height: 265px;
  }

.name{ 
  font-size: 20px;
}

.position {
  font-size: 16px;
}

.details{
  font-size: 14px;
  width: 250px;
}