/* Reinicio de estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #fff;
  line-height: 1.6;
}

/* Hero section */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  background: url('fondo4.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Superposición semitransparente */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.26);
  z-index: 1;
}

/* Contenido del Hero */
.contenido-hero {
  position: relative;
  z-index: 2;
  animation: fadeIn 2s ease-in-out;
}

.contenido-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 450px;
  color: #ffffff;
}

.contenido-hero h1 span {
  color: #00b4d8;
}

.contenido-hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.boton {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #00b4d8;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.boton:hover {
  background-color: #0077b6;
}

/* Animación de entrada */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Adaptación a dispositivos más pequeños */
@media (max-width: 768px) {
  .contenido-hero h1 {
      font-size: 16PX;
  }

  .contenido-hero p {
      font-size: 1rem;
  }

  .boton {
      font-size: 0.9rem;
      padding: 8px 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.seccion-imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #f4f4f4; /* Color de fondo opcional */
}

.seccion-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Opcional: bordes redondeados */
}

/* General */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}
/* Reset de márgenes y relleno */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos para la sección de presentación */
.presentation {
  position: relative;
  height: 100vh; /* Altura completa de la ventana del navegador */
  overflow: hidden; /* Evita el desbordamiento de la imagen */
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* La imagen cubre toda la sección sin deformarse */
  filter: brightness(0.6); /* Oscurece la imagen para mejorar la visibilidad del texto */
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centra el contenido en el medio */
  text-align: center;
  color: white;
  padding: 20px;
}

.content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #007BFF;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh; /* Ocupa toda la altura de la ventana */
  background-size: cover; /* La imagen cubre toda la sección */
  background-position: center; /* Centra la imagen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Overlay */
.hero-overlay {
  background: rgba(0, 0, 0, 0.5); /* Crea un efecto de superposición oscura */
  padding: 0.5rem;
  border-radius: 10px;
  margin-top: 250px;
  width: 25%;
  max-width: 900px; /* Ancho máximo para pantallas grandes */
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-in-out;
}

.hero-overlay p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-in-out;
}

/* Botón */
.btn-primary {
  padding: 1rem 2rem;
  font-size: 5rem;
  color: white;
  background-color: #00b4d8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  margin-bottom: -350px;
  border-radius: 5px;
  margin-left: 150px;
  transition: background-color 0.3s ease;
  animation: fadeInUp 1.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #00b4d8;
}

/* Animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.5rem;
  }
  .hero-overlay p {
    font-size: 1.2rem;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

  /* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
  }
  
  header {
    background: linear-gradient(90deg, #00b4d8, #00b4d8);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  header nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
  }
  
  header nav a:hover {
    color: #00b4d8;
  }
  
  .hero {
    position: relative;
    text-align: center;
    color: white;
  }
  
  .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slide-in 1s ease-out;
  }
  
  .hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-overlay .btn-primary {
    background: #00b4d8;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .hero-overlay .btn-primary:hover {
    background: #007BFF;
  }
  
  .content-section {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .content-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0077ff;
    animation: fade-in 1s ease-in-out;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .info-item {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }
  
  .info-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }
  
  .info-item h3 {
    margin: 1rem 0;
    color: #333;
    font-size: 1.25rem;
  }
  
  .info-item p {
    font-size: 0.95rem;
    color: #666;
  }
  
  .btn-primary {
    display: inline-block;
    background: #00b4d8;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #00b4d8;
  }
  
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  footer p {
    font-size: 0.9rem;
  }
  
  /* Animaciones */
  @keyframes slide-in {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Responsive */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    header nav a {
      margin: 0.5rem 0;
    }
  
    .hero-image {
      height: 250px;
    }
  
    .hero-overlay h1 {
      font-size: 2rem;
    }
  
    .hero-overlay p {
      font-size: 1.2rem;
    }
  }
  
  
  a {
    text-decoration: none;
  }
  
  h2.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2E8BC0;
  }
  
  p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  
  /* Header */
  header {
    background-color: #2E8BC0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .logo {
    font-size: 2rem;
    font-weight: bold;
  }
  
  header nav a {
    color: white;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
  }
  
  header nav a:hover {
    color: #FFD700;
  }
  
  /* Bienvenida */
  .welcome {
    background: linear-gradient(135deg, #2E8BC0, #145DA0);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  
  .welcome h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .welcome p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  
  .welcome .btn-primary {
    background-color: #FFD700;
    color: #2E8BC0;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .welcome .btn-primary:hover {
    background-color: #FFBF00;
  }
  
  /* Servicios */
  .services {
    background-color: white;
    padding: 4rem 2rem;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .service-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: #555;
    margin-bottom: 1rem;
  }
  
  /* Catálogo */
  .catalog {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
  }
  
  .product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .product-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .product-card img {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .product-card h3 {
    font-size: 1.5rem;
    color: #2E8BC0;
    margin-bottom: 0.5rem;
  }
  
  .product-card p {
    color: #555;
    font-size: 0.95rem;
  }
  
  /* Contacto */
  .contact {
    background-color: #2E8BC0;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .contact form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact input,
  .contact textarea {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
  }
  
  .contact button {
    background-color: #FFD700;
    color: #2E8BC0;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact button:hover {
    background-color: #FFBF00;
  }
  
  /* Footer */
  footer {
    background-color: #00b4d8;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
  }
  /* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  header {
    background-color: #00b4d8;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  header nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
  }
  
  header nav a:hover {
    text-decoration: underline;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    opacity: 0.8;
  }
  
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .btn-primary {
    background-color: #0077ff;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #00b4d8;
  }
  
  /* Content Section */
  .content-section {
    padding: 2rem;
    background-color: white;
    text-align: center;
  }
  
  .content-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
  }
  
  /* Info Grid */
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
  }
  
  .info-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .info-item:hover {
    transform: scale(1.05);
  }
  
  .info-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .info-item h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #333;
  }
  
  /* Colores Section */
  .colores-section {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
  }
  
  .colores-section h2 {
    font-size: 2rem;
    color: #0077ff;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .colores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
  }
  
  .color-item {
    background: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .color-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .color-box {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .color-item h3 {
    font-size: 1.25rem;
    color: #333;
  }
  /* Sección de Servicios */
.services {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    color: #0077ff;
    margin-bottom: 2rem;
  }
  
  /* Tarjetas de Servicios */
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
/* Sección de Servicios */
.services {
    background-color: #f3f4f7;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Título de la sección */
  .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  /* Tarjetas de Servicios */
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-items: center;
    position: relative;
    z-index: 1;
  }
  
  .service-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  }
  
  .service-card .service-icon {
    font-size: 4rem;
    color: #00b4d8;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .service-card:hover .service-icon {
    color: #00b4d8;
    transform: scale(1.1);
  }
  
  .service-card h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .service-card a {
    font-size: 1rem;
    color: #fff;
    background-color: #00b4d8;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
  }
  
  .service-card a:hover {
    background-color: #00b4d8;
  }
  
  /* Animación de aparición */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .service-card {
    animation: fadeInUp 0.6s ease-in-out;
  }
  

  /* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #f5f5f5;
}

/* Sección de Formulario */
.contact-form-section {
  align-items: center;
  padding: 2rem;
  background-color: #00b4d8;
  color: #fff;
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #00b4d8;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid #00b4d8;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form .btn-submit {
  background-color: #00b4d8;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
  background-color: #00b4d8;
}

/* Footer */
.footer {
  align-items: center;
  background-color: #00b4d8;
  color: #fff;
  padding: 2rem 1rem;
  margin-top: 350px;}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 0.5rem 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.social-icons img {
  margin-right: 0.5rem;
  width: 34px;
  height: 34px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}
/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

/* Carrusel */
.carousel-section {
  padding: 3rem 1.5rem;
  background-color: #fff;
  text-align: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-item {
  display: none;
  animation: fadeIn 1s ease-in-out;
}

.carousel-item.active {
  display: block;
}

.carousel-controls {
  margin-top: 1rem;
}

.carousel-prev, .carousel-next {
  background-color: #00b4d8;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
  background-color: #00b4d8;
}

/* Información Adicional */
.extra-info {
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
  text-align: center;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.info-item {
  flex: 1 1 200px;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.btn-whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.btn-whatsapp-float:hover {
  transform: scale(1.1);
}

.btn-whatsapp-float img {
  width: 30px;
  height: 30px;
}
.contact {
  padding: 2rem;
  background-color: #f9f9f9;
  max-width: 500px; /* Cambié de 700px a 500px para hacerlo más delgado */
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact .section-title {
  text-align: center;
  font-size: 1.8rem; /* Ajusté el tamaño de la fuente */
  color: #333;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem; /* Reduje ligeramente el margen entre los campos */
}

.form-group label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.form-group input[type="checkbox"] {
  margin-right: 0.5rem;
}

.form-group a {
  color: #007BFF;
  text-decoration: none;
}

.form-group a:hover {
  text-decoration: underline;
}

button[type="submit"] {
  padding: 1rem 2rem;
  background-color: #00b4d8;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem; /* Añadí un margen superior para espaciar mejor el botón */
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #00b4d8;
}
/* Reinicio de estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

/* Contenedor del formulario */
.formulario-contacto {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.formulario-contacto h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #00b4d8;
}

/* Campos del formulario */
.campo {
  margin-bottom: 15px;
}

.campo label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
}

.campo input:focus,
.campo textarea:focus {
  border-color: #00b4d8;
  outline: none;
}

/* Botón */
.boton {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #00b4d8;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #00b4d8;
}

/* Adaptación para dispositivos pequeños */
@media (max-width: 768px) {
  .formulario-contacto {
      padding: 15px;
  }

  .boton {
      font-size: 0.9rem;
      padding: 12px;
  }
}
/* Mensaje de éxito */
.mensaje-exito {
  margin-top: 20px;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
}
/* Estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

/* Formulario de contacto */
.formulario-contacto {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.formulario-contacto h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #00b4d8;
}

.campo {
  margin-bottom: 15px;
}

.campo label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
}

.campo input:focus,
.campo textarea:focus {
  border-color: #00b4d8;
  outline: none;
}

/* Botón */
.boton {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #00b4d8;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #00b4d8;
}

/* Mensaje de éxito */
.mensaje-exito {
  margin-top: 20px;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: #00b4d8;
  color: #fff;
  padding: 40px 20px;
  margin-top: 30px;
}

.footer-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-contenido h3,
.footer-contenido h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-contenido p {
  font-size: 1rem;
  margin: 5px 0;
}

.footer-contenido a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-contenido a:hover {
  color: #fff;
}

.redes-sociales .iconos-redes {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.redes-sociales .iconos-redes a img {
  width: 35px;
  height: 35px;
}

.suscripcion form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.suscripcion input {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.suscripcion button {
  padding: 10px 15px;
  font-size: 1rem;
  background-color: #ffcc00;
  color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.suscripcion button:hover {
  background-color: #e6b800;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .footer-contenido {
      flex-direction: column;
  }

  .redes-sociales .iconos-redes {
      flex-direction: column;
  }

<style>
  .iconos-redes img {
      width: 40px;
      height: 40px;
      margin: 5px;
      transition: transform 0.3s;
  }
  .iconos-redes img:hover {
      transform: scale(1.2);
  }