.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 5px 0;
  margin-bottom: 0;
  background: transparent;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.header .container-fluid {
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled .container-fluid {
  background: transparent;
}

.header a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16.38px;
  padding: 0 8px;
  transition: color 0.3s ease;
}

.header a:hover {
  color: #fff;
}

.navbar ul {
  margin-bottom: 0;
}

.navbar ul li {
  padding: 0 2px;
}

.bi {
  font-size: 20px;
}

.badge {
  font-size: 10px;
  padding: 2px 6px;
  background: #fff !important;
  color: #000;
}

/* Aseguramos que el menú se alinee a la izquierda */
.navbar {
  justify-content: flex-start;
}

/* Ajustamos el espacio entre elementos del menú */
.navbar ul li:first-child {
  padding-left: 0;
}

/* Ajustamos el tamaño del logo */
.header .logo img {
  max-height: 60px;
  transform: translateY(-10%);
}

/* Opcional: Añadir un gradiente sutil en la parte superior para mejorar la legibilidad */
.header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
  z-index: -1;
}

.footer-section {
  background: #000000;
  color: #fff;
}

.copyright-area {
  background: #000000;
  padding: 25px 0;
}

.footer-widget h3 {
  color: #fff;
}

.footer-widget ul li a {
  color: #878787;
  transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #ff0000;
  padding-left: 5px;
}

.footer-text p {
  color: #878787;
}

.footer-social-icon span {
  color: #fff;
  margin-bottom: 20px;
}

.copyright-text p {
  color: #878787;
}

.footer-menu ul li a {
  color: #878787;
  transition: all 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #ff0000;
}

.footer-social-icon a:hover {
  color: #ff0000;
}

.footer-social-icon a {
  transition: all 0.3s ease;
}

/* Para los íconos de redes sociales */
.footer-social-icon .facebook-bg:hover,
.footer-social-icon .instagram-bg:hover,
.footer-social-icon .youtube-bg:hover {
  color: #ff0000;
}

.footer-widget .footer-logo h1 {
  color: #ff0000; /* Mismo rojo que el hover */
}

.footer-widget .footer-logo h1 span {
  color: #ff0000; /* Mismo rojo que el hover */
}

.copyright-text p {
  color: #878787;
}

.copyright-text p span {
  color: #ff0000; /* Mismo rojo que el hover */
}

/* Para asegurar que el punto en el copyright también sea rojo */
.copyright-text span {
  color: #ff0000;
}

.footer-menu ul {
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin: 10px 0;
}

.footer-menu ul li a {
    color: #878787;
    transition: all 0.3s ease;
    /* font-size: 1.1rem; */
    text-decoration: none;
}

.footer-menu ul li a:hover {
    color: #ff0000;
}

