/* ========================================
   DISTRIBUIDORA ARCOR CÓRDOBA NORTE
   Styles
   ======================================== */

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

:root {
  --primary: #29b6f6;
  --primary-dark: #0288d1;
  --primary-light: #e1f5fe;
  --accent: #fbc02d;
  --accent-dark: #f9a825;
  --dark: #1a1a2e;
  --gray-900: #212529;
  --gray-700: #495057;
  --gray-500: #6c757d;
  --gray-300: #dee2e6;
  --gray-100: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 0;
  --radius-sm: 0;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Eras Demi ITC', Arial, sans-serif;
  color: var(--dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 24px;
}

.top-bar-contact a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-contact a:hover {
  color: var(--white);
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
}

.top-bar-social a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 64px;
  width: auto;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #29b6f6 0%, #0288d1 40%, #01579b 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(251, 192, 45, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(41, 182, 246, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating Candies */
.hero-candies {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.candy {
  position: absolute;
  opacity: 0.08;
  animation: floatCandy linear infinite;
  will-change: transform;
}

.candy svg {
  width: 100%;
  height: auto;
}

@keyframes floatCandy {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-120px) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.hero-logo-card {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 24px 36px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-title {
  font-family: 'Eras Demi ITC', Arial, sans-serif;
  font-size: 42pt;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #fdd835, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: rgba(255,255,255,0.6);
}

.hero-scroll a:hover {
  color: var(--white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,192,45,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ========================================
   TOKIN BANNER
   ======================================== */
.tokin-banner {
  background: var(--white);
  padding: 24px 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.tokin-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a3a5c, #2a5a8c);
  border-radius: var(--radius);
  padding: 24px 36px;
  box-shadow: var(--shadow-lg);
}

.tokin-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tokin-icon {
  font-size: 2.5rem;
}

.tokin-text h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.tokin-text p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0;
}

.tokin-btn {
  background: #fdd835 !important;
  color: #1a3a5c !important;
  font-weight: 700;
  white-space: nowrap;
  border: none;
}

.tokin-btn:hover {
  background: #ffb300 !important;
  color: #1a3a5c !important;
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--gray-300);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: inline;
}

.stat-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light .section-title,
.section-header.light .section-tag {
  color: var(--white);
}

.section-header.light .section-line {
  background: var(--accent);
}

.section-header.light .section-tag {
  color: var(--accent);
}

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Eras Demi ITC', Arial, sans-serif;
  font-size: 42pt;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
}

.section-desc {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ========================================
   NOSOTROS
   ======================================== */
.nosotros {
  background: var(--gray-100);
}

.nosotros-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.nosotros-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mission-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mission-card:nth-child(2) {
  border-left-color: var(--accent);
}

.mission-card:nth-child(3) {
  border-left-color: #43a047;
}

.mission-icon {
  color: var(--primary);
  margin-bottom: 16px;
}

.mission-card:nth-child(2) .mission-icon {
  color: var(--accent);
}

.mission-card:nth-child(3) .mission-icon {
  color: #43a047;
}

.mission-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   SERVICIOS
   ======================================== */
.servicios {
  background: var(--white);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.servicio-card {
  background: var(--gray-100);
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.servicio-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-6px);
}

.servicio-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary);
  transition: var(--transition);
}

.servicio-card:hover .servicio-icon {
  background: var(--primary);
  color: var(--white);
}

.servicio-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.servicio-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   PRODUCTOS
   ======================================== */
.productos {
  background: var(--gray-100);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.producto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.producto-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.producto-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.producto-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.producto-img svg {
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.producto-info {
  padding: 24px;
}

.producto-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.producto-info p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-500);
}

/* ========================================
   LOGÍSTICA
   ======================================== */
.logistica {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0277bd 0%, #01579b 50%, var(--dark) 100%);
  overflow: hidden;
}

.logistica-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.logistica-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.logistica-item {
  text-align: center;
  padding: 24px;
}

.logistica-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.logistica-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ========================================
   CONTACTO
   ======================================== */
.contacto {
  background: var(--white);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 10px;
}

.contacto-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacto-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contacto-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contacto-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contacto-form-wrapper {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
}

.contacto-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41,182,246,0.15);
}

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

/* ========================================
   MAPA
   ======================================== */
.mapa {
  position: relative;
}

.mapa iframe {
  display: block;
}

.mapa-overlay-link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 65px;
  width: auto;
  filter: brightness(1.1);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  padding: 0;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .productos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .tokin-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 24px;
  }

  .tokin-content {
    flex-direction: column;
  }

  .cobertura-img-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .cobertura-img-wrapper img:first-child,
  .cobertura-img-wrapper img:last-child {
    max-width: 100%;
    max-height: none;
    flex: none;
  }

  .top-bar-contact {
    flex-direction: column;
    gap: 4px;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
  }

  .header-inner {
    height: 70px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 70vh;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -30px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--gray-300);
  }

  .nosotros-cards,
  .nosotros-cards-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .logistica-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-logo-card {
    padding: 16px 24px;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero-title {
    font-size: 24pt;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .productos-grid {
    grid-template-columns: 1fr;
  }

  .logistica-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logistica-number {
    font-size: 2.2rem;
  }

  .section {
    padding: 60px 0;
  }

  .contacto-form-wrapper {
    padding: 24px;
  }

  .cobertura-img {
    max-width: 100%;
  }

  .arcorcenter-img {
    max-width: 280px;
  }
}

/* Producto card links */
.producto-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.producto-card-link:hover .producto-card {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Zona de Cobertura */
.cobertura-img-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.cobertura-img-wrapper img:first-child {
  flex: 2;
  max-width: 60%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.cobertura-img-wrapper img:last-child {
  flex: 1;
  max-width: 28%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ArcorCenter foto */
.arcorcenter-foto {
  text-align: center;
  margin-top: 48px;
}

.arcorcenter-img {
  max-width: 320px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.arcorcenter-caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
}
