:root{
  --bg:#07110a;
  --bg2:#06130a;
  --text:#eaf4ea;
  --muted:#a6b7a6;
  --green:#1fb24a;
  --gold:#f0b429;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.10);
  --shadow:0 12px 28px rgba(0,0,0,.45);
  --radius:18px;

  /* Layout più largo per valorizzare card/hero */
  --max:2100px;

  --accent: var(--green);

  /* Fade edges (lighter, mostly on borders) */
  --fade:0.22;
  --fade-opacity:0.12;
  --fade-side:2.2%;
  --fade-top:3.2%;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(1200px 600px at 50% -100px, rgba(31,178,74,.18), transparent 70%),
             radial-gradient(900px 500px at 10% 10%, rgba(240,180,41,.10), transparent 60%),
             linear-gradient(180deg, #040604 0%, var(--bg) 40%, #030403 100%);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

/* Header */
.header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  background:linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.38) 100%);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  max-width:var(--max);
  margin:0 auto;
  padding:16px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:14px;
}
.brand img{height:64px; width:auto}
.menu{
  display:flex;
  align-items:center;
  gap:20px;

  font-weight:600;
  letter-spacing:.2px;
  font-size:16px;

  color:rgba(233,243,234,.92);
}
.menu a{padding:10px 14px; border-radius:12px; font-size:16px; letter-spacing:.2px}
.menu a:hover{background:rgba(255,255,255,.06)}
.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border:1px solid rgba(31,178,74,.35);
  background:linear-gradient(180deg, rgba(31,178,74,.28), rgba(31,178,74,.12));
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.cta strong{font-weight:800}

.hamburger{display:none; border:1px solid rgba(255,255,255,.14); background:rgba(0,0,0,.25); color:var(--text); border-radius:12px; padding:10px 12px}

@media (max-width: 880px){
  .menu{display:none}
  .hamburger{display:inline-flex}
  .brand img{height:44px}
  .nav{padding:14px 18px}
}

.mobile{display:none; border-top:1px solid rgba(255,255,255,.06)}
.mobile.open{display:block}
.mobile a{display:block; padding:14px 18px; border-bottom:1px solid rgba(255,255,255,.06)}

/* Layout */
.container{max-width:var(--max); margin:0 auto; padding:0 40px}
.page{padding-top:102px;}
.section{padding:44px 0}

.section-title{
  text-align:center;
  font-size:20px;
  letter-spacing:.3px;
  margin:0 0 18px 0;
}
.section-title span{color:inherit}
.title-white{color:var(--text)}
.title-accent{color:var(--accent)}

/* Titoli stile render: linee + parola colorata */
.fancy-title{
  display:flex; align-items:center; justify-content:center;
  gap:12px; position:relative; flex-wrap:wrap;
}
.fancy-title::before,
.fancy-title::after{content:""; height:2px; width:min(360px, 26vw)}
.fancy-title::before{
  background:linear-gradient(90deg, rgba(31,178,74,0) 0%, rgba(31,178,74,.92) 55%, rgba(31,178,74,0) 100%)
}
.fancy-title::after{
  background:linear-gradient(90deg, rgba(240,180,41,0) 0%, rgba(240,180,41,.92) 55%, rgba(240,180,41,0) 100%)
}

/* Hero */
.hero{padding:0;margin-top:0; position:relative; z-index:1;}
.hero-wrap{
  position:relative;
  width:100%;
  margin: 0 auto;
  height:auto;              /* IMPORTANT: non sovrapporre sezioni */
  border-radius:0;
  overflow:hidden;          /* IMPORTANT: niente “sbordi” */
}

/* banner: non tagliare testi */
.hero-img{width:100%; height:auto; display:block; filter:saturate(1.03) contrast(1.01)}

/* decorative frame lines (green/yellow) */
.hero-frame{
  position:absolute; left:0; right:0; top:14px; bottom:0;
  pointer-events:none;
  max-width:var(--max);
  margin:0 auto;
  padding:0 40px;
}
.hero-frame::before,
.hero-frame::after{
  content:""; position:absolute; left:40px; right:40px;
  bottom:-2px; height:18px; border-radius:999px; opacity:.92;
}
.hero-frame::before{
  background:linear-gradient(90deg, rgba(31,178,74,0) 0%, rgba(31,178,74,.96) 22%, rgba(31,178,74,.96) 78%, rgba(31,178,74,0) 100%)
}
.hero-frame::after{
  bottom:6px; height:10px;
  background:linear-gradient(90deg, rgba(240,180,41,0) 0%, rgba(240,180,41,.92) 28%, rgba(240,180,41,.92) 72%, rgba(240,180,41,0) 100%)
}

