/* CSS COMPLETO */

/* Keyframes */

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(12px);
  }
  40% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fadeOut {
  0% { height: 100%; }
  100% { height: 0%; }
}

@keyframes destello {
  0% { background-color: var(--colorRojoHover); }
  100% { background-color: none; }
}

@keyframes destello_naranja {
  0% { background-color: var(--colorNaranjaHover); }
  100% { background-color: none; }
}

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

:root {
  --colorBtnClose: rgb(230, 44, 81);
  --colorTextWhite: white;
  --colorVerde: #84d899;
  --colordark: #191a1c;
  --colorlight: #fff;
  --colorHover: #e2eeff;
  --colorHoverDark: #3d3d3d;
  --colorRed: #f04141;
  --colorRedHover: #ff6969;
  --colorRed_: rgb(38, 66, 72);
  --colorPink: #f45f85;
  --colorAzul: #2172ec;
  --colorBlueLetra: #103eb9;
  --placeIn: fadeIn .5s forwards;
  --colorBlueLight: #1aa8e5;
  --colorAzulClaro: #94bfff;
  --colorAzulHover: #5393f3;
  --colorAmarillo: #fff675;
  --colorNaranja: #ff8c00;
  --colorNaranjaHover: #fab766;
  --colorBlueDark: #10202e;
  --colora: #1c3d6d;
  --colorb: #040404;
  --colorRojo: #e8103b;
  --colorRojoClaro: #e07288;
  --colorRojoHover: rgb(255, 166, 166);
  --colorOp: #9ac6f0;

  --bg-card: #ffffff;
  --bg-page: #f0f2f5;
  --accent: #c45c5c;
  --text-primary: #333;
  --text-muted: #777;
  --radius: 0.5rem;
  --spacing: 1rem;
  --font: 'Segoe UI', sans-serif;
  --headerHeight: 75px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Helvetica', Arial, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Scrollbar */
*::-webkit-scrollbar {
  width: 20px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--colorAzul);
  border-radius: 2px;
  border: 3px solid #fff;
}
*::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}
* {
  scrollbar-color: #db3434 #f0f0f0;
  scrollbar-width: thin;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #ffcbcb;
}

/* Requisito añadido */
div {
  display: flex;
}

.encabezado {
  height: var(--headerHeight);
  padding: 2px;
  background-color: var(--colorRojo);
  position: fixed;      /* se queda fijo */
  top: 0;               /* pegado arriba */
  left: 0;
  width: 100%;          /* ocupa todo el ancho */
  display: flex;        /* aseguras alineación */
  justify-content: end;
  align-items: center;
  z-index: 1000;        /* encima de otros elementos */
}

.cont_boton_menu {
  width: min-content;
  padding: 8px;
}

.contenedor_menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 50px;
  width: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  z-index: 9999;
  animation: fadeInMenu 0.25s ease-out;
}

