/* ==========================================================================
   SEPRESDI — Hoja de estilos principal
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tipografía (Figtree self-hosted)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/figtree-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/figtree-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/figtree-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/figtree-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/figtree-latin-900-normal.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. Variables
   -------------------------------------------------------------------------- */
:root {
  --color-negro: #000000;
  --color-blanco: #ffffff;
  --color-violeta: #7739f6;
  --color-gris: #7a7a7a;
  --color-gris-borde: #c4c4c4;

  --fuente: 'Figtree', Helvetica, Arial, sans-serif;

  --ancho-contenido: 1140px;
  --ancho-ancho: 1280px;

  --header-alto: 10vh;
  --flyout-ancho: 300px;
}

/* --------------------------------------------------------------------------
   3. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--fuente);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-negro);
  background-color: var(--color-blanco);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.contenedor {
  width: 100%;
  max-width: var(--ancho-contenido);
  margin: 0 auto;
  padding: 0 20px;
}

.contenedor-ancho {
  width: 100%;
  max-width: var(--ancho-ancho);
  margin: 0 auto;
  padding: 0 20px;
}

/* Compensación del header sticky al saltar por anclas */
#nosotros,
#servicios,
#contacto {
  scroll-margin-top: var(--header-alto);
}

/* Accesibilidad */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Animaciones (fadeIn con IntersectionObserver)
   -------------------------------------------------------------------------- */
.anim-fade {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.anim-fade.visible {
  opacity: 1;
}

.anim-delay-1000 {
  transition-delay: 1s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .anim-fade {
    opacity: 1;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 110px 0 0;
  background-image: url('../img/sepresdi-home.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay: degradado negro -> transparente al 67% de opacidad */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, var(--color-negro) 11%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.67;
  pointer-events: none;
}

.hero__contenido {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--ancho-contenido);
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: 190px;
  margin: 0 auto 60px;
}

.hero__titulo {
  width: 76.261%;
  max-width: 76.261%;
  text-align: center;
  font-family: var(--fuente);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-blanco);
}

/* El <br> solo aparece en mobile (replica el custom CSS original) */
.br-mobile {
  display: none;
}

/* --------------------------------------------------------------------------
   6. Header fijo
   Queda oculto mientras el banner está en pantalla y aparece al pasarlo.
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  min-height: var(--header-alto);
  background-color: var(--color-negro);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s ease;
}

.site-header.visible {
  transform: translateY(0);
  visibility: visible;
}

.site-header__inner {
  width: 100%;
  max-width: var(--ancho-ancho);
  min-height: var(--header-alto);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.site-header__nav {
  display: flex;
  align-items: center;
}

.site-header__spacer {
  display: flex;
}

.site-header__logo img {
  width: 95px;
}

/* Botón hamburguesa */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35em;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-blanco);
  line-height: 0;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   7. Flyout menu
   -------------------------------------------------------------------------- */
.flyout {
  position: fixed;
  top: 0;
  left: calc(-1 * var(--flyout-ancho));
  width: var(--flyout-ancho);
  height: 100%;
  z-index: 1100;
  background-color: var(--color-blanco);
  padding: 30px;
  overflow-y: auto;
  transition: left 0.3s ease;
}

.flyout.abierto {
  left: 0;
}

.flyout__close {
  display: block;
  margin: 0 0 20px auto;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-gris);
  line-height: 0;
}

.flyout__close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.flyout__menu li:not(:last-child) {
  border-bottom: 1px solid var(--color-gris-borde);
}

.flyout__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-negro);
  transition: color 0.2s ease;
}

.flyout__menu a:hover,
.flyout__menu a:focus {
  color: var(--color-violeta);
}

.flyout-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.flyout-overlay.abierto {
  opacity: 1;
  visibility: visible;
}

body.menu-abierto {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   8. Sección NOSOTROS
   -------------------------------------------------------------------------- */
.nosotros {
  padding: 120px 0;
  background-color: var(--color-blanco);
}

.nosotros__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
}

.nosotros__texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.nosotros__imagen {
  flex: 1;
  display: flex;
  align-items: center;
}

