.elementor-1819 .elementor-element.elementor-element-085ab40{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:3px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-1819 .elementor-element.elementor-element-085ab40{--padding-top:2px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-9ace1ca */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

/* --- VARIABLES Y RESET --- */
.page-eterny-contact {
  --red: #D42A03; 
  --dark: #111; 
  --gold: #B59453;
  margin: 0; 
  padding: 0;
  font-family: 'Montserrat', sans-serif; 
  color: #333; 
  overflow-x: hidden;
}

/* --- 1. HERO SECTION (VIDEO Y TEXTOS) --- */
.contact-hero-full {
  position: relative; 
  width: 100%; 
  height: 100vh;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: #000; 
  overflow: hidden;
}

/* Refuerzo de legibilidad en la base del Hero (Vignette) */
.contact-hero-full::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  z-index: 3;
  pointer-events: none;
}

.video-container {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: 1;
}

.video-container video {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

.video-overlay {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 2;
}

.hero-content-fixed {
  position: relative; 
  z-index: 10; 
  text-align: center; 
  color: #ffffff !important; 
  padding: 0 20px; 
  width: 100%;
}

.pre-title {
  text-transform: uppercase; 
  letter-spacing: 6px; 
  font-weight: 700; 
  color: var(--gold);
  margin-bottom: 15px; 
  display: block; 
  font-size: 0.85rem;
}

.main-title {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 800; 
  text-transform: uppercase; 
  line-height: 1.1; 
  margin: 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* --- 2. INDICADOR DE FLECHA ANIMADA --- */
.scroll-arrow-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(45deg);
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.8; }
  40% { transform: translateY(-10px) rotate(45deg); opacity: 1; }
  60% { transform: translateY(-5px) rotate(45deg); opacity: 1; }
}

/* --- 3. CUERPO DE PÁGINA Y GRID --- */
.contact-wrapper { 
  padding: 100px 5%; 
  background: white; 
}

.container-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: flex; 
  gap: 60px; 
}

.form-column { flex: 2; }
.info-column { flex: 1; }

.section-heading { 
  font-size: clamp(1.8rem, 5vw, 2.5rem); 
  font-weight: 800; 
  text-transform: uppercase; 
  margin-bottom: 10px; 
}

.section-intro { 
  font-size: 1.1rem; 
  color: #666; 
  margin-bottom: 40px; 
}

/* --- 4. FORMULARIO E INPUTS --- */
.input-row { 
  display: flex; 
  gap: 20px; 
  margin-bottom: 20px; 
}

.input-row input, 
.input-row select, 
textarea { 
  width: 100%; 
  padding: 18px; 
  border: 1px solid #ddd; 
  font-family: 'Montserrat'; 
  font-size: 1rem; 
  border-radius: 0;
  background: #fff;
}

/* --- 5. BOTÓN PREMIUM UNIFICADO --- */
.btn-submit {
  position: relative;
  background: var(--dark);
  color: #ffffff;
  border: none;
  padding: 24px 40px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 10px;
  z-index: 1;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 42, 3, 0.3), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-submit:hover {
  background: var(--red) !important;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 42, 3, 0.3);
  letter-spacing: 6px;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:active {
  transform: translateY(-2px);
}

/* --- 6. SIDEBAR INFO --- */
.info-card-premium { 
  background: #f9f9f9; 
  padding: 40px; 
  border-top: 5px solid var(--red); 
}

.card-title { 
  font-weight: 800; 
  text-transform: uppercase; 
  margin-bottom: 25px; 
  font-size: 1.2rem; 
}

.data-group p { 
  margin-bottom: 20px; 
  font-weight: 700; 
  font-size: 0.95rem; 
}

.data-group a { 
  color: var(--dark); 
  text-decoration: none; 
}

.tech-tag { 
  color: var(--red); 
  font-weight: 800; 
  font-size: 0.8rem; 
  margin-top: 30px; 
  text-align: center; 
}

/* --- 7. MAPA --- */
.map-full-section { 
  line-height: 0; 
  filter: grayscale(1); 
  transition: 0.5s; 
}

.map-full-section:hover { 
  filter: grayscale(0); 
}

/* --- 8. MEDIA QUERIES FINALES --- */
@media (max-width: 992px) {
  .container-inner { flex-direction: column; }
  .input-row { flex-direction: column; gap: 20px; }
  .info-column { order: 2; }
  .contact-wrapper { padding: 60px 20px; }
}

@media (max-width: 768px) {
  .contact-hero-full { height: 100svh; }
  .main-title { font-size: 2rem; }
  .pre-title { letter-spacing: 3px; font-size: 0.75rem; }
  
  .scroll-arrow-indicator { bottom: 30px; }
  .arrow-down { width: 16px; height: 16px; border-right: 2px solid #ffffff; border-bottom: 2px solid #ffffff; }

  .btn-submit { padding: 20px 30px; font-size: 0.9rem; letter-spacing: 3px; }
  .btn-submit:hover { letter-spacing: 4px; }
}/* End custom CSS */