/* Card base */
.card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:4px solid rgba(255,255,255,.92);
  border-radius:var(--radius);
  box-shadow:var(--shadow), 0 0 0 1px rgba(255,255,255,.14);
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:0;
  border-radius:var(--radius);
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24), inset 0 18px 30px rgba(255,255,255,.05);
}
.card.no-border{border:0; background:transparent; box-shadow:none}
.card.no-border::before{display:none !important;}

.fade-edges{position:relative}
.fade-edges::after{
  content:"";position:absolute;inset:0;pointer-events:none;z-index:2;
  border-radius:inherit;
  background:
    radial-gradient(120% 120% at 50% 50%, rgba(0,0,0,0) 62%, rgba(0,0,0,var(--fade)) 100%),
    linear-gradient(180deg, rgba(0,0,0,var(--fade)) 0%, rgba(0,0,0,0) var(--fade-top), rgba(0,0,0,0) calc(100% - var(--fade-top)), rgba(0,0,0,var(--fade)) 100%),
    linear-gradient(90deg, rgba(0,0,0,var(--fade)) 0%, rgba(0,0,0,0) var(--fade-side), rgba(0,0,0,0) calc(100% - var(--fade-side)), rgba(0,0,0,var(--fade)) 100%);
  opacity:var(--fade-opacity);
}

/* Services */
.services{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  grid-auto-flow: row;
  grid-auto-rows: 350px; /* richiesto: card più alte */
}

/* Spans (usati dal tuo HTML) */
.span-3{grid-column: span 3}
.span-4{grid-column: span 4}
.span-5{grid-column: span 5}
.span-6{grid-column: span 6}
.span-7{grid-column: span 7}
.span-8{grid-column: span 8}
.h-1{grid-row: span 1}
.h-2{grid-row: span 2}

/* Cards servizi: stile render */
.services .card{
  border-radius:24px;
  border:4px solid rgba(255,255,255,.85);
  box-shadow:0 18px 45px rgba(0,0,0,.60), inset 0 0 0 1px rgba(255,255,255,.18);
}

.service{min-height:350px}
.service img{width:100%; height:100%; object-fit:cover}

/* Overlay titolo (senza box): grande + ombra */
.services .service .overlay{position:absolute; inset:0; padding:22px; display:block;}
.services .service .overlay > div{width:100%;}

.services .service .title{
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 600;
  letter-spacing:.2px;
  text-shadow:0 6px 18px rgba(0,0,0,.75);
  margin:0;
}
.services .service .subtitle{
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight:400;
  color: rgba(233,243,234,.88);
  margin:6px 0 0 0;
  text-shadow:0 4px 14px rgba(0,0,0,.65);
}

/* Sfumatura alta (non box) per leggibilità titolo */
.services .service::after{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:46%;
  background: linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}

/* =========================
   SERVIZI - CARD CLICCABILE (NO PULSANTE)
   Hover: glow + CTA overlay "Scopri →"
   ========================= */

/* Nasconde eventuali vecchi pulsanti nelle card servizi */
.services .service .btn{display:none !important;}

/* Rende evidente che tutta la card è cliccabile */
.services .service{
  cursor: pointer;
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* Animazione immagine */
.services .service img{
  transition: transform .35s ease, filter .35s ease;
  will-change: transform, filter;
}

/* Overlay: shine + CTA */
.services .service .overlay::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0;
  transition: opacity .22s ease;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,.10) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%);
}

.services .service .overlay::after{
  content:"Approfondisci";

  position:absolute;
  left:50%;
  bottom:-40px;
  transform:translateX(-50%);
  pointer-events:none;

  padding:7px 14px;
  border-radius:999px;

  font-size:13px;
  font-weight:600;   /* stesso peso dei titoli servizi */
  letter-spacing:.02em;

  color:rgba(233,243,234,.92);
  background:rgba(7,17,10,.65);
  border:1px solid rgba(31,178,74,.35);

  backdrop-filter:blur(8px);
  box-shadow:0 8px 20px rgba(0,0,0,.30);

  opacity:0;
  transition:
    transform .25s ease,
    opacity .25s ease,
    bottom .25s ease;
}

