/* BRAND COLOR */
:root {
  --brand-color: #51ca7c; /* LightSeaGreen */
  --brand-color-dark: #1c8f85; /* tono más oscuro para hover */
  --brand-color-light: #238bd1; /* para acentos claros */
}

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

body {
  line-height: 1.6;
  color: #5e5d5d;
  background-color: #fdfdfd;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background-color: #ffffffcc; 
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--brand-color);
  text-decoration: none;
}

.nav-items a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-items a:hover {
  color: var(--brand-color);
}

/* HERO */
.hero {
  height: 80vh;
  background-image: url('../images/family.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 0 1rem;
}

.hero::after {
  content: '';
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  margin: 0.5rem 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--brand-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--brand-color-dark);
}

.btn-secondary {
  background-color: #ffc107;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e0a800;
}

/* ABOUT */
.about {
  padding: 6rem 1rem;
  background-color: #f8f9fa;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--brand-color);
}

.about p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* BENEFITS */
.benefits {
  padding: 6rem 1rem;
  background-color: var(--brand-color); /* verde principal */
  text-align: center;
  color: #fff;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background-color: #238bd1; /* verde secundario */
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-title {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.benefit-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.benefit-content p {
  margin: 1rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

/* Active class to open accordion */
.benefit-card.active .benefit-content {
  max-height: 200px; /* ajustable según contenido */
  padding: 1rem 1.5rem;
}

/* SERVICES */
.services {
  padding: 6rem 1rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--brand-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Card general */
.service-card {
  position: relative;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.service-card::before {
  content: '';
  flex: 7;
  background-size: cover;
  background-position: center;
}

.service-content {
  flex: 3;
  background-color:  var(--brand-color);
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  font-size: 1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Asignando imágenes a los servicios */
.service-home::before { background-image: url('../images/home.jpg'); }
.service-business::before { background-image: url('../images/business.jpg'); }
.service-express::before { background-image: url('../images/express.jpg'); }
.service-mudanza::before { background-image: url('../images/mudanza.jpg'); }

/* ADVANTAGES */
.advantages {
  padding: 6rem 1rem;
  background-color: #f8f9fa;
  text-align: center;
}

.advantages h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--brand-color);
}

.advantages ul {
  list-style: none;
  font-size: 1.1rem;
  color: #555;
}

.advantages li {
  margin-bottom: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .nav-items a {
    margin: 0.5rem 0;
  }

  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .service-card {
    height: 350px;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content p {
    font-size: 0.95rem;
  }
}

/* Branding line */
.branding-line {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--brand-color);
  font-weight: 600;
  margin: 3rem 0;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.branding-line::before,
.branding-line::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid var(--brand-color);
  margin: 0 1rem;
}
/* CONTACT SECTION GRID */
.contact {
  padding: 6rem 1rem;
  background-color: #f0f8f8; /* color de fondo suave */
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Texto a la izquierda */
.contact-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #238bd1; /* LightSeaGreen */
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Formulario a la derecha */
.contact-form-wrapper {
  background-color: #238bd1; /* LightSeaGreen */
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #e0f7f7;
}

.contact-form button {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  background-color: #145c55; /* verde más oscuro para contraste */
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0f423e;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    margin-top: 2rem;
  }
}
/* MAPA */
.map-wrapper {
  margin-top: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Círculo animado */
.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: var(--brand-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.5);
    opacity: 0.7;
  }
}

/* Texto animado */
.service-location {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--brand-color);
}

#animated-city {
  color: #238bd1;
  font-weight: bold;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    margin-top: 2rem;
  }
}

/* MODAL STYLES */
.modal {
  display: none; 
  position: fixed; 
  z-index: 200; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.6); 
  transition: all 0.3s ease;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.modal .close {
  color: #333;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal .close:hover {
  color: #20B2AA; /* branding color */
}

.modal h2 {
  margin-bottom: 1.5rem;
  color: #20B2AA;
  text-align: center;
}

.modal .form-group {
  margin-bottom: 1rem;
}

.modal label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.modal input,
.modal select,
.modal textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.modal button.btn-primary {
  width: 100%;
  padding: 0.8rem;
  margin-top: 1rem;
  border-radius: 50px;
  font-size: 1rem;
}
/* MODAL */
.modal-content {
  padding: 1.5rem;
  width: 95%;
  max-width: 480px;
  border-radius: 12px;
}

/* FORM ROWS */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-row .form-group {
  flex: 1 1 48%; /* Dos por fila por defecto */
  margin-bottom: 0.8rem;
}

.form-row .form-group:nth-child(3) {
  flex: 1 1 30%; /* Para 3 campos en la fila de baños */
}

