/*
Theme Name: Eurosuministros
Theme URI: https://eurosuministros.do
Author: Eurosuministros
Author URI: https://eurosuministros.do
Description: Theme corporativo para Eurosuministros - distribuidor de semillas y productos agrícolas.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eurosuministros
Tags: agriculture, corporate, landing-page
*/

/* =============================================
   VARIABLES & RESET
============================================= */
:root {
  --orange:     #F7941D;
  --orange-dk:  #E07800;
  --blue:       #003DA5;
  --blue-mid:   #0055C8;
  --blue-lt:    #00AEEF;
  --blue-navy:  #001D6E;
  --dark:       #1A1A2E;
  --white:      #FFFFFF;
  --gray-lt:    #F5F5F5;
  --gray:       #666666;
  --font-main:  'Montserrat', sans-serif;
  --font-bold:  'Montserrat', sans-serif;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-bold);
  font-weight: 800;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--blue);
  text-align: center;
  margin-bottom: 0.4em;
}

.section-title span,
.section-title em {
  color: var(--blue-lt);
  font-style: normal;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
  width: 90%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.section-pad {
  padding: 70px 0;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-blue {
  background: var(--blue-mid);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-navy); transform: translateY(-2px); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
}
.btn-outline-blue:hover { background: var(--blue-mid); color: var(--white); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-2px); }

.btn-lt {
  background: var(--blue-lt);
  color: var(--white);
}
.btn-lt:hover { background: var(--blue-mid); }

.btn-wa {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

/* =============================================
   HEADER / NAV
============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

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

/* Nav pill wrapper */
.nav-pill {
  background: var(--blue-navy);
  border-radius: 50px;
  padding: 6px 8px;
}

.nav-pill ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-pill ul li a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-pill ul li a:hover,
.nav-pill ul li a.current {
  background: var(--blue-lt);
  color: var(--white);
}

/* Dropdown */
.nav-pill ul li.has-dropdown { position: relative; }

.nav-pill ul li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 180px;
  padding: 8px 0;
  z-index: 200;
}

.dropdown-menu li a {
  display: block;
  color: var(--blue-navy) !important;
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: background var(--transition) !important;
}

.dropdown-menu li a:hover {
  background: var(--gray-lt) !important;
  color: var(--blue) !important;
}

.nav-pill ul li.has-dropdown:hover .dropdown-menu { display: block; }

/* Search icon */
.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue-navy);
  font-size: 1.2rem;
  padding: 6px;
  transition: var(--transition);
}
.nav-search-btn:hover { color: var(--blue-lt); }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SLIDER
============================================= */
#hero {
  background: var(--orange);
  overflow: hidden;
  position: relative;
}

.hero-slider {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  display: none;
  width: 100%;
}

.hero-slide.active { display: flex; align-items: center; }

.hero-bg-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-circles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.hero-bg-circles span:nth-child(1) { width: 380px; height: 380px; top: -80px; right: 15%; }
.hero-bg-circles span:nth-child(2) { width: 260px; height: 260px; top: 20px; right: 40%; }
.hero-bg-circles span:nth-child(3) { width: 180px; height: 180px; bottom: -40px; right: 5%; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title .brand-name {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  display: block;
  -webkit-text-stroke: 3px rgba(255,255,255,0.4);
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dots button.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Wavy bottom on hero */
#hero::after {
  content: '';
  display: block;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -2px;
}

/* =============================================
   SEMILLAS SECTION
============================================= */
#semillas {
  background: var(--white);
}

.semillas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2rem;
}

.semilla-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.semilla-card:hover {
  background: var(--gray-lt);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.semilla-card img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.semilla-card h3 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.btn-conocer {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--blue-lt);
  color: var(--white);
  padding: 5px 18px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}
.btn-conocer:hover { background: var(--blue); }

/* Divider */
.divider {
  border: none;
  border-top: 1px solid #E5E5E5;
  margin: 0;
}

/* =============================================
   PRODUCTOS SECTION
============================================= */
#productos {
  background: var(--white);
}

.productos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.productos-label {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.productos-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--blue);
  margin-bottom: 8px;
}

.productos-heading span { color: var(--blue-lt); }

.productos-text {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.productos-image img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* =============================================
   MARANGATU / FEATURE BANNER
============================================= */
#marangatu {
  background: linear-gradient(135deg, var(--blue-navy) 0%, var(--blue-mid) 60%, var(--blue-lt) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

#marangatu::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px;
  left: -100px;
}

.marangatu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.marangatu-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.marangatu-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  background: #3CB54A;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.marangatu-product {
  position: relative;
  z-index: 2;
  max-height: 320px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.marangatu-cow {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 160px;
  z-index: 3;
}

.marangatu-orgullo {
  position: absolute;
  top: 10px;
  left: -30px;
  font-size: 0.7rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.7;
}

.marangatu-text { color: var(--white); }

.marangatu-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-lt);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marangatu-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.marangatu-desc {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* =============================================
   MARCAS
============================================= */
#marcas {
  background: var(--white);
}

.marcas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
  margin-top: 2rem;
}

.marca-item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
  max-width: 120px;
}

.marca-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.marca-item img { max-height: 40px; width: auto; }

.marca-item span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
}

/* =============================================
   CONTACTO SECTION
============================================= */
#contacto {
  background: var(--gray-lt);
}

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

