/*
Theme Name: Stockholm
Theme URI: http://demo.select-themes.com/stockholm
Description: Stockholm Theme
Tags: agency, business, ajax, portfolio, blog, shop, multi-purpose, clean, elegant, white, photography, modern, fullscreen, stylish, design
Author: Select Themes
Author URI: http://demo.select-themes.com
Version: 4.2
License: GNU General Public License
License URI: licence/GPL.txt

CSS changes can be made in files in the /css/ folder. This is a placeholder file required by WordPress, so do not delete it.

*/

.footer_bottom1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* permite que se adapte en pantallas pequeñas */
  gap: 1rem;
  padding: 1rem 0;
  max-width: 1100px;
  margin:0 auto;
}

.footer_bottom1 .imgKit {
  flex-shrink: 0;
}

.footer_bottom1 .textwidget {
  flex: 1;
  min-width: 250px;
}
.footer_bottom1 .textwidget p{
  font-size:0.7rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 2.8rem;
  color: #1a2b4c;
}

h2 {
  font-size: 2rem;
  margin-top: 60px;
  color: #1a2b4c;
}

.center {
  text-align: center;
}

.btn-primary {
  background-color: #4b7f6d;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.form-box {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 40px auto;
  max-width: 500px;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.form-box label {
  font-size: 14px;
}

.features {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  max-width: 250px;
}

.feature img {
  height: 80px;
  margin-bottom: 12px;
}

.testimonial {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
  font-style: italic;
}

.faq {
  margin-top: 60px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item strong {
  display: block;
  margin-bottom: 5px;
}

/* Transición del formulario */
#formulario-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

#formulario-container.show {
  max-height: 1000px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    margin-bottom: 30px;
  }

  .btn-primary {
    width: 100%;
  }

  .form-box {
    width: 90%;
  }
} 