/* ==========================================
   GRUPO IR - Landing Page Styles
   ========================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1A3854;
  background: rgba(30, 58, 95, 0.6);
  overflow-x: hidden !important;
  max-width: 100vw !important;
  position: relative !important;
}

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

ul {
  list-style: none;
}

/* ==========================================
   Header
   ========================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 40px 0 10px;
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid #E5E7EB !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.063);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.logo {
  margin-left: -10px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 180px;
  width: auto;
}

.monogram {
  font-size: 18px;
  font-weight: 900;
  color: #1A3854;
  line-height: 1;
}

.logo-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.brand-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #2C4A5E !important;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.nav-link.active {
  color: #1A3854;
  font-weight: 600;
}

.nav-link:hover {
  color: #5B7FA6 !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 14px 32px;
  background: #5B7FA6 !important;
  color: #FFFFFF !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.header-cta:hover {
  box-shadow: 0 4px 12px rgba(91, 127, 166, 0.4);
  background: #4A6B8C !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1A3854;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 105px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 56, 84, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 0 32px;
}

.mobile-nav-link {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.5px;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #FFFFFF;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  padding: 140px 80px 56px;
  background: #2C4A5E !important;
  min-height: auto;
  height: auto;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #1A3854 0%,
    rgba(26, 56, 84, 0.88) 40%,
    rgba(26, 56, 84, 0.88) 60%,
    #1A3854 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-accent {
  width: 48px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF !important;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.7;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.hero-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 14px 36px;
  background: #5B7FA6;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(91, 127, 166, 0.4);
  background: #4A6B8C;
}

.hero-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 48px;
  background: #2C4A5E !important;
  border-top: 3px solid #4A9ECA !important;
  border-radius: 14px;
  max-width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF !important;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6) !important;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ==========================================
   Identity / Quiénes Somos Section
   ========================================== */
.identity-section {
  background: #FFFFFF !important;
  padding: 130px 80px;
}

.identity-row {
  display: flex;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.identity-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-tag {
  color: #6B7894 !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.identity-title {
  color: #1A1A1A !important;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.identity-sub {
  color: #4A5568 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.section-line {
  width: 40px;
  height: 2px;
  background: rgba(26, 37, 54, 0.08);
  border-radius: 2px;
}

.founders-photo {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  background: #3A4A5C url('images/equipo-fundador.png') center/cover no-repeat;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
  overflow: hidden;
}

.founders-overlay {
  display: flex;
}

.founders-names {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.founders-caption {
  text-align: center;
  font-size: 14px;
  color: #6B7280 !important;
  margin-top: 12px;
  font-style: italic;
}

.identity-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: #F8F9FA !important;
  border-radius: 10px;
  border: 1px solid #E5E7EB !important;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-text h3 {
  color: #1A1A1A !important;
  font-size: 17px;
  font-weight: 700;
}

.service-text p {
  color: #6B7280 !important;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.6;
}

/* ==========================================
   Presencia Global Section - CON MAPAS
   ========================================== */
.presencia-section {
  background: #2C4A5E !important;
  padding: 130px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.presencia-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.presencia-title {
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF !important;
  letter-spacing: -0.5px;
}

.presencia-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
}

/* Grid de cards de presencia */
.presencia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Card nueva con mapa */
.presencia-card-new {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.presencia-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.18);
}

.presencia-card-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.presencia-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Badge de bandera */
.presencia-flag-badge {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.presencia-flag-badge.ar {
  background: linear-gradient(135deg, #74acdf 0%, #4a8bc2 100%);
}

.presencia-flag-badge.cn {
  background: linear-gradient(135deg, #de2910 0%, #b8220d 100%);
}

/* Título de ubicación */
.presencia-location-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.presencia-location-title h3 {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.1;
}

.presencia-location-title .country-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* Box de dirección */
.presencia-address-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.presencia-address-box svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #5B9FD8;
}

.presencia-address-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.presencia-address-text .company-name {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.presencia-address-text .address-line {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Lista de servicios */
.presencia-services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.presencia-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.presencia-service-item svg {
  flex-shrink: 0;
  color: rgba(91, 159, 216, 0.8);
}

.presencia-service-item span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* Mapa Container */
.presencia-map-wrapper {
  position: relative;
  height: 200px;
  background: rgba(0, 0, 0, 0.3);
}

.presencia-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) contrast(1.05);
  transition: filter 0.4s ease;
}

.presencia-card-new:hover .presencia-map-wrapper iframe {
  filter: grayscale(0%) contrast(1);
}

/* Overlay del link del mapa */
.map-link-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(26, 56, 84, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 10;
}

.map-link-overlay:hover {
  background: #5B7FA6;
  border-color: #5B7FA6;
}

.map-link-overlay svg {
  width: 14px;
  height: 14px;
}

/* ==========================================
   Transparencia Section
   ========================================== */
.transparencia-section {
  background: #FFFFFF !important;
  padding: 130px 80px;
}

.transparencia-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.transparencia-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.transparencia-title {
  color: #1A1A1A !important;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.transparencia-intro {
  color: #4A5568 !important;
  max-width: 700px;
  font-size: 17px;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF !important;
  border-radius: 12px;
  border: 1px solid #E5E7EB !important;
  text-align: left;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(91, 127, 166, 0.12);
  border-color: #5B7FA6;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDF2F7;
  color: #5B7FA6;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
}

.benefit-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A !important;
  margin: 0 0 4px 0;
}

.benefit-content p {
  font-size: 14px;
  color: #6B7280 !important;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================
   CTA / Contact Section
   ========================================== */
.cta-section {
  background: #FFFFFF !important;
  padding: 130px 80px;
}

.cta-row {
  display: flex;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.cta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #1A1A1A !important;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.cta-desc {
  font-size: 16px;
  font-weight: 400;
  color: #4A5568 !important;
  line-height: 1.75;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item svg {
  flex-shrink: 0;
}

.contact-email {
  font-size: 15px;
  font-weight: 500;
  color: #1A3854;
}

.contact-item span {
  font-size: 15px;
  color: #4A5568;
}

.cta-right {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A !important;
}

.form-group input,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1px solid #E0E3E8;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1A3854;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1A3854;
  box-shadow: 0 0 0 3px rgba(26, 56, 84, 0.08);
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-error {
  font-size: 12px;
  color: #e53e3e;
  position: absolute;
  bottom: -18px;
  left: 0;
}

.form-btns {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 12px 36px;
  background: #5B7FA6;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(91, 127, 166, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(91, 127, 166, 0.4);
  background: #4A6B8C;
}

.btn-loading {
  display: none;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .btn-loading {
  display: flex;
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4A5568;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wa-btn:hover {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37, 211, 102, 0.04);
}

/* Form Success */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
}

.form-success.show {
  display: flex;
}

.form-success p {
  font-size: 14px;
  font-weight: 500;
  color: #166534;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: #2C4A5E !important;
  padding: 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-top {
  display: flex;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.footer-brand {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-logo .monogram {
  color: rgba(255, 255, 255, 0.565);
}

.footer-logo-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF !important;
  letter-spacing: 3px;
}

.footer-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.396);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-email {
  color: rgba(255, 255, 255, 0.439) !important;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.031);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.footer-copy {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.188);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.footer-socials a:hover {
  opacity: 0.8;
}

/* ==========================================
   Botón Flotante de WhatsApp
   ========================================== */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 64px !important;
  height: 64px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5) !important;
  z-index: 9999 !important;
  transition: transform 0.3s ease !important;
}

.whatsapp-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7) !important;
}