.contacto-info h2 {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.contacto-info p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray);
}

.info-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* Contact Form */
.contacto-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #DDD;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #333;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-lt);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}

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

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

.form-submit { margin-top: 8px; }

.form-submit .btn { width: 100%; text-align: center; padding: 14px; font-size: 1rem; }

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .site-logo img {
  height: 56px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--blue-lt); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-lt); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.footer-contact-item span:first-child {
  color: var(--blue-lt);
  font-size: 1rem;
  flex-shrink: 0;
}

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

/* =============================================
   WHATSAPP FLOATING BUTTON
============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.wa-float:hover { transform: scale(1.1); background: #1ebe5d; }

.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .nav-pill, .nav-search-btn { display: none; }
  .menu-toggle { display: flex; }

  .mobile-nav {
    display: none;
    background: var(--blue-navy);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 20px;
    z-index: 999;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
  .mobile-nav ul li a {
    color: var(--white);
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
  }
  .mobile-nav ul li a:hover { background: rgba(255,255,255,0.1); }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 240px; }
  .hero-title .brand-name { font-size: 3.5rem; }

  .semillas-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .productos-inner { grid-template-columns: 1fr; }
  .productos-label { font-size: 3rem; }
  .marangatu-inner { grid-template-columns: 1fr; }
  .marangatu-media { min-height: 260px; margin-bottom: 20px; }
  .contacto-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .semillas-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .semilla-card { padding: 16px 8px; }
  .semilla-card img { width: 80px; height: 80px; }
}

/* =============================================
   HERO – BACKGROUND IMAGE REAL
============================================= */
#hero {
  background: transparent;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  position: relative;
  display: none;
  width: 100%;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
}

.hero-slide.active { display: flex; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0 90px;
  width: 100%;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--white);
}

.hero-title small {
  display: block;
  font-size: 0.7em;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.9;
}

.hero-title .brand-name {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-title em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--blue);
  letter-spacing: 4px;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 400px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Wave separator */
#hero::after {
  content: '';
  display: block;
  height: 56px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  margin-top: -4px;
  position: relative;
  z-index: 3;
}

/* =============================================
   MARANGATU – FULL IMAGE VERSION
============================================= */
#marangatu { padding: 0; overflow: hidden; }

.marangatu-full-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  background-color: var(--blue-navy);
}

.marangatu-inner-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.marangatu-cta {
  color: var(--white);
}

.marangatu-img-side img {
  max-height: 420px;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.marangatu-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-lt);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.marangatu-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* =============================================
   MARCAS – BANNER STRIP
============================================= */
.marcas-banner {
  margin-top: 2rem;
  background: var(--gray-lt);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.marcas-banner img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.marcas-banner:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =============================================
   CONTACTO – WHATSAPP ONLY
============================================= */
.contacto-wa { background: var(--gray-lt); }

.contacto-wa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: var(--shadow);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray);
}

.info-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.btn-wa-big {
  font-size: 1.1rem;
  padding: 16px 36px;
  gap: 12px;
  border-radius: 50px;
  white-space: nowrap;
}

/* =============================================
   FOOTER LOGO
============================================= */
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; color: var(--blue-lt); }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--blue-lt); }

/* =============================================
   RESPONSIVE UPDATES
============================================= */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 50px 0 70px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 260px; }
  .hero-subtitle { margin: 0 auto 24px; }
  .marangatu-overlay { background: rgba(0,29,110,0.7); }
  .contacto-wa-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .btn-wa-big { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .marcas-banner { padding: 20px 16px; }
  .hero-title .brand-name { font-size: 3rem; }
}

@media (max-width: 900px) {
  .marangatu-inner-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .marangatu-img-side img { max-height: 280px; }
  .marangatu-cta { order: 1; }
  .marangatu-img-side { order: -1; }
}

/* =============================================
   HERO – PROPORCIONES CORREGIDAS
============================================= */
.hero-slide {
  min-height: 560px !important;
}

.hero-content {
  grid-template-columns: 1fr 1fr !important;
  padding: 60px 0 80px !important;
  gap: 20px !important;
}

/* Texto hero más compacto, fiel al diseño */
.hero-title {
  margin-bottom: 14px !important;
}

.hero-title small {
  font-size: 1rem !important;
  letter-spacing: 5px !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  margin-bottom: 0 !important;
}

.hero-title .brand-name {
  font-size: clamp(4rem, 9vw, 7.5rem) !important;
  line-height: 0.85 !important;
}

.hero-title em {
  font-size: 1.4rem !important;
  letter-spacing: 6px !important;
  color: var(--blue) !important;
  font-weight: 900 !important;
  display: block !important;
  margin-top: 4px !important;
}

/* Imagen producto – grande, alineada abajo */
.hero-image {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-end !important;
  height: 100% !important;
}

.hero-image img {
  max-height: 480px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25)) !important;
  animation: float 4s ease-in-out infinite !important;
  margin-bottom: -20px !important;
}

/* Hero wave más pronunciada */
#hero::after {
  height: 70px !important;
  clip-path: ellipse(52% 100% at 50% 100%) !important;
}

@media (max-width: 900px) {
  .hero-slide { min-height: 480px !important; }
  .hero-image img { max-height: 240px !important; margin-bottom: 0 !important; }
  .hero-title .brand-name { font-size: 3.5rem !important; }
}