/* Hover desktop: CTA diventa giallo */
@media (hover:hover) and (pointer:fine){
 .services .service:hover{
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(0,0,0,.65),
    0 0 0 1px rgba(31,178,74,.28),
    0 0 28px rgba(31,178,74,.24);
  border-color: rgba(31,178,74,.95);
}
  .services .service:hover img{
    transform: scale(1.045);
    filter: brightness(1.08) saturate(1.08);
  }
  .services .service:hover .overlay::before{ opacity:1; }
  .services .service:hover .overlay::after{
  opacity:1;
  bottom:18px;;
    transform: translateX(-50%) translateY(0);
    background: linear-gradient(180deg, rgba(240,180,41,.95), rgba(190,130,18,.95));
    color: #231806;
  }
}

/* Equipment section */
.equip{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:stretch; /* richiesto: stessa altezza colonne */
}

.equip-left{
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  padding:14px;
  display:flex;
  flex-direction:column;
}
.equip-right{
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  padding:14px;
  display:flex;
  flex-direction:column;
}

/* Mini grid */
.mini-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  flex:1;
}
.mini{
  aspect-ratio: 4 / 3;
}
.mini img{width:100%; height:100%; object-fit:cover}
.mini .mini-label{
  position:absolute; left:10px; bottom:10px;
  font-weight:900; letter-spacing:.6px;
  font-size:12px;
  text-transform:uppercase;
  background:rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.10);
  padding:6px 10px;
}

.right-banner{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:rgba(0,0,0,.18);
  padding:0;                 /* per farla riempire bene */
  flex:1;                     /* stessa altezza della colonna sinistra */
  display:flex;
  align-items:flex-start;     /* richiesto: allineata in alto */
  justify-content:flex-start;
}

.right-banner img{
  width:100%;
  height:100%;
  object-fit:cover;           /* riempie il box */
  object-position: top center;/* allineata in alto */
  border-radius:12px;
  display:block;
}

/* Block titles */
.block-title{
  display:flex; justify-content:space-between; align-items:center;
  margin:0 0 10px 0;
  gap:10px;
}
.block-title h3{
  margin:0;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:rgba(233,243,234,.9)
}

/* Footer (se lo userai in futuro) */
.footer{
  padding:30px 0 40px;
  border-top:1px solid rgba(255,255,255,.06);
  color:rgba(233,243,234,.75);
}
.footer .row{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer img{height:54px; width:auto; opacity:.92}

/* Responsive */
@media (max-width: 980px){
  .container{padding:0 18px}
  .hero-frame{padding:0 18px}
  .hero-frame::before,
  .hero-frame::after{left:18px; right:18px}

  .services{grid-template-columns: repeat(8, 1fr); grid-auto-rows: 300px}
  .span-8{grid-column: span 8}
  .span-7{grid-column: span 8}
  .span-6{grid-column: span 8}
  .span-5{grid-column: span 4}
  .span-4{grid-column: span 4}
  .span-3{grid-column: span 4}

  .equip{grid-template-columns: 1fr}
}

@media (max-width: 620px){
  /* Hero: ok */
  .hero-img{height:auto; min-height:0}

  /* Servizi: UNA colonna ordinata */
  .services{
    grid-template-columns: 1fr !important;
    grid-auto-rows: 270px;
    grid-auto-flow: row !important;
  }
  .services .service{
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height:270px;
  }

  /* Testi card più compatti */
  .services .service .title{font-size: 30px;}
  .services .service .subtitle{font-size: 18px;}
  .services .service .overlay{padding:16px;}

  .mini-grid{grid-template-columns: 1fr}
}
/* =========================
   MENU UNDERLINE ANIMATION
   ========================= */

.menu a{
  position:relative;
  padding:10px 16px;
  font-weight:600;
  letter-spacing:.2px;
  transition:color .25s ease;
}

/* linea sotto il menu */
.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:4px;

  width:0%;
  height:2px;

  background:var(--green);
  transition:width .25s ease, background .25s ease;
}

/* hover */
.menu a:hover::after{
  width:100%;
  background:var(--gold);
}