.whatsapp-float svg {
  fill: #FFFFFF !important;
  width: 36px !important;
  height: 36px !important;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
  .header {
    padding: 0 32px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 40px 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .identity-section {
    padding: 100px 40px;
  }

  .identity-row {
    flex-direction: column;
    gap: 56px;
  }

  .presencia-section {
    padding: 100px 40px;
  }

  .transparencia-section {
    padding: 100px 40px;
  }

  .cta-section {
    padding: 100px 40px;
  }

  .cta-row {
    flex-direction: column;
    gap: 56px;
  }

  .footer {
    padding: 44px 32px;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-brand {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .presencia-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  /* HEADER */
  .header {
    padding: 0 20px 0 5px !important;
    height: 105px !important;
  }

  .header-cta {
    display: none;
  }
  
  .logo-img {
    height: 100px !important;
    margin-left: -5px !important;
  }
  
  /* HERO */
  .hero {
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    padding: 140px 24px 56px !important;
  }

  .hero-content {
    max-width: 100%;
  }
  
  .hero-accent {
    width: 60px !important;
    height: 4px !important;
    margin-bottom: 20px !important;
  }

  .hero-title {
    font-size: 32px !important;
    letter-spacing: -0.5px;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
  }

  .hero-sub {
    font-size: 16px !important;
    max-width: 100%;
    line-height: 1.6 !important;
    margin-bottom: 32px !important;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 16px !important;
    width: 100% !important;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100% !important;
    padding: 16px 28px !important;
    font-size: 15px !important;
    text-align: center !important;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 20px 12px !important;
    margin-top: 40px !important;
    max-width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .stat {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 4px !important;
    min-width: 0 !important;
  }
  
  .stat-number {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    line-height: 1 !important;
  }
  
  .stat-label {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .stat-divider {
    display: none !important;
  }

  .identity-section,
  .presencia-section,
  .transparencia-section,
  .cta-section {
    padding: 72px 24px;
  }

  .identity-title {
    font-size: 28px;
  }

  .presencia-title,
  .transparencia-title,
  .cta-title {
    font-size: 26px;
  }

  .presencia-sub {
    text-align: left;
    font-size: 15px;
  }

  /* Presencia cards mobile */
  .presencia-card-info {
    padding: 28px 24px;
    gap: 20px;
  }

  .presencia-card-header {
    gap: 16px;
  }

  .presencia-flag-badge {
    width: 52px;
    height: 52px;
    font-size: 26px;
    border-radius: 12px;
  }

  .presencia-location-title h3 {
    font-size: 22px;
  }

  .presencia-location-title .country-tag {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .presencia-address-box {
    padding: 14px 16px;
  }

  .presencia-address-text .company-name {
    font-size: 14px;
  }

  .presencia-address-text .address-line {
    font-size: 13px;
  }

  .presencia-service-item span {
    font-size: 13px;
  }

  .presencia-map-wrapper {
    height: 180px;
  }

  .map-link-overlay {
    padding: 8px 12px;
    font-size: 12px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-btns {
    flex-direction: column;
  }

  .submit-btn,
  .wa-btn {
    width: 100%;
  }

  .footer {
    padding: 36px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .whatsapp-float {
    width: 56px !important;
    height: 56px !important;
    bottom: 20px !important;
    right: 20px !important;
  }
  
  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
  }
  
  input, textarea, select {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 100px !important;
    margin-left: -5px !important;
  }
  
  .presencia-flag-badge {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .presencia-location-title h3 {
    font-size: 20px;
  }
  
  .hero-title {
    font-size: 28px !important;
  }
  
  .hero-sub {
    font-size: 14px !important;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 14px 24px !important;
    font-size: 14px !important;
  }
  
  .stat-number {
    font-size: 24px !important;
  }
  
  .stat-label {
    font-size: 10px !important;
  }
}
