    /* --- SECCIÓN DE PRESENTACIÓN / HERO --- */
.brand-hero {
  background: linear-gradient(to right, #ffffff, #f7f7f7);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

/* Título principal */
.brand-hero h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  color: #222;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Botón/enlace de contacto */
.brand-hero a {
  display: inline-block;
  background-color: #e53935;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.brand-hero a:hover {
  background-color: #c62828;
}



/* Sección de problemas */
.section#problem {
  background-color: #fefefe;
  padding: 80px 20px;
}

/* Título principal */
#problem h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

#problem h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e53935;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Contenedor general */
#problem .section-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Cada "problema" (card) */
#problem .sd.appear {
  width: -webkit-fill-available;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

#problem .sd.appear:hover {
  transform: translateY(-6px);
}

/* Ícono */
#problem .image.sd {
  width: 45px;
  height: 40px;
  margin: 0 auto 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

#problem .image.sd::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Texto del problema */
#problem p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
}






/* --- Sección de valor / explicación --- */
.section-value {
  background: #f1f5f9;
  padding: 80px 20px;
  text-align: center;
  margin: 60px;
}

/* Título con énfasis */
.section-value h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #222;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 30px;
}

.section-value h2 span {
  color: #e53935;
  font-weight: 800;
}

/* Párrafo explicativo */
.section-value p {
  font-size: 16px;
  color: #555;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .section-value h2 {
    font-size: 20px;
  }

  .section-value p {
    font-size: 15px;
  }
}



/* Sección de características */
.section-feature {
  background-color: #f8fafc;
  padding: 80px 20px;
}

/* Encabezado principal */
.section-feature h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* Grid de características */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Tarjeta individual */
.feature-item {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

/* Imagen */
.feature-item img {
  width: 300px;
  height: auto;
  object-fit: cover;
}

/* Contenido */
.feature-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
  line-height: 1.5;
}

.feature-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
}

/* Botón de contacto */
.section-feature a p {
  text-align: center;
  margin-top: 60px;
  font-weight: bold;
  color: #0077cc;
  font-size: 16px;
  transition: color 0.2s ease;
}

.section-feature a p:hover {
  color: #005fa3;
}

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

  .feature-item img {
    width: 100%;
    height: auto;
  }

  .feature-content {
    padding: 16px;
  }
}




.section-flow {
  padding: 4rem 1rem;
  background-color: #f8fafc;
  text-align: center;
  margin: 60px 0px;
}

.section-flow h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0f172a;
}

.flow-image-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.flow-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.flow-cta {
  margin-top: 2rem;
}

.flow-link img {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
}

.flow-link img:hover {
  transform: scale(1.1);
}






.faq-section {
  padding: 4rem 1rem;
  background-color: #f1f5f9;
  color: #0f172a;
  max-width: 900px;
  margin: 70px auto;
}

.faq-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background-color: #f9fafb;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.8rem;
}

.faq-question::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: #e11d48;
  font-weight: bold;
  font-size: 1.1rem;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}







/* Contenedor del formulario */
main#form_brandstudio_creativeproduction {
  max-width: 1800px;
      width: -webkit-fill-available;
  margin: 0 auto;
  padding: 3rem 1rem;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Título principal */
main#form_brandstudio_creativeproduction h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-align: center;
}

/* Subtítulo o descripción */
main#form_brandstudio_creativeproduction p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Inputs y selects */
main#form_brandstudio_creativeproduction input[type="text"],
main#form_brandstudio_creativeproduction input[type="email"],
main#form_brandstudio_creativeproduction input[type="tel"],
main#form_brandstudio_creativeproduction textarea,
main#form_brandstudio_creativeproduction select {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #fdfdfd;
  transition: border-color 0.3s;
}

main#form_brandstudio_creativeproduction input:focus,
main#form_brandstudio_creativeproduction textarea:focus,
main#form_brandstudio_creativeproduction select:focus {
  border-color: #47a4df;
  outline: none;
}

/* Etiquetas de campos */
main#form_brandstudio_creativeproduction label,
main#form_brandstudio_creativeproduction .text {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* Checkbox */
main#form_brandstudio_creativeproduction input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.2);
}

/* Botón de envío */
main#form_brandstudio_creativeproduction button {
  width: 100%;
  background-color: #47a4df;
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

main#form_brandstudio_creativeproduction button:hover {
  background-color: #3792c7;
}


form.sd.appear div {
    width: 400px;
}


textarea.sd.appear {
    height: 100px;
}