/* =========================
   BREADCRUMB (SEO + UX)
   ========================= */
.breadcrumb{
  background: rgba(15,26,21,.92);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 3;
}
.breadcrumb .container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(233,243,234,.65);
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:0;
}
.breadcrumb a{
  color: rgba(233,243,234,.78);
  text-decoration: none;
  transition: color .2s ease;
}
.breadcrumb a:hover{ color: var(--gold); }
.breadcrumb span{ margin: 0 8px; color: rgba(233,243,234,.45); }
.breadcrumb .current{ color: #fff; font-weight: 500; }
@media (min-width: 981px){
  .breadcrumb .container{ padding: 12px 40px; }
}
/* ==========================================
   FOOTER PREMIUM COMPLETO EUROAGRICOLA
   ========================================== */

.footer-pro{
  margin-top:80px;
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(31,178,74,.10), transparent 60%),
    radial-gradient(700px 320px at 85% 0%, rgba(240,180,41,.08), transparent 60%),
    linear-gradient(180deg, #040604 0%, #060a06 100%);
  border-top:1px solid rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}

.footer-pro::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(31,178,74,0) 0%,
      rgba(31,178,74,.08) 18%,
      rgba(31,178,74,0) 36%,
      rgba(240,180,41,0) 64%,
      rgba(240,180,41,.06) 82%,
      rgba(240,180,41,0) 100%);
  opacity:.55;
}

.footer-pro__top{
  position:relative;
  z-index:1;
  padding:58px 40px 34px;
}

.footer-pro__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap:34px;
  align-items:start;
}

.footer-pro__col h4{
  margin:0 0 16px 0;
  font-size:15px;
  font-weight:700;
  letter-spacing:.03em;
  color:rgba(233,243,234,.98);
}

.footer-pro__brand{
  padding-right:10px;
}

.footer-pro__brand-link{
  display:inline-flex;
  align-items:center;
}

.footer-pro__logo{
  height:58px;
  width:auto;
  margin-bottom:18px;
}

.footer-pro__lead{
  margin:0;
  color:rgba(233,243,234,.76);
  line-height:1.75;
  font-size:14px;
  max-width:40ch;
}

.footer-pro__lead strong{
  color:rgba(233,243,234,.94);
  font-weight:600;
}

.footer-pro__trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.footer-pro__trust span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  color:rgba(233,243,234,.88);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.footer-pro__quality{
  margin-top:18px;
}

.footer-pro__quality img{
  width:96px;
  height:auto;
  opacity:.95;
}

.footer-pro__links{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-pro__links li{
  margin:0 0 11px 0;
}

.footer-pro__links a,
.footer-pro__contact-list a,
.footer-pro__bottom-links a{
  color:rgba(233,243,234,.76);
  text-decoration:none;
  transition:color .18s ease, opacity .18s ease;
}

.footer-pro__links a:hover,
.footer-pro__contact-list a:hover,
.footer-pro__bottom-links a:hover{
  color:var(--green);
}

.footer-pro__links a{
  font-size:14px;
  line-height:1.5;
}

.footer-pro__contact-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-pro__contact-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.footer-pro__icon{
  flex:0 0 20px;
  width:20px;
  height:20px;
  color:rgba(31,178,74,.95);
  margin-top:2px;
}

.footer-pro__icon svg{
  width:100%;
  height:100%;
  display:block;
}

.footer-pro__contact-item p{
  margin:0;
  color:rgba(233,243,234,.76);
  line-height:1.7;
  font-size:14px;
}

.footer-pro__contact-item strong{
  color:rgba(233,243,234,.95);
  font-weight:600;
}

.footer-pro__cta{
  padding:18px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.30);
}

.footer-pro__cta p{
  margin:0 0 16px 0;
  color:rgba(233,243,234,.78);
  line-height:1.7;
  font-size:14px;
}