.opcion_menu {
  padding: 12px;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.opcion_menu:last-child {
  margin-bottom: 0;
}

.opcion_menu:hover {
  background: var(--colorRojoClaro, #ffeded);
  color: white;
  transform: translateX(4px);
}

.boton_menu {
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
  background: white;
  color: var(--colorRojo);
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.boton_menu:hover {
  background: var(--colorRojo);
  color: white;
  transform: scale(1.05);
}

/* Animación suave al aparecer */
@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.body{
  overflow: auto;
}

.contenido_inicio {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: fadeIn .5s forwards;
  padding-top: var(--headerHeight);
}

/* Video Fullscreen */
.seccion_video {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.cont_video_logistica {
  position: relative;
  width: 100vw;
  height: 100%;
  animation: fadeIn 1s forwards;

}

.video_logistica {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
  z-index: 1;
  box-shadow: 0 0 12px black;
}

.cont_logo_video {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translate(0%, -50%);
  z-index: 2;
}

.logo_video {
  width: 800px;
  opacity: 0.95;
  border-radius: 8px;
  box-shadow: 0 0 12px black;
  animation: fadeIn 2.5s forwards;
  padding: 12px;
  background-color: white;
}


.presentacion {
  position: absolute;
  top: 12px;
  right: 50px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  border-radius: 8px;
  z-index: 200;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4 columnas de igual tamaño */
  gap: 10px; /* espacio entre elementos */
  overflow: hidden;
  
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  60% {
    opacity: .8;
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.span_icono_con_texto{
  display: flex;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px;
  border-radius: 6px;
  font-family: 'Helvetica', Arial, sans-serif;
  width: 120px;
  color: white;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.6s ease forwards;

}

.icono_presentacion{
  background: rgba(0, 0, 0, 0.7);
  padding: 9px;
  border-radius: 12px;
  width: 120px;
  height: 120px;
  margin: 12px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;

  /* display: none; */
}

/* Sección visible al hacer scroll */
.seccion_bienvenida {
  width: 100%;
  height: min-content;
  padding: 12px 30px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.titulo_bienvenida {
  font-size: 2rem;
  font-weight: bold;
  color: var(--colorRojo);
  text-align: center;
}

.descripcion_bienvenida {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  max-width: 700px;
}

.cont_boton_conocer {
  margin-top: 20px;
}

.boton_conocer {
  background-color: var(--colorRojo);
  border: none;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton_conocer:hover {
  background-color: var(--colorRojoHover);
}

@media (max-width: 768px) {
  .cont_presentacion {
    left: 20px;
    right: 20px;
    font-size: 16px;
    padding: 15px 20px;
  }
  .logo_video { max-width: 140px; }
  .titulo_bienvenida { font-size: 1.5rem; }
  .descripcion_bienvenida { font-size: 1rem; }
}

@media (max-width: 480px) {
  .cont_presentacion {
    font-size: 14px;
    padding: 10px 15px;
  }
  .logo_video { max-width: 110px; }
}






/* ------------------------- */



        /* Sección de servicios */
        .seccion_servicios {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            height: 100vh;
        }

        /* Contenedor título sección */
        .cont_titulo_seccion {
            text-align: center;
            margin-bottom: 48px;
        }

        .titulo_seccion {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            position: relative;
            display: inline-block;
            padding-bottom: 16px;
        }

        .titulo_seccion::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--color-primary);
            border-radius: 2px;
        }

        /* Contenedor tarjetas */
        .seccion_servicios {
            display: grid;
            gap: 32px;
        }

        /* Tarjeta de servicio */
        .tarjeta_servicio {
            background: var(--color-card);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px;
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .tarjeta_servicio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }

        .tarjeta_servicio:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .tarjeta_servicio:hover::before {
            opacity: 0.05;
        }

        /* Contenedor título tarjeta */
        .cont_titulo_tarjeta {
            position: relative;
            z-index: 1;
        }

        .titulo_tarjeta {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
            transition: var(--transition);
            position: relative;
        }

        .tarjeta_servicio:hover .titulo_tarjeta {
            color: var(--color-primary);
        }

        /* Iconos (añadidos con pseudoelementos) */
        .tarjeta_servicio::after {
            content: '';
            position: absolute;
            top: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.1;
            transition: var(--transition);
        }

        /* Iconos específicos para cada servicio */
        #servicio_0::after {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" /></svg>');
        }

        #servicio_1::after {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7" /></svg>');
        }

        #servicio_2::after {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>');
        }

        #servicio_3::after {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4" /></svg>');
        }

        #servicio_4::after {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4 4 0 003 15z" /></svg>');
        }

        .tarjeta_servicio:hover::after {
            opacity: 0.3;
            transform: scale(1.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .seccion_servicios {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .titulo_seccion {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .titulo_seccion {
                font-size: 1.8rem;
            }
            
            .titulo_tarjeta {
                font-size: 1.3rem;
            }
        }


        /* ------------------ LOGIN */





:root {
}

body {
  position: relative;
}

.ventana_login {
  background-color: var(--bg-card);
  padding: calc(var(--spacing) * 2);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 360px;
  flex-direction: column;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.cont_p_login {
  text-align: center;
  margin-bottom: var(--spacing);
}

.p_login {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.input_login {
  margin-bottom: var(--spacing);
  justify-content: center;
  align-items: center;
}

.cont_tittle_input_login {
  margin-bottom: 0.25rem;
}

.tittle_input_login {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 10px;
}

.cont_input_input_login {
  position: relative;
}

.cont_in_input_login input {
  width: 100%;
  padding: 0.75rem var(--spacing);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.cont_in_input_login input:focus {
  outline: none;
  border-color: var(--accent);
}

.ver_pass_input_login {
  position: absolute;
  top: 50%;
  right: var(--spacing);
  transform: translateY(-50%);
  cursor: pointer;
}

.ver_pass_input_login img {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.ver_pass_input_login img:hover {
  opacity: 1;
}

.cont_btn_login {
  text-align: center;
  margin-top: var(--spacing);
}

.btn_login {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn_login:hover {
  background-color: darken(var(--accent), 10%);
}




/* Pie de página – tema oscuro */
.pie_pagina {
  --bg: #0d0f13;            /* fondo principal */
  --bg-2: #0b0d11;          /* fondo degradado */
  --text: #e6e9ef;          /* texto */
  --muted: #9aa3b2;         /* secundario */
  --accent: #3aa6ff;        /* acento */
  --ring: rgba(58, 166, 255, 0.25);

  width: 100%;
  box-sizing: border-box;
  background:
    radial-gradient(1200px 200px at 50% -80px, var(--ring), transparent 65%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  padding: clamp(12px, 2.5vw, 20px) clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont_texto_pie {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.texto_pie {
  margin: 0;
  font: 500 clamp(12px, 1.7vw, 14px) / 1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: .2px;
  color: var(--muted);
  transition: color .25s ease, text-shadow .25s ease, transform .25s ease;
}

.texto_pie:hover,
.texto_pie:focus {
  color: var(--text);
  text-shadow: 0 0 12px rgba(58, 166, 255, .35);
  transform: translateY(-1px);
  outline: none;
}

/* Accesibilidad: reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
  .texto_pie {
    transition: none;
    text-shadow: none;
    transform: none;
  }
}

/* Opcional: fijar al fondo de la ventana (descomenta si lo necesitas) */
/*
.pie_pagina {
  position: sticky;  bottom: 0;  /* o position: fixed; bottom: 0; left: 0;
}*/

/* Opcional: si usas modo claro en el sitio, asegura contraste en oscuro por defecto
   y adapta si el usuario prefiere claro. */
@media (prefers-color-scheme: light) {
  .pie_pagina {
    --bg: #0f1217;
    --bg-2: #0c0f14;
    --text: #f1f5f9;
    --muted: #c7cdd8;
  }
}





/* ----------------- */

/* Container general */
.seccion_nosotros{
  max-width: 900px;
  margin: 100px auto;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s ease;
  will-change: transform;
  overflow: hidden;
}

.seccion_nosotros:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(2,6,23,0.7);
}

/* Descripción */
.cont_descripcion_nosotros{
  padding: .75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-radius: 10px;
  margin: 0 .4rem .6rem .4rem;
  border: 1px solid rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateY(6px) scale(.995);
  animation: revealUp .6s cubic-bezier(.2,.9,.25,1) .18s forwards;
}

.descripcion_nosotros{
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: #5b6068;
  line-height: 1.6;
  text-wrap: balance;
}

.cont_descripcion_nosotros:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(2,6,23,0.45);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Animaciones */
@keyframes revealUp{
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulseAccent{
  0%   { transform: translateX(-6px) scaleX(.9); opacity:.85; filter:blur(.2px); }
  50%  { transform: translateX(0)    scaleX(1.05); opacity:1; }
  100% { transform: translateX(-6px) scaleX(.9); opacity:.85; }
}

/* accesibilidad */
@media (prefers-reduced-motion: reduce){
  .seccion_nosotros,
  .seccion_nosotros *{
    animation: none !important;
    transition: none !important;
  }
}

/* responsive */
@media (max-width:640px){
  .seccion_nosotros{ margin: 1rem; padding: .85rem; }
  .cont_titulo_seccion::before{ height: 30px; width: 5px; }
  .titulo_seccion{ font-size: 1.25rem; }
  .descripcion_nosotros{ font-size: .98rem; }
}


/* ----------------- */


/* Estilos para formulario de contacto usando variables predefinidas */
.seccion_contacto {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: var(--spacing);
  width: 80%;
  /* max-width: 600px; */
  /* transition: opacity 0.6s, transform 0.6s; */
  margin: 50px auto;
  font-family: var(--font);
  display: flex;
  flex-direction: column;
}

.seccion_contacto:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cont_titulo_seccion {
  text-align: center;
  margin-bottom: calc(var(--spacing) * 1.5);
}

.titulo_seccion {
  font-size: 28px;
  color: var(--colordark);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.titulo_seccion::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--colorAzul);
  border-radius: 2px;
}

.campo_contacto {
  margin-bottom: 25px;
}

.cont_input_campo_contacto,
.cont_textarea_campo_contacto {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cont_tittle_campo_contacto {
  margin-bottom: 8px;
}

.tittle_campo_contacto {
  font-size: 16px;
  font-weight: 600;
  color: var(--colordark);
}

.cont_in_campo_contacto {
  width: 100%;
}

.in_campo_contacto {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--colorAzulClaro);
  border-radius: var(--radius);
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font);
}

.in_campo_contacto:focus {
  outline: none;
  border-color: var(--colorAzul);
  background-color: var(--colorlight);
  box-shadow: 0 0 0 3px rgba(33, 114, 236, 0.2);
}

#in_campo_mensaje {
  min-height: 150px;
  resize: vertical;
}

::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.cont_boton_enviar {
  text-align: center;
  margin-top: 20px;
}

.boton_enviar {
  background-color: var(--colorRojo);
  color: var(--colorTextWhite);
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: var(--font);
}

.boton_enviar:hover {
  background-color: var(--colorRojoHover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.boton_enviar:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.in_campo_contacto.error {
  border-color: var(--colorRed);
}

.in_campo_contacto.success {
  border-color: var(--colorVerde);
}


/* Ejemplo de uso */
.fade-in-up {
  animation: fadeInUpEnhanced 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.campo_contacto {
  opacity: 0;
  animation: var(--placeIn);
}

.campo_contacto:nth-child(2) {
  animation-delay: 0.1s;
}

.campo_contacto:nth-child(3) {
  animation-delay: 0.2s;
}

.campo_contacto:nth-child(4) {
  animation-delay: 0.3s;
}

.campo_contacto:nth-child(5) {
  animation-delay: 0.4s;
}

.cont_boton_enviar {
  opacity: 0;
  animation: var(--placeIn);
  animation-delay: 0.5s;
}

@media (max-width: 768px) {
  .seccion_contacto {
    padding: 20px;
  }
  
  .titulo_seccion {
    font-size: 24px;
  }
  
  .in_campo_contacto {
    padding: 12px;
  }
  
  .boton_enviar {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .seccion_contacto {
    border-radius: 8px;
  }
  
  .titulo_seccion {
    font-size: 22px;
  }
}