

body {
      font-family: 'Segoe UI', sans-serif;
      color: #fff;
    }

/* Botón de WhatsApp flotante */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.site-header {
  /*position: sticky;
  top: 0;*/
  background-color:transparent;
  backdrop-filter: blur(8px);
}
.header-inner {
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-size: 20px;
  background-color:transparent;
  backdrop-filter: blur(8px);
}
.logoempresa { 
    height: 50px; 
    padding-top: 10px;
}


.hero-section {
    position: relative;
    height: 100vh;
    background: url('/img/floralis.jpg') no-repeat center center fixed;
    filter: saturate(1.4) contrast(1.2) brightness(0.7);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 2rem;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: inherit;
    opacity: 0.4;
    z-index: 1;
}


/*Formulario*/
.contact-form {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgb(0, 183, 255);
    color: #fff;
}
.contact-form h3 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #00aaff;
    font-weight: bolder;
}
.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #0e0a0a;
    resize: vertical;
    appearance: none;
}

.contact-form button {
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0090dd;
}


/*Servicios*/
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(to bottom, #003366, #0055aa,#0077cc);
    padding: 60px 20px;
}
/*Tarjetas seccion servicios*/
.card {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}



/*Carrusel*/
.carrusel-section {
    background: linear-gradient(to bottom, #0077cc, #0055aa,#003366);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.carousel-container {
    background: linear-gradient(to bottom, #0077cc, #0055aa,#003366);
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    display: flex;
    overflow-y: auto;
    /*scroll-snap-type: x mandatory;*/
    gap: 30px;
    /*padding: 20px;*/
    
}

/*Configuracion Items Carrusel*/
/*.services2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(to bottom, #0077cc, #0055aa,#003366);
    padding: 60px 20px;
}
.card2 {
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    background-color: dimgray;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
    transition: transform 0.3s ease;
    min-width: 250px;
}*/
.carousel-item {
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
    transition: transform 0.3s ease;
}
/*.carousel-item:hover {
    transform: scale(1.05);
}*/
.carousel-item h3{
    font-size: 35px;
    margin-bottom: 20px;
    color: #00aaff;
    font-weight: bolder;
}
.carousel-item p{
    font-size: 23px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bolder;
}


.logo-container {
    background: linear-gradient(#585757,#838282,#a7a5a5,#838282,#585757);
    width: 100%; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.logo-container:hover{
    transition: transform 0.3s ease;
}

.logos {
    position: relative;
    background-color:transparent;
    width: 100%; 
    padding: 5px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/*Quienes somos*/
.quienes-somos{
    background: linear-gradient(to bottom, #585757,#648097,#477296,#34688d,#015ea0, #0055aa);
}
.quienes-somos h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #0284c5;
    font-weight: bolder;
    text-align: center;
}
.quienes-somos p{
    text-align: center;
    font-size: 20px;
    color: #fff;
}


/*Pie*/
footer {
      background: linear-gradient(to bottom, #0055aa, #001f3f);
      padding: 40px 20px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      color: #ccc;
      border-top: 1px solid var(--muted-2);
      padding: 28px 0;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
      margin: 10px;
    }