.footer-pro__button{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:46px;
  padding:12px 14px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.footer-pro__button + .footer-pro__button{
  margin-top:10px;
}

.footer-pro__button:hover{
  transform:translateY(-2px);
}

.footer-pro__button--shop{
  color:#08120b;
  background:linear-gradient(180deg, rgba(31,178,74,.98), rgba(18,130,55,.96));
  border:1px solid rgba(31,178,74,.65);
  box-shadow:0 14px 30px rgba(12,90,35,.30);
}

.footer-pro__button--wa{
  color:rgba(233,243,234,.94);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.footer-pro__mini-note{
  margin-top:12px;
  color:rgba(233,243,234,.56);
  font-size:12px;
  line-height:1.6;
}

.footer-pro__bottom{
  position:relative;
  z-index:1;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-pro__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 40px 22px;
}

.footer-pro__bottom-inner p{
  margin:0;
  color:rgba(233,243,234,.56);
  font-size:13px;
  line-height:1.5;
}

.footer-pro__bottom-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-pro__bottom-links a{
  font-size:13px;
  color:rgba(233,243,234,.62);
}

/* Responsive */
@media (max-width: 1200px){
  .footer-pro__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .footer-pro__top{
    padding:44px 18px 26px;
  }

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

  .footer-pro__bottom-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 18px 20px;
  }

  .footer-pro__logo{
    height:50px;
  }
}
/* ==========================================
   HEADER PREMIUM UNIFICATO
   ========================================== */

.header-premium{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:80;
  background:
    linear-gradient(180deg, rgba(3,6,4,.92) 0%, rgba(3,6,4,.78) 100%);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.nav-premium{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand-premium{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-premium img{
  height:56px;
  width:auto;
  flex:0 0 auto;
}

.brand-premium__text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.brand-premium__text strong{
  font-size:16px;
  font-weight:700;
  color:rgba(233,243,234,.98);
  letter-spacing:.01em;
}

.brand-premium__text small{
  font-size:12px;
  color:rgba(233,243,234,.62);
  margin-top:3px;
  letter-spacing:.02em;
}

.menu-premium{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.menu-premium a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:14px;
  font-size:14px;
  font-weight:600;
  color:rgba(233,243,234,.92);
  transition:
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.menu-premium a:hover{
  background:rgba(255,255,255,.05);
  color:#fff;
}

.menu-premium__shop{
  border:1px solid rgba(31,178,74,.38);
  background:linear-gradient(180deg, rgba(31,178,74,.18), rgba(31,178,74,.08));
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.menu-premium__shop:hover{
  border-color:rgba(31,178,74,.75);
  background:linear-gradient(180deg, rgba(31,178,74,.28), rgba(31,178,74,.14));
}

.menu-premium__wa{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.menu-premium__wa:hover{
  border-color:rgba(240,180,41,.45);
  background:rgba(240,180,41,.08);
}

.hamburger-premium{
  display:none;
  width:48px;
  height:48px;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  color:var(--text);
}

.hamburger-premium span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:rgba(233,243,234,.92);
}

.mobile-premium{
  display:none;
  padding:0 18px 16px;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(4,6,4,.96);
}

.mobile-premium.open{
  display:block;
}

.mobile-premium a{
  display:block;
  padding:14px 12px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:rgba(233,243,234,.88);
  font-size:14px;
  font-weight:600;
}

.mobile-premium a:last-child{
  border-bottom:0;
}

/* header spacing */
.page{
  padding-top:104px;
}

/* responsive */
@media (max-width: 1180px){
  .brand-premium__text{
    display:none;
  }

  .menu-premium{
    gap:6px;
  }

  .menu-premium a{
    padding:10px 12px;
    font-size:13px;
  }
}

@media (max-width: 920px){
  .menu-premium{
    display:none;
  }

  .hamburger-premium{
    display:inline-flex;
  }

  .nav-premium{
    padding:14px 18px;
  }

  .brand-premium img{
    height:46px;
  }

  .page{
    padding-top:88px;
  }
}
/* ==========================================
   WHATSAPP FLOATING BUTTON - DEFINITIVO
   ========================================== */

.wa-float,
.wa-float:link,
.wa-float:visited{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  max-width: calc(100vw - 28px);
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  color: #08120b;
  background: linear-gradient(180deg, rgba(37,211,102,.98), rgba(25,176,76,.98));
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.wa-float:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0,0,0,.26);
  filter: brightness(1.02);
}

.wa-float__icon{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  overflow: hidden !important;
}

.wa-float__icon svg,
svg.wa-float__svg{
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex: 0 0 22px !important;
}

.wa-float__icon img{
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain !important;
}

.wa-float__text{
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 768px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 13px 14px;
    font-size: 14px;
  }

  .wa-float__text{
    display: none;
  }
}