input, select, textarea {
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

/* Responsive: menos de 500px ancho */
@media screen and (max-width: 500px) {
  .form-row .form-group {
    flex: 1 1 100%;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.modal-content {
  background: #fff;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
button {
  padding: 8px 10px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button.btn-primary {
  background-color: var(--brand-color);
  color: white;
  border: none;
  margin-top: 10px;
  cursor: pointer;
}

button.btn-primary:hover {
  background-color: #285e61;
}

#formMessage {
  font-size: 14px;
  color: #238bd1;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
/* Contenedor general de la galería */
.gallery-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 30px;
}

/* Columna 1: Imagen Principal */
.gallery-image {
    flex: 1;
    max-width: 1200px;
    position: relative;
}

.main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
}

/* Columna 2: Texto y Carrusel */
.gallery-info {
    flex: 1;
    max-width: 400px;
    margin-left: 20px;
}

.image-description h3 {
    font-size: 1.8rem;
    color: #238bd1; /* color de marca */
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: opacity 0.6s ease-in-out;
}

.image-description p {
    font-size: 1.1rem;
    color: #264653;
    line-height: 1.5;
    font-family: 'Nunito', sans-serif;
    transition: opacity 0.6s ease-in-out;
}

/* Carrusel de imágenes */
.image-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.carousel-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Efectos de fade */
.fade {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.fade-out {
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-wrapper {
        flex-direction: column;
    }

    .gallery-image,
    .gallery-info {
        max-width: 100%;
        margin-left: 0;
    }

    .image-carousel {
        justify-content: center;
    }
}
/* General Section Styles */
.faq {
  background-color: #f3f4f6; /* Fondo claro */
  padding-top: 40px;
  padding-bottom: 40px;
}

.faq h2 {
  font-size: 2.5rem; /* Título grande */
  font-weight: 700; /* Texto negrita */
  color: var(--brand-color); /* Color de la marca */
  margin-bottom: 20px;
}

.faq p {
  font-size: 1.125rem; /* Tamaño de texto más grande para la explicación */
  color: #6b7280; /* Gris oscuro */
}

/* Contenedor de las preguntas */
.faq-item {
  background-color: #ffffff; /* Fondo blanco para cada pregunta */
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Sombra más fuerte al pasar el mouse */
}

/* Botón de la pregunta */
.faq-question {
  padding: 16px 24px; /* Espaciado alrededor */
  font-size: 1.25rem; /* Tamaño del texto */
  font-weight: 600; /* Negrita */
  background-color: #2a9d8f; /* Color verde de la marca */
  color: white; /* Texto blanco */
  text-align: left;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

/* Hover en la pregunta */
.faq-question:hover {
  background-color: #2a9d8f; /* Cambio a un color más oscuro cuando se pasa el mouse */
}

/* Respuesta */
.faq-answer {
  padding: 16px 24px; /* Espaciado */
  background-color:  var(--brand-color); /* Fondo acorde a la marca */
  color: white; /* Texto blanco */
  font-size: 1.125rem; /* Tamaño del texto */
  display: none; /* Oculto por defecto */
}

/* Mostrar respuesta cuando la clase 'active' esté presente */
.faq-item.active .faq-answer {
  display: block; /* Mostrar cuando está activo */
}

/* Responsive Design: para pantallas pequeñas */
@media (max-width: 768px) {
  .faq {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .faq h2 {
    font-size: 2rem;
  }

  .faq p {
    font-size: 1rem;
  }

  .faq-item {
    margin-bottom: 20px; /* Añadir espacio entre los elementos */
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px 20px;
  }
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Ajusta según contenido */
}

.faq-question {
  cursor: pointer;
}
.main-img {
  opacity: 1 !important;
}
.image-description.fade {
  opacity: 1 !important;
}
/* Botones en el hero */
.hero-buttons .btn-primary {
  background-color: var(--brand-color); /* Color de la marca actualizado */
  color: white;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.hero-buttons .btn-primary:hover {
  background-color:  #299261; /* Color ligeramente más oscuro para el hover */
}

.hero-buttons .btn-secondary {
  background-color: #238bd1;
  color: white; /* Cambiar el texto del botón secundario al mismo color de la marca */
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.hero-buttons .btn-secondary:hover {
  background-color: #1d66aa;
}

.custom-icon {
  color: var(--brand-color);
  font-size: 30px; /* Ajusta el tamaño según lo que necesites */
}
/* Asegúrate de que el menú de hamburguesa solo se vea en dispositivos pequeños */
.navbar-toggler {
  border: none;
}

/* Ajuste del tamaño de la barra de navegación para pantallas pequeñas */
@media (max-width: 992px) {
  .navbar-nav {
    display: none; /* Se oculta el menú de navegación por defecto */
  }

  .navbar-collapse {
    display: block; /* Se muestra cuando se hace clic en el ícono de hamburguesa */
  }

  .navbar-toggler {
    display: block; /* Se asegura de que el ícono de hamburguesa esté visible en pantallas pequeñas */
  }
}

/* Ajuste para pantallas grandes */
@media (min-width: 993px) {
  .navbar-nav {
    display: flex; /* Muestra el menú de navegación en pantallas grandes */
  }

  .navbar-toggler {
    display: none; /* Se oculta el ícono de hamburguesa en pantallas grandes */
  }
}

/* Estilos para el footer */
.footer {
  background-color: var(--brand-color);
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-info,
.footer-links,
.footer-social {
  flex: 1;
  margin: 10px;
}

.footer-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-info p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-social ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-social ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-links ul li a:hover,
.footer-social ul li a:hover {
  text-decoration: underline;
}

.footer-social ul li a i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin: 0;
}

/* Estilos responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info,
  .footer-links,
  .footer-social {
    margin-bottom: 20px;
    flex: none;
    width: 100%;
  }

  .footer-info h3 {
    font-size: 22px;
  }

  .footer-links ul li a,
  .footer-social ul li a {
    font-size: 14px;
  }
}

/* Animación al cargar la página */

/* Estado inicial: oculto */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease-out;
}

/* Cuando aparece */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom suave */
.reveal-zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: all .9s ease-out;
}

.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

/* Efecto desde la izquierda */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all .8s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Efecto desde la derecha */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all .8s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Estado inicial para secciones */
section, footer, .navbar, .branding-line {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Cuando se vuelven visibles */
section.visible, 
footer.visible, 
.navbar.visible,
.branding-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animación para imágenes (zoom suave) */
img {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.9s ease-out;
}

img.visible {
  opacity: 1;
  transform: scale(1);
}
/* LOGIN NAVBAR BUTTON */
.login-btn-nav {
  margin-left: 15px;
  padding: 7px 16px;
  background-color: #2a9d8f;
  color: white !important;
  border-radius: 6px;
  transition: 0.3s ease;
  font-weight: 500;
}

.login-btn-nav:hover {
  background-color: #21867a;
  color: white !important;
}
.cleaning-tips-section {
    text-align: center;
    padding: 30px 0;
    background-color: #f9f9f9;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
  }

  .carousel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .carousel-item {
    display: none;
    font-size: 1.1rem;
    background-color: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }

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

  .carousel-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0077cc;
  }

  .carousel-item p {
    line-height: 1.6;
  }

  /* Add a simple transition */
  .carousel-item {
    transition: opacity 0.5s ease;
  }
  /* Animación para el texto "Insured & Bonded" */
.insured-bonded {
  text-align: center;
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.insured-bonded-text {
  font-size: 2.5rem; /* Un tamaño grande */
  font-weight: bold;
  text-transform: uppercase; /* Para hacerlo más destacado */
  letter-spacing: 2px; /* Espaciado para darle un toque profesional */
  animation: slideInUp 1s ease-out forwards; /* Animación */
}

/* Animación: deslizar de abajo hacia arriba */
@keyframes slideInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animación para el texto "Insured & Bonded" */
.insured-bonded {
  text-align: center;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insured-bonded-text {
  font-size: 2.5rem; /* Un tamaño grande para pantallas grandes */
  font-weight: bold;
  color: rgb(12, 117, 202); /* Blanco para resaltar en el fondo oscuro */
  text-transform: uppercase; /* Para hacerlo más destacado */
  letter-spacing: 2px; /* Espaciado para darle un toque profesional */
  animation: slideInUp 1s ease-out forwards; /* Animación */
}

/* Subtexto para "Insured & Bonded" */
.insured-bonded-subtext {
  font-size: 1.1rem; /* Más pequeño que el texto principal */
  color: #636363; /* Blanco para que combine con el texto principal */
  margin-top: 10px;
  font-weight: normal;
  line-height: 1.6;
  opacity: 0.8; /* Para hacerlo más sutil que el texto principal */
  animation: fadeInSubtext 1.5s ease-out forwards; /* Animación */
}

/* Animación para el subtexto */
@keyframes fadeInSubtext {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación: deslizar de abajo hacia arriba */
@keyframes slideInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Estilos para pantallas pequeñas (móviles) */
@media (max-width: 600px) {
  .insured-bonded-text {
    font-size: 1.8rem; /* Reducir el tamaño del texto */
    letter-spacing: 1px; /* Reducir el espaciado */
  }

  .insured-bonded-subtext {
    font-size: 1rem; /* Ajustar el tamaño del subtexto para móviles */
  }
}

  .giveaway-banner {
    width: 100%;
    background: linear-gradient(135deg, #b81d1d, #970303);
    color: #fff;
    padding: 40px 20px;
    border-radius: 0px;
    text-align: center;
    margin-bottom: 0px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }

  .giveaway-banner::before {
    content: "🎁";
    font-size: 120px;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.2;
    animation: float 4s infinite ease-in-out;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  .banner-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .banner-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .btn-banner {
    background-color: #fff;
    color: #5c4a4a;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn-banner:hover {
    background-color: #fff4f4;
    color: #cc0000;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .giveaway-banner {
      padding: 30px 15px;
    }

    .giveaway-banner::before {
      font-size: 50px;
    }

    .banner-content h2 {
      font-size: 1.5rem;
    }
  }