.epigrafe {
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-violeta);
}

.nosotros__titulo {
  font-family: var(--fuente);
  font-size: 40px;
  font-weight: 800;
  line-height: 42px;
  color: var(--color-negro);
}

.nosotros__parrafo {
  width: 405px;
  max-width: 100%;
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-negro);
}

/* --------------------------------------------------------------------------
   9. Sección SERVICIOS
   -------------------------------------------------------------------------- */
.servicios {
  padding: 120px 0;
  overflow: hidden;
  background-image: url('../img/Sepresdi-imagen-2.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.servicios__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.servicios .epigrafe {
  text-align: center;
}

.servicios__titulo {
  width: 75%;
  max-width: 75%;
  text-align: center;
  font-family: var(--fuente);
  font-size: 40px;
  font-weight: 800;
  line-height: 42px;
  color: var(--color-blanco);
}

.servicios__fila {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  width: 100%;
}

.servicios__fila--1 {
  padding-top: 34px;
}

.servicios__fila--2 {
  justify-content: center;
}

.servicio {
  /* 4 columnas de 25% menos la parte proporcional del gap (3 gaps de 5px / 4) */
  flex: 0 0 calc(25% - 3.75px);
  max-width: calc(25% - 3.75px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.servicio__icono {
  width: 128px;
}

.servicio__texto {
  width: 78.947%;
  text-align: center;
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-blanco);
}

.servicio__texto strong,
.servicio__texto b {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   10. Sección CONTACTO
   -------------------------------------------------------------------------- */
.contacto {
  padding: 120px 0;
  background-color: var(--color-blanco);
}

.contacto__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contacto .epigrafe {
  text-align: center;
}

.contacto__titulo {
  text-align: center;
  font-family: var(--fuente);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-negro);
}

.contacto__bajada {
  width: 509px;
  max-width: 100%;
  text-align: center;
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-negro);
}

.contacto__cols {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  margin-top: 30px;
}

.contacto__izq {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.contacto__der {
  width: 55%;
  display: flex;
  flex-direction: column;
}

/* Mapa */
.contacto__mapa {
  padding: 0 20px;
}

.contacto__mapa iframe {
  display: block;
  width: 100%;
  height: 461px;
  border: 0;
  border-radius: 30px;
}

/* Caja negra con el mail, montada sobre el mapa */
.contacto__mail {
  width: 72%;
  margin-top: -72px;
  padding: 20px 60px 20px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-color: var(--color-negro);
  border-radius: 0 30px 0 0;
  position: relative;
  z-index: 2;
}

.contacto__mail-texto {
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blanco);
}

/* --------------------------------------------------------------------------
   11. Formulario (placeholder — se reemplaza por DataCrush)
   -------------------------------------------------------------------------- */
.formulario {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formulario__campo {
  display: flex;
  flex-direction: column;
}

.formulario input[type='text'],
.formulario input[type='tel'],
.formulario input[type='email'],
.formulario textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--fuente);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-negro);
  background-color: var(--color-blanco);
  border: 1px solid var(--color-gris-borde);
  border-radius: 0;
}

.formulario textarea {
  min-height: 120px;
  resize: vertical;
}

.formulario ::placeholder {
  color: var(--color-gris);
  opacity: 1;
}

.formulario__boton {
  align-self: flex-start;
  padding: 15px 80px;
  font-family: var(--fuente);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-blanco);
  background-color: var(--color-violeta);
  border: 0;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.formulario__boton:hover {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-negro);
  padding: 60px 0 30px;
}

.site-footer__inner {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.site-footer__marca {
  width: 39.7%;
}

.site-footer__logo {
  width: 218px;
}

.site-footer__nav {
  flex: 1;
  display: flex;
}

.site-footer__menu a {
  display: block;
  padding: 11px 0;
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blanco);
  transition: color 0.2s ease;
}

.site-footer__menu a:hover {
  color: var(--color-violeta);
}

.site-footer__contacto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.site-footer__titulo {
  margin-bottom: 20px;
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blanco);
}