.copyright-text {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.copyright-text p {
    margin: 0;
    color: #878787;
}

.vertical-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vertical-menu li {
    margin: 0;
    padding: 2px 0;
}

.vertical-menu li a {
    font-size: 14px;
    color: #878787;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.2;
}

.vertical-menu li a:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.copyright-text {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.footer-logo {
    margin-bottom: 5px;
    padding: 20px 0;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Estilos para el botón de login */
.login-btn {
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.login-btn:hover {
  color: #ff0000;
  transform: scale(1.1);
}

/* Estilos para el modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.modal-content {
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
  border: 2px solid rgba(255, 0, 0, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-content h3 {
  color: #ff0000;
  margin-bottom: 10px;
  font-family: 'Libre Baskerville', serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.modal-content h3:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.modal-content h4 {
  color: white;
  margin: 0 0 20px 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  font-weight: 400;
}

.modal-content p {
  color: #cccccc;
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-content p strong {
  color: #ff0000;
  font-weight: 600;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.1);
}

.close-modal:hover {
  color: #ff0000;
  background-color: rgba(255, 0, 0, 0.2);
  transform: rotate(90deg);
}

/* Animación de entrada */
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal.show .modal-content {
  animation: modalIn 0.3s ease forwards;
}

.login-form {
  margin-top: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #878787;
}

.form-group input {
  width: 100%;
  padding: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid #333;
  border-radius: 4px;
  color: white;
}

.form-group input:focus {
  outline: none;
  border-color: #ff0000;
}

.login-submit-btn {
  width: 100%;
  padding: 12px;
  background: #ff0000;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-submit-btn:hover {
  background: #cc0000;
}

.footer-divider {
    border: none;
    height: 2px;
    background-color: #ff0000;
    margin: 15px 0 10px 0;
    width: 100%;
    opacity: 0.8;
}

/* Ajustamos el margen del contenedor del menú */
.footer-menu {
    margin-bottom: 15px !important;
    margin-top: 10px;
}

.col-12.text-center.mb-4 {
    margin-bottom: 10px !important;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/imagene.webp');
  background-size: cover;
  background-position: center;
  z-index: 1;
}



@media (max-width: 767px) {
  .hero-background {
    background-image: url('../images/imagene-mobile.webp'); /* imagen para móviles */
  }
}
.hero-content {
  position: absolute;
  z-index: 2;
  text-align: left;
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease;
  bottom: 120px;
  padding-left: 10%;
  max-width: 800px; /* Limitar el ancho del contenido */
}

.hero-content h1 {
  color: #ffffff;
  font-family: 'Libre Baskerville', serif;
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
  padding: 0;
  line-height: 1.2;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 30px;
  width: 100%;
  max-width: 600px;
}

.hero-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Libre Baskerville', serif;
  font-weight: 500;
  color: #ffffff;
  background-color: #ff0000;
  border: 2px solid #ff0000;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

/* Ocultar el contenido en la segunda imagen */
.hero-background[style*="imagene2.png"] + .hero-content {
  opacity: 0;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .hero-content {
    padding-left: 5%;
    padding-right: 5%;
    bottom: 80px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    margin-bottom: 20px;
  }
  
  .hero-btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.slider-btn.active {
  background-color: #fff;
}

/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.full-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.video-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.buttons-container {
  display: flex;
  gap: 20px;
}

.progress-container {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: white;
  transition: width 0.1s linear;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.control-btn i {
  margin-left: 3px;
}

/* Triple Image Section */
.triple-image-section {
  padding: 50px 0;
  background: #000000;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  padding: 40px 0;
}

.side-image, .center-image {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.side-image {
  transform: translateY(40px);
}

.center-image {
  transform: translateY(-40px);
  z-index: 2;
}

.side-image img, .center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.side-image:hover, .center-image:hover {
  transform: scale(1.05) translateY(0);
}

.side-image:hover img, .center-image:hover img {
  transform: scale(1.1);
}

.side-image.right {
  transform: translateY(40px);
}

.side-image.right img {
  margin-left: -80%;
  width: 180%;
  object-fit: cover;
}

.side-image.left {
  transform: translateY(40px);
}

.side-image.left img {
  margin-left: -40%;
  width: 140%;
  height: 100%;
  margin-top: 0;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .image-container {
    flex-direction: column;
    gap: 20px;
  }

  .side-image, .center-image {
    width: 100%;
    max-width: 300px;
    transform: translateY(0);
  }

  .side-image:hover, .center-image:hover {
    transform: scale(1.05);
  }
}

.description-container {
  margin-top: 40px;
  padding: 20px;
}

.description-text {
  color: #ffffff;
  font-size: 24px;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.conoce-mas-btn, .ver-testimonios-btn, .test-cta-btn, .contact-cta-btn {
    display: inline-block;
    padding: 15px 30px;  /* Volvemos al tamaño original */
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;  /* Volvemos al tamaño original */
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 16px;  /* Volvemos al tamaño original */
    font-family: 'Poppins', sans-serif;
}

/* Mantenemos los efectos hover */
.conoce-mas-btn:hover, .ver-testimonios-btn:hover, .test-cta-btn:hover, .contact-cta-btn:hover {
    background-color: #cc0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

.services-list {
  text-align: center;
  padding: 30px 0;
  margin: 40px 0;
}

.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.services-list h4 {
    color: #ffffff;
    font-size: 1.425rem;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    font-weight: 700;
}

.services-list h4:before {
    content: none;
}

.services-list li {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.services-list li:before {
    content: "•";
    color: #ff0000;
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 1;
}

.explore-services {
  text-align: center;
  margin-top: 30px;
}

.explore-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.explore-btn:hover {
  background-color: #cc0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

/* Estilos para la sección de testimonios */
.testimonials-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-family: 'Libre Baskerville', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 416px; /* Reducido 20% desde 520px */
}

.testimonial-group {
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
}

.testimonial-group.active {
    opacity: 1;
}

.testimonial-card {
    background-color: #cccccc;
    border-radius: 15px 15px 30px 30px;
    padding: 30px;
    margin: 15px;
    min-height: 416px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(50% - 30px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-text {
    flex-grow: 0;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.testimonial-author {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    text-align: right;
    padding-right: 15px;
    position: relative;
    top: -20px;
}

/* Estilos para los dots de navegación */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #cc0000;
}

.dot.active {
    background: #cc0000;
    transform: scale(1.2);
}

.dot:hover {
    background: #ff0000;
}

/* Estilo para el botón de "Ver más testimonios" */
.testimonials-button {
    text-align: center;
    margin-top: 30px;
}

.ver-testimonios-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.ver-testimonios-btn:hover {
    background-color: #cc0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

.ver-testimonios-btn::after {
    content: none;
}

.ver-testimonios-btn:hover::after {
    transform: none;
}

.test-cta-section {
  padding: 30px 0;
  text-align: center;
}

.test-cta-title {
  color: #ffffff;
  font-size: 36px;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.test-cta-button {
  margin-top: 30px;
}

.test-cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.test-cta-btn:hover {
  background-color: #cc0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

.contact-cta-section {
  padding: 30px 0;
  text-align: center;
}

.contact-cta-title {
  color: #ffffff;
  font-size: 36px;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.contact-cta-button {
  margin-top: 30px;
}

.contact-cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.contact-cta-btn:hover {
  background-color: #cc0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

/* Estilos para redes sociales en el footer */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social-link {
  color: #878787;
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ff0000;
  transform: translateY(-2px);
}

/* Ajustar espaciado del footer */
.footer-logo {
  margin-bottom: 5px;
}

.footer-menu {
  margin-top: 10px;
}

.vertical-menu li {
  margin: 5px 0;
}

@media (max-width: 768px) {
    .testimonial-group {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card h3 {
        font-size: 1.32rem;
    }
    
    .testimonial-text,
    .testimonial-author {
        font-size: 1rem;
    }
}

.red-divider {
    border: none;
    height: 2px;
    background-color: #ff0000;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.newsletter-section {
  padding: 20px 0;
  background-color: #000000;
}

.newsletter-container {
  display: flex;
  align-items: center;
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.newsletter-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-content {
  flex: 1;
  margin-left: 220px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.newsletter-title {
  color: #ff0000;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Libre Baskerville', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.newsletter-subtitle {
  color: white;
  margin: 5px auto 15px;
  font-size: 22px;
  font-family: 'Libre Baskerville', serif;
  text-align: center;
}

.newsletter-description {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
}

.newsletter-description .highlight {
  color: #ff0000;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  min-width: 250px;
}

.newsletter-button {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ff0000;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.newsletter-button:hover {
  background-color: #cc0000;
}