.site-footer__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.site-footer__item span,
.site-footer__item a {
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-blanco);
}

/* Barra inferior */
.site-bottom {
  background-color: var(--color-negro);
  padding: 0 0 40px;
}

.site-bottom__inner {
  display: flex;
  justify-content: center;
}

.site-bottom a {
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blanco);
  transition: color 0.2s ease;
}

.site-bottom a:hover {
  color: var(--color-violeta);
}

/* --------------------------------------------------------------------------
   13. Página interior: Política de Gestión de la Calidad
   -------------------------------------------------------------------------- */
.hero-interior {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 0 0;
  min-height: 58vh;
  background-color: var(--color-negro);
}

.hero-interior__contenido {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--ancho-contenido);
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-interior__logo {
  width: 190px;
  margin: 0 auto 60px;
}

.hero-interior__titulo {
  width: 667px;
  max-width: 100%;
  text-align: center;
  font-family: var(--fuente);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-blanco);
}

.contenido-texto {
  padding: 120px 0;
  background-color: var(--color-blanco);
}

.contenido-texto__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--fuente);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-negro);
  text-align: justify;
}

.contenido-texto__inner .texto-derecha {
  text-align: right;
}

.contenido-texto__inner p {
  margin-bottom: 20px;
}

.contenido-texto__inner ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.contenido-texto__inner li {
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   14. Página 404
   -------------------------------------------------------------------------- */
.error404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--color-negro);
  color: var(--color-blanco);
}

.error404 img {
  width: 190px;
  margin-bottom: 40px;
}

.error404 h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.error404 p {
  font-size: 20px;
  font-weight: 400;
}

.error404 a {
  color: var(--color-violeta);
  font-weight: 700;
}

/* ==========================================================================
   15. Responsive
   ========================================================================== */

/* --- Tablet: hasta 1024px --- */
@media (max-width: 1024px) {
  :root {
    --ancho-contenido: 1024px;
  }

  .hero__titulo {
    font-size: 48px;
  }

  .nosotros__titulo,
  .servicios__titulo,
  .contacto__titulo,
  .hero-interior__titulo {
    font-size: 34px;
    line-height: 38px;
  }

  .hero-interior__titulo {
    font-size: 44px;
  }

  .contacto__mail {
    width: 85%;
    padding-right: 30px;
  }
}

/* --- Mobile: hasta 767px --- */
@media (max-width: 767px) {
  /* Hero */
  .hero {
    justify-content: center;
    padding: 0;
  }

  .hero__logo {
    width: 120px;
    margin-bottom: 20px;
  }

  .hero__titulo {
    width: 313px;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.2em;
  }

  .br-mobile {
    display: block;
  }

  /* Header: en mobile el logo va a la izquierda y la hamburguesa a la derecha */
  .site-header__nav {
    order: 3;
    width: 50%;
    justify-content: flex-end;
  }

  .site-header__logo {
    order: 1;
    width: 40%;
  }

  .site-header__spacer {
    display: none;
  }

  /* Nosotros */
  .nosotros {
    padding: 30px 15px;
  }

  .nosotros__inner {
    flex-direction: column;
    gap: 10px;
  }

  .nosotros__titulo {
    font-size: 25px;
    line-height: 30px;
  }

  .nosotros__parrafo {
    width: 100%;
  }

  /* Servicios */
  .servicios {
    padding: 40px 0;
  }

  .servicios .epigrafe {
    font-size: 18px;
  }

  .servicios__titulo {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    font-size: 25px;
    line-height: 30px;
  }

  .servicios__fila {
    flex-wrap: wrap;
    gap: 0;
  }

  .servicios__fila--1 {
    padding: 30px 20px 0;
  }

  .servicio {
    flex: 0 0 50%;
    max-width: 50%;
    gap: 10px;
    margin-bottom: 20px;
  }

  .servicio__icono {
    width: 80px;
  }

  .servicio__texto {
    font-size: 16px;
    line-height: 17px;
  }

  /* Contacto */
  .contacto {
    padding: 60px 0;
  }

  .contacto .epigrafe {
    font-size: 18px;
  }

  .contacto__titulo {
    font-size: 25px;
  }

  .contacto__cols {
    flex-direction: column;
    margin-top: 0;
  }

  .contacto__izq,
  .contacto__der {
    width: 100%;
  }

  .contacto__mapa {
    padding: 0 10px;
  }

  .contacto__mapa iframe {
    height: 360px;
  }

  .contacto__mail {
    width: 72%;
    padding: 20px 0 20px 10px;
  }

  .contacto__mail-texto {
    font-size: 16px;
  }

  .formulario__boton {
    align-self: stretch;
    padding: 15px 20px;
  }

  /* Footer */
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .site-footer__marca {
    width: 100%;
  }

  .site-footer__logo {
    width: 146px;
    margin: 0 auto;
  }

  .site-footer__nav {
    justify-content: center;
  }

  .site-footer__menu {
    text-align: center;
  }

  .site-footer__contacto {
    align-items: center;
  }

  .site-footer__item {
    justify-content: center;
  }

  /* Interior */
  .hero-interior {
    justify-content: center;
    padding: 0;
  }

  .hero-interior__logo {
    width: 120px;
    margin-bottom: 20px;
  }

  .hero-interior__titulo {
    width: 313px;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.2em;
  }

  .contenido-texto {
    padding: 30px 15px;
  }

  .contenido-texto__inner {
    font-size: 16px;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   Formulario DataCrush
   -------------------------------------------------------------------------- */
.dc-form-wrap {
  width: 100%;
}

/* Reset defensivo de los wrappers de campo que inyecta DataCrush */
.dc-form-wrap fieldset,
.dc-form-wrap .dc-field,
.dc-form-wrap .form-group {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Inputs / textarea / select */
.dc-form-wrap input[type='text'],
.dc-form-wrap input[type='tel'],
.dc-form-wrap input[type='email'],
.dc-form-wrap input[type='number'],
.dc-form-wrap textarea,
.dc-form-wrap select {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-family: var(--fuente);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-negro);
  background-color: var(--color-blanco);
  border: 1px solid var(--color-gris-borde);
  border-radius: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.dc-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.dc-form-wrap ::placeholder {
  color: var(--color-gris);
  opacity: 1;
}

.dc-form-wrap input:focus,
.dc-form-wrap textarea:focus,
.dc-form-wrap select:focus {
  outline: none;
  border-color: var(--color-violeta);
}

/* Botón ENVIAR */
.dc-form-wrap button,
.dc-form-wrap input[type='submit'],
.dc-form-wrap .dc-button {
  display: inline-block;
  padding: 16px 55px;
  font-family: var(--fuente);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-blanco);
  background-color: var(--color-violeta);
  border: 0;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.dc-form-wrap button:hover,
.dc-form-wrap input[type='submit']:hover,
.dc-form-wrap .dc-button:hover {
  opacity: 0.85;
}

/* Inputs / textarea / select — especificidad alta + !important para ganarle a DataCrush */
.contacto__der .dc-form-wrap input[type='text'],
.contacto__der .dc-form-wrap input[type='tel'],
.contacto__der .dc-form-wrap input[type='email'],
.contacto__der .dc-form-wrap input[type='number'],
.contacto__der .dc-form-wrap textarea,
.contacto__der .dc-form-wrap select {
  width: 100% !important;
  height: auto !important;        /* <-- clave: anula la altura fija de DataCrush */
  min-height: 58px !important;    /* <-- alto mínimo como la captura 2 */
  padding: 18px 22px !important;
  margin-bottom: 20px !important;
  font-family: var(--fuente) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: var(--color-negro) !important;
  background-color: var(--color-blanco) !important;
  border: 1px solid var(--color-gris-borde) !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  appearance: none;
}

.contacto__der .dc-form-wrap textarea {
  min-height: 130px !important;
  resize: vertical;
}

.contacto__der .dc-form-wrap ::placeholder {
  color: var(--color-gris) !important;
  opacity: 1 !important;
  font-size: 18px !important;
}