/* =========================================================
   WE SHIPPING — IDENTIDADE VISUAL
   Baseada na referência fornecida:
   PRETO / DOURADO / BRANCO + geometria arredondada
   ========================================================= */

:root{
  --black:#070707;
  --black-2:#0d0d0d;
  --black-3:#151515;
  --gold:#d58a0b;
  --gold-light:#e3a52d;
  --gold-dark:#a96500;
  --ivory:#f1f2f4;
  --white:#ffffff;
  --gray:#9b9b9b;
  --gray-2:#676767;
  --line:rgba(213,138,11,.22);
  --line-white:rgba(255,255,255,.12);
  --shadow:0 25px 80px rgba(0,0,0,.38);
  --radius:2px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--ivory);
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 40px));margin:auto}

/* ---------- HEADER ---------- */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;

  padding:13px 0;

  background:rgba(7,7,7,.94);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border-bottom:1px solid var(--line-white);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{display:flex;align-items:center}
.brand-logo{
  width:118px;
  height:48px;
  object-fit:contain;
  object-position:left center;
  filter:drop-shadow(0 4px 15px rgba(0,0,0,.35));
}
.footer-logo{width:155px;height:72px}
.main-nav{display:flex;align-items:center;gap:30px;color:rgba(255,255,255,.76);font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase}
.main-nav a{transition:.25s}
.main-nav a:hover{color:var(--gold-light)}
.main-nav .nav-cta{
  color:var(--black);
  background:var(--gold);
  padding:13px 18px;
  border-radius:2px;
}
.main-nav .nav-cta:hover{background:var(--gold-light);color:var(--black)}
.mobile-toggle{display:none;background:none;border:0;color:var(--gold);font-size:27px}

/* ---------- HERO / BANNER PRINCIPAL ---------- */
.hero{
  min-height:100vh;
  height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:150px 0 90px;
  background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.22) 35%,
        rgba(0,0,0,.10) 65%,
        rgba(0,0,0,.25) 100%
    ),
    linear-gradient(
        180deg,
        rgba(0,0,0,.30) 0%,
        rgba(0,0,0,.05) 45%,
        rgba(0,0,0,.30) 100%
    ),
    url("../img/agenciador-de-cargas.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.hero:before,.hero:after{content:none!important}

.hero .container{position:relative;z-index:3}
.hero-grid{display:block;position:relative;z-index:3}
.hero-copy{max-width:780px}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;color:var(--gold-light);
  font-size:10px;letter-spacing:.28em;font-weight:800;margin-bottom:22px;
  
}
.eyebrow:before{content:"";width:28px;height:1px;background:var(--gold)}
.hero h1{
  font:700 clamp(43px,5.3vw,74px)/1.01 Manrope,sans-serif;
  letter-spacing:-.055em;margin:0 0 27px;max-width:780px;color:#fff;
  text-shadow:0 3px 18px rgba(0,0,0,.85),0 8px 40px rgba(0,0,0,.55)
}
.hero h1 span{
  display:block;color:var(--gold);
  text-shadow:0 3px 18px rgba(0,0,0,.9),0 8px 35px rgba(0,0,0,.65)
}
.hero-copy>p{
  max-width:650px;color:rgba(255,255,255,.86);font-size:16px;line-height:1.85;
  margin:0 0 33px;text-shadow:0 2px 12px rgba(0,0,0,.95)
}
.hero-actions{display:flex;align-items:center;gap:22px;flex-wrap:wrap}

/* ---------- BOTÃO PRINCIPAL ---------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--gold);
  color: var(--black);

  padding: 15px 24px;

  border: 1px solid var(--gold);
  border-radius: 2px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;

  text-decoration: none;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);

  transform: translateY(-2px);

  box-shadow:
    0 10px 28px rgba(213, 138, 11, .28);
}

.hero .btn-primary {
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
}



.hero .btn-primary{box-shadow:0 12px 35px rgba(0,0,0,.45)}
.hero .btn-ghost{color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.9)}
.hero-mini-stats{
  display:flex;gap:35px;max-width:650px;margin-top:48px;padding-top:24px;
  border-top:1px solid rgba(255,255,255,.25)
}
.hero-mini-stats div{display:flex;flex-direction:column;gap:6px}
.hero-mini-stats strong{font-size:10px;letter-spacing:.18em;color:var(--gold-light);text-shadow:0 2px 8px rgba(0,0,0,.8)}
.hero-mini-stats span{font-size:10px;color:rgba(255,255,255,.72);text-shadow:0 2px 8px rgba(0,0,0,.8)}
.hero-visual,.hero-image-wrap,.image-label{display:none!important}
.scroll-cue{
  position:absolute;bottom:28px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,.65);font-size:8px;letter-spacing:.25em;z-index:4;
  display:flex;align-items:center;gap:12px;text-shadow:0 2px 10px rgba(0,0,0,.9)
}
.scroll-cue span{width:1px;height:34px;background:var(--gold)}

/* ---------- MARQUEE ---------- */

.marquee-section{
  background:var(--gold);
  color:var(--black);
  overflow:hidden;
}
.marquee{white-space:nowrap;padding:17px 0}
.marquee-track{
  display:inline-flex;
  gap:25px;
  align-items:center;
  animation:marquee 30s linear infinite;
  text-transform:uppercase;
  font-size:10px;
  font-weight:800;
  letter-spacing:.16em;
}
.marquee-track b{font-size:15px}
@keyframes marquee{to{transform:translateX(-50%)}}

/* ---------- SECTIONS ---------- */
.section{padding:125px 0}
.section-intro h2,.section-heading h2{
  font:700 clamp(38px,5vw,64px)/1.04 Manrope,sans-serif;
  letter-spacing:-.055em;
  margin:0;
}
.section-intro h2 em,.section-heading h2 span{font-style:normal;color:var(--gold)}
.about-section{background:var(--ivory);color:var(--black)}
.about-grid{
  display:grid;
  grid-template-columns:100px 1.2fr .8fr;
  gap:55px;
  margin-top:70px;
  align-items:start;
}
.about-number{font:800 20px Manrope;color:var(--gold);padding-top:8px}
.big-text{font:600 26px/1.45 Manrope;margin:0 0 25px}
.about-text p:not(.big-text){color:#666;line-height:1.85}
.text-link{display:inline-flex;gap:12px;align-items:center;color:#a96500;font-weight:800;margin-top:20px;font-size:13px}
.orbit-card{
  width:280px;height:280px;border-radius:50%;
  border:1px solid rgba(213,138,11,.45);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;position:relative;
}
.orbit-card i{font-size:52px;color:var(--gold);margin-bottom:15px}
.orbit-card strong{font-size:13px;letter-spacing:.2em}
.orbit-card span{font-size:11px;color:#777;max-width:150px;margin-top:7px;line-height:1.5}
.orbit-line{position:absolute;inset:-13px;border-radius:50%;border:1px dashed rgba(213,138,11,.35);animation:spin 20s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- SERVICES ---------- */
.services-section{background:var(--black);color:var(--ivory)}
.section-heading{display:flex;justify-content:space-between;gap:50px;align-items:end;margin-bottom:65px}
.section-heading>p{max-width:350px;color:#777;line-height:1.8;font-size:13px}
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:rgba(255,255,255,.12)}
.service-card{
  min-height:365px;
  padding:36px;
  background:#0a0a0a;
  border:1px solid rgba(255,255,255,.05);
  position:relative;
  overflow:hidden;
  transition:.4s;
}
.service-card:before{
  content:"";
  position:absolute;
  width:190px;height:190px;
  border-radius:50%;
  border:1px solid rgba(213,138,11,.14);
  right:-75px;bottom:-75px;
  transition:.5s;
}
.service-card:hover{background:#101010;transform:translateY(-5px);border-color:rgba(213,138,11,.4)}
.service-card:hover:before{transform:scale(1.45);border-color:rgba(213,138,11,.35)}
.service-main{background:linear-gradient(145deg,#151515,#090909)}
.service-number{position:absolute;right:30px;top:28px;color:var(--gold);font-size:10px;font-weight:800}
.service-icon{
  width:56px;height:56px;
  border:1px solid rgba(213,138,11,.5);
  display:grid;place-items:center;
  color:var(--gold);font-size:24px;
  margin-bottom:70px;
}
.service-card h3{font:700 26px/1.2 Manrope;margin:0 0 15px;max-width:470px}
/* =========================================================
   SERVICE CARD — LINHA DOURADA ANIMADA NO CANTO
   ========================================================= */

.service-card {
    position: relative;
    min-height: 390px;
    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    border: 1px solid rgba(255,255,255,.09);

    overflow: hidden;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}


/* CANTO SUPERIOR ESQUERDO */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 75px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #D9950B,
            #E8AA2A
        );

    box-shadow:
        0 0 12px rgba(213,149,11,.65);

    animation:
        cornerLine 4s ease-in-out infinite;

    z-index: 5;
}


/* PEQUENO TRECHO VERTICAL */

.service-card::after {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 2px;
    height: 75px;

    background:
        linear-gradient(
            180deg,
            #E8AA2A,
            #D9950B,
            transparent
        );

    box-shadow:
        0 0 12px rgba(213,149,11,.65);

    animation:
        cornerLineVertical 4s ease-in-out infinite;

    z-index: 5;
}


/* ANIMAÇÃO HORIZONTAL */

@keyframes cornerLine {

    0% {
        transform: translateX(-80px);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }

    75% {
        transform: translateX(15px);
        opacity: .8;
    }

    100% {
        transform: translateX(80px);
        opacity: 0;
    }
}


/* ANIMAÇÃO VERTICAL */

@keyframes cornerLineVertical {

    0% {
        transform: translateY(-80px);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        transform: translateY(15px);
        opacity: .8;
    }

    100% {
        transform: translateY(80px);
        opacity: 0;
    }
}


/* HOVER DO CARD */

.service-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(213,149,11,.30);

    box-shadow:
        0 25px 65px rgba(0,0,0,.35);
}
.service-card p{color:#777;font-size:13px;line-height:1.8;max-width:520px}
.service-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:25px}
.service-tags span{
  font-size:8px;letter-spacing:.16em;
  border:1px solid rgba(213,138,11,.28);
  padding:7px 9px;color:#9a9a9a;
}
.service-arrow{position:absolute;right:30px;bottom:30px;color:var(--gold)}

/* ---------- PROCESS ---------- */
.process-section{background:#111;color:var(--ivory);padding:125px 0}
.process-sticky{display:grid;grid-template-columns:.8fr 1.2fr;gap:100px}
.process-title h2{font:700 clamp(40px,5vw,62px)/1.03 Manrope;letter-spacing:-.055em;margin:0 0 25px}
.process-title h2 span{color:var(--gold)}
.process-title p{color:#777;line-height:1.8;max-width:430px;margin-bottom:30px}
.process-list{border-left:1px solid rgba(213,138,11,.28)}
.process-item{
  display:grid;
  grid-template-columns:50px 65px 1fr;
  gap:22px;
  padding:28px 0 28px 28px;
  border-bottom:1px solid rgba(255,255,255,.08);
  align-items:start;
  transition:.35s;
}
.process-item>span{font-size:10px;color:var(--gold);font-weight:800;padding-top:5px}
.process-item>div{
  width:50px;height:50px;border-radius:50%;
  background:#090909;border:1px solid rgba(213,138,11,.45);
  display:grid;place-items:center;color:var(--gold);
}
.process-item h3{font:700 20px Manrope;margin:0 0 8px}
.process-item p{color:#777;font-size:13px;line-height:1.7;margin:0}
.process-item:hover{padding-left:40px;background:rgba(213,138,11,.035)}

/* ---------- STATEMENT ---------- */
.statement-section{background:var(--gold);color:var(--black);padding:150px 0}
.statement>span{font-size:10px;letter-spacing:.25em;font-weight:800}
.statement h2{font:800 clamp(52px,8vw,105px)/.94 Manrope;letter-spacing:-.07em;margin:25px 0}
.statement h2 em{font-style:normal;color:#fff}
.statement-line{height:1px;background:rgba(0,0,0,.45);max-width:500px}

/* ---------- BENEFITS ---------- */
.benefits-section{background:var(--ivory)}
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(0,0,0,.15);
  margin-top:55px;
}
.benefit{padding:35px 25px;border-right:1px solid rgba(0,0,0,.12);min-height:270px}
.benefit:last-child{border-right:0}
.benefit>span{font-size:10px;color:var(--gold-dark);font-weight:800}
.benefit i{display:block;font-size:28px;color:var(--gold-dark);margin:35px 0 25px}
.benefit h3{font:700 20px Manrope;margin:0 0 10px}
.benefit p{font-size:13px;line-height:1.7;color:#707070;margin:0}

/* ---------- FAQ ---------- */
.faq-section{background:#0a0a0a;color:var(--ivory)}
.faq-section .section-heading h2{color:#fff}
.faq-list{max-width:900px;margin:55px auto 0}
.faq{border-bottom:1px solid rgba(255,255,255,.12);padding:22px 0}
.faq summary{
  cursor:pointer;list-style:none;
  font:700 19px Manrope;
  display:flex;justify-content:space-between;gap:30px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary:after{content:"+";font-size:25px;font-weight:300;color:var(--gold)}
.faq[open] summary:after{content:"−"}
.faq p{color:#777;line-height:1.8;font-size:14px;max-width:780px;margin:18px 0 5px}

/* ---------- CONTACT ---------- */
.contact-section{
  background:
    radial-gradient(circle at 80% 50%,rgba(213,138,11,.1),transparent 28%),
    #070707;
  color:#fff;
  padding:120px 0;
}
.contact-grid{display:grid;grid-template-columns:1fr .8fr;gap:100px;align-items:center}
.contact-copy h2{font:700 clamp(42px,5vw,67px)/1 Manrope;letter-spacing:-.055em;margin:0 0 25px}
.contact-copy h2 span{color:var(--gold)}
.contact-copy>p{max-width:600px;color:#777;line-height:1.8}
.contact-links{margin-top:45px;display:grid;gap:16px}
.contact-links a{display:flex;align-items:center;gap:16px}
.contact-links a>i{
  width:45px;height:45px;border:1px solid rgba(213,138,11,.35);
  display:grid;place-items:center;color:var(--gold)
}
.contact-links small,.contact-links strong{display:block}
.contact-links small{color:#666;font-size:9px;letter-spacing:.15em;text-transform:uppercase;margin-bottom:4px}
.contact-links strong{font-size:13px}
.contact-card{background:var(--ivory);color:var(--black);padding:42px;box-shadow:var(--shadow);position:relative}
.contact-card:before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;width:4px;background:var(--gold)
}
.contact-card-top{display:flex;justify-content:space-between;color:var(--gold-dark);font-size:10px;letter-spacing:.15em;font-weight:800}
.contact-card h3{font:800 34px Manrope;margin:65px 0 12px}
.contact-card p{color:#666;line-height:1.7}
.contact-big-button{
  display:flex;align-items:center;justify-content:space-between;
  background:var(--black);color:#fff;
  padding:18px 20px;margin-top:30px;font-weight:800;
}
.contact-big-button i{color:var(--gold)}
.contact-card-footer{border-top:1px solid rgba(0,0,0,.12);margin-top:25px;padding-top:20px;color:#777;font-size:11px;line-height:1.6}
.contact-card-footer i{color:var(--gold-dark);margin-right:7px}

/* ---------- FOOTER ---------- */
.footer{background:#030303;color:#fff;padding:75px 0 0;border-top:1px solid rgba(213,138,11,.2)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:50px}
.footer-brand{margin-bottom:18px}
.footer p{color:#555;font-size:13px;line-height:1.7;max-width:310px}
.footer h3{font-size:10px;letter-spacing:.16em;text-transform:uppercase;margin:0 0 22px;color:var(--gold)}
.footer-grid>div:not(:first-child) a,.footer-grid>div:not(:first-child) span{display:block;color:#666;font-size:11px;margin:0 0 12px;line-height:1.6}
.footer-grid a:hover{color:var(--gold)!important}
.footer-bottom{
  margin-top:65px;
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  display:flex;justify-content:space-between;gap:20px;
  color:#444;font-size:9px;letter-spacing:.04em;
}

/* ---------- FLOATING WHATSAPP ---------- */
.floating-whatsapp{
  position:fixed;right:24px;bottom:24px;
  background:var(--gold);color:var(--black);
  padding:13px 17px;border-radius:2px;
  z-index:999;display:flex;align-items:center;gap:9px;
  font-size:11px;font-weight:800;
  box-shadow:0 15px 35px rgba(0,0,0,.35);
  transition:.3s;
}
.floating-whatsapp i{font-size:18px}
.floating-whatsapp:hover{transform:translateY(-4px);background:var(--gold-light)}

/* ---------- SCROLL REVEAL ---------- */
.reveal{opacity:0;transform:translateY(35px);transition:opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1)}
.reveal-right{transform:translateX(45px)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal.is-visible{opacity:1;transform:none}

/* ---------- RESPONSIVE ---------- */
@media(max-width:991px){
  .main-nav{
    display:none;position:absolute;top:75px;left:20px;right:20px;
    background:#070707;padding:20px;flex-direction:column;align-items:stretch;
    border:1px solid rgba(213,138,11,.25);
    box-shadow:0 20px 50px rgba(0,0,0,.45)
  }
  .main-nav.open{display:flex}
  .main-nav .nav-cta{text-align:center}
  .mobile-toggle{display:block}
  .hero-grid,.process-sticky,.contact-grid{grid-template-columns:1fr}
  .hero{padding-top:130px}
  .about-grid{grid-template-columns:70px 1fr}
  .about-side{grid-column:2;justify-content:flex-start}
  .services-grid{grid-template-columns:1fr}
  .benefits-grid{grid-template-columns:repeat(2,1fr)}
  .benefit:nth-child(2){border-right:0}
  .contact-grid{gap:55px}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .container{width:min(100% - 28px,1180px)}
  .brand-logo{width:95px;height:42px}
  .footer-logo{width:135px;height:60px}
  .hero{padding-bottom:70px}
  .hero h1{font-size:43px}
  .hero-copy>p{font-size:15px}
	.hero-copy {
    position: relative;
    max-width: 820px;

    padding: 42px 48px;

background:
    linear-gradient(
        135deg,
        rgba(42, 37, 30, 0.42),
        rgba(18, 18, 18, 0.25)
    );

    border-left: 2px solid rgba(218, 148, 16, 0.9);

    backdrop-filter: blur(1px);
-webkit-backdrop-filter: blur(1px);

    box-shadow:
        0 25px 70px rgba(0,0,0,.28);

    border-radius: 0 2px 2px 0;
}
  .hero-mini-stats{gap:18px}
  .hero-mini-stats strong{font-size:8px}
  .section{padding:85px 0}
  .section-heading{display:block;margin-bottom:40px}
  .section-heading>p{margin-top:25px}
  .about-grid{grid-template-columns:1fr;gap:25px;margin-top:45px}
  .about-side{grid-column:auto}
  .about-number{display:none}
  .service-card{min-height:340px;padding:28px}
  .service-icon{margin-bottom:55px}
  .process-sticky{gap:50px}
  .process-item{grid-template-columns:35px 50px 1fr;gap:12px;padding-left:15px}
  .process-item>div{width:45px;height:45px}
  .statement-section{padding:100px 0}
  .statement h2{font-size:52px}
  .benefits-grid{grid-template-columns:1fr}
  .benefit{border-right:0;border-bottom:1px solid rgba(0,0,0,.12);min-height:220px}
  .contact-section{padding:85px 0}
  .contact-grid{gap:45px}
  .contact-card{padding:28px}
  .contact-card h3{margin-top:50px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:35px 25px}
  .footer-grid>div:first-child{grid-column:1/-1}
  .footer-bottom{display:block;line-height:1.8}
  .footer-bottom span:last-child{display:block;margin-top:5px}
  .floating-whatsapp{right:15px;bottom:15px;width:52px;height:52px;justify-content:center;padding:0}
  .floating-whatsapp span{display:none}

  .hero{
    min-height:100svh;
    height:auto;
    padding:145px 0 85px;
    background-position:62% center;
  }
  .hero h1{font-size:43px}
  .hero-copy>p{font-size:15px}
  .hero-mini-stats{gap:18px}
  .hero-mini-stats strong{font-size:8px}
  .hero-mini-stats span{font-size:9px}
  .scroll-cue{display:none}
}

.service-visual {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.service-visual > i {
    position: relative;
    z-index: 5;
    display: block;

    font-family: "bootstrap-icons" !important;
    font-size: 52px;
    font-style: normal;

    color: var(--gold) !important;

    line-height: 1;
    opacity: 1 !important;

    filter: drop-shadow(
        0 8px 20px rgba(213,138,11,.35)
    );
}
/* =========================================================
   BENEFÍCIOS — SEÇÃO CLARA
   ========================================================= */

.benefits-section {
    position: relative;
    background: #f1f2f4;
    color: #171717;
    overflow: hidden;
}

/* Linha dourada no topo */
.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: #D9950B;
}


/* EYEBROW */

.benefits-section .eyebrow.dark {
    color: #D9950B !important;
}


/* TÍTULO PRINCIPAL */

.benefits-section .section-heading {
    margin-bottom: 70px;
}

.benefits-section .section-heading h2 {
    color: #171717 !important;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 850px;
    margin: 18px 0 0;
}

.benefits-section .section-heading h2 span {
    color: #D9950B !important;
}


/* =========================================================
   GRID
   ========================================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(20,20,20,.18);
}


/* =========================================================
   CARD / BENEFIT
   ========================================================= */

.benefit {
    position: relative;

    min-height: 290px;

    padding: 38px 28px 35px;

    border-right: 1px solid rgba(20,20,20,.15);

    background: transparent;

    transition:
        background .35s ease,
        transform .35s ease;
}

.benefit:last-child {
    border-right: none;
}


/* Número */

.benefit > span {
    display: block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .12em;

    color: #D9950B;

    margin-bottom: 38px;
}


/* ÍCONE */

.benefit > i {
    display: block;

    font-size: 30px;

    color: #D9950B !important;

    margin-bottom: 48px;

    transition:
        transform .35s ease,
        color .35s ease;
}


/* TÍTULO */

.benefit h3 {
    display: block;

    color: #171717 !important;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.2;

    margin: 0 0 14px;

    opacity: 1 !important;
}


/* TEXTO */

.benefit p {
    display: block;

    color: #5c6268 !important;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.65;

    max-width: 270px;

    margin: 0;

    opacity: 1 !important;
}


/* =========================================================
   HOVER
   ========================================================= */

.benefit:hover {
    background: rgba(217,149,11,.055);
}

.benefit:hover > i {
    transform: translateY(-5px);
    color: #b97900 !important;
}


/* =========================================================
   LINHA DOURADA NO HOVER
   ========================================================= */

.benefit::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #D9950B;

    transition: width .5s ease;
}

.benefit:hover::before {
    width: 65px;
}


/* =========================================================
   FAQ — TAMBÉM DEIXANDO A LEITURA CORRETA
   ========================================================= */

.faq-section {
    background: #f1f2f4;
    color: #171717;
}

.faq-section .section-heading h2 {
    color: #171717 !important;
}

.faq-section .section-heading h2 span {
    color: #D9950B !important;
}

.faq-section .eyebrow.dark {
    color: #D9950B !important;
}

.faq summary {
    color: #171717 !important;
}

.faq p {
    color: #5c6268 !important;
}


/* =========================================================
   RESPONSIVO — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit:nth-child(2) {
        border-right: none;
    }

    .benefit:nth-child(-n+2) {
        border-bottom: 1px solid rgba(20,20,20,.15);
    }

    .benefits-section .section-heading h2 {
        font-size: clamp(40px, 6vw, 60px);
    }

}


/* =========================================================
   RESPONSIVO — CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .benefits-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .benefits-section .section-heading {
        margin-bottom: 45px;
    }

    .benefits-section .section-heading h2 {
        font-size: 39px;
        line-height: 1.05;
        letter-spacing: -0.035em;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        border-top: 1px solid rgba(20,20,20,.18);
    }

    .benefit,
    .benefit:nth-child(2) {
        min-height: auto;

        padding: 32px 20px 38px;

        border-right: none;
        border-bottom: 1px solid rgba(20,20,20,.15);
    }

    .benefit:last-child {
        border-bottom: none;
    }

    .benefit > span {
        margin-bottom: 25px;
    }

    .benefit > i {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .benefit h3 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .benefit p {
        font-size: 16px;
        line-height: 1.6;
        max-width: none;
    }

}
/* =========================================================
   HEADER FIXO NO MOBILE
   ========================================================= */

@media (max-width: 768px) {
    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;

        background: rgba(5, 5, 5, 0.94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-bottom: 1px solid rgba(218, 145, 0, 0.25);
    }

    body {
        padding-top: 70px;
    }
}
/* =========================================================
   HEADER MOBILE - SEM ESCONDER AO ROLAR
   ========================================================= */

@media (max-width: 768px) {

    header,
    .site-header,
    .main-header,
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;

        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;

        z-index: 99999 !important;

        background: rgba(5, 5, 5, 0.96) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-bottom: 1px solid rgba(218, 145, 0, 0.25);
    }

    body {
        padding-top: 70px !important;
    }
}
/* =========================================================
   WE SHIPPING — HEADER MOBILE DEFINITIVO
   NÃO ESCONDER AO ROLAR
   ========================================================= */

@media (max-width: 991px) {

    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        height: auto !important;

        z-index: 99999 !important;

        display: block !important;

        transform: none !important;
        translate: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        background: rgba(7, 7, 7, 0.96) !important;

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        border-bottom: 1px solid rgba(213, 138, 11, 0.28);

        padding: 12px 0 !important;
    }

    .site-header.scrolled {
        position: fixed !important;

        top: 0 !important;

        transform: none !important;
        translate: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        padding: 12px 0 !important;

        background: rgba(7, 7, 7, 0.97) !important;
    }

    .site-header .header-inner {
        position: relative !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        min-height: 46px;
    }

    .site-header .brand {
        display: flex !important;
        align-items: center !important;
    }

    .site-header .brand-logo {
        width: 95px !important;
        height: 42px !important;
        object-fit: contain !important;
    }

    .site-header .mobile-toggle {
        display: block !important;

        position: relative !important;

        width: 46px;
        height: 46px;

        padding: 0;
        margin: 0;

        border: 0;
        outline: none;

        background: transparent !important;

        color: var(--gold-light) !important;

        font-size: 28px;

        z-index: 100001;
    }

    .site-header .main-nav {
        position: absolute !important;

        top: calc(100% + 12px) !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        display: none !important;

        flex-direction: column !important;
        align-items: stretch !important;

        gap: 0 !important;

        padding: 12px !important;

        background: rgba(7, 7, 7, 0.98) !important;

        border: 1px solid rgba(213, 138, 11, 0.30);

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        z-index: 100000;
    }

    .site-header .main-nav.open {
        display: flex !important;
    }

    .site-header .main-nav a {
        display: block !important;

        width: 100%;

        padding: 15px 14px;

        color: rgba(255,255,255,.85);

        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .site-header .main-nav a:last-child {
        border-bottom: 0;
    }

    .site-header .main-nav a:hover {
        color: var(--gold-light);
        background: rgba(213,138,11,.07);
    }

    .site-header .main-nav .nav-cta {
        margin-top: 10px;

        text-align: center;

        background: var(--gold) !important;
        color: var(--black) !important;

        border-bottom: 0;
    }

    body {
        padding-top: 70px !important;
    }
}

/* =========================================================
   WHATSAPP FLUTUANTE — WE SHIPPING
   ========================================================= */

.whatsapp-plug-icon {
    position: fixed;
    z-index: 10000;

    bottom: 50px;
    right: 50px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    cursor: pointer;

    background-color: #25D366;

    transition: .3s;

    background-position: center;
    background-repeat: no-repeat;

  background-image: url("https://cdn.simpleicons.org/whatsapp/ffffff");

    background-size: 55% auto;

    filter: none;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .25);
}


/* HOVER */

.whatsapp-plug-icon:hover {
    background-color: #20bd5a;

    transform: scale(1.08);
}


/* ONDAS */

.whatsapp-plug-icon::after,
.whatsapp-plug-icon::before {

    content: '';

    position: absolute;

    opacity: 0;

    border: 4px solid #25D366;

    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;

    border-radius: 50%;

    animation:
        WaveWhatsApp 1.5s ease infinite;

    pointer-events: none;
}


/* SEGUNDA ONDA */

.whatsapp-plug-icon::after {
    animation-delay: .5s;
}


/* HOVER — ONDAS */

.whatsapp-plug-icon:hover::after {
    border-color: #25D366;
}

.whatsapp-plug-icon:hover::before {
    border-color: #25D366;
}


/* ANIMAÇÃO */

@keyframes WaveWhatsApp {

    0% {
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .whatsapp-plug-icon {
        width: 56px;
        height: 56px;

        right: 18px;
        bottom: 20px;

        background-size: 55% auto;
    }
}
/* =========================================================
   MARQUEE / FAIXA DE SERVIÇOS
   ========================================================= */

.marquee-section {
    width: 100%;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;

    animation: marqueeInfinite 28s linear infinite;
}


/* =========================================================
   CADA BLOCO
   ========================================================= */

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


/* =========================================================
   TEXTOS
   ========================================================= */

.marquee-track span {
    display: inline-block;
    white-space: nowrap;
}


/* =========================================================
   SEPARADORES
   ========================================================= */

.marquee-track b {
    display: inline-block;
    flex-shrink: 0;
}


/* =========================================================
   ANIMAÇÃO INFINITA
   ========================================================= */

@keyframes marqueeInfinite {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* =========================================================
   PAUSAR AO PASSAR O MOUSE
   ========================================================= */

.marquee:hover .marquee-track {
    animation-play-state: paused;
}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .marquee-track {
        animation: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .marquee-track {
        animation-duration: 22s;
    }

}

.footer-bottom a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}
/* =========================================
   HERO — CARROSSEL DE IMAGENS
========================================= */

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #050505;
}

/* Cada imagem ocupa todo o Hero */

.hero-slide {
  position: absolute;
  inset: 0;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  opacity: 0;

  animation: heroFade 15s infinite;
}

/* NAVIO */

.hero-slide-1 {
  background-image: url("../img/agenciador-de-cargas.png");
  animation-delay: 0s;
}

/* AVIÃO / AEROPORTO */

.hero-slide-2 {
  background-image: url("../img/agenciador-de-cargas-area.png");
  animation-delay: 5s;
}

/* TREM */

.hero-slide-3 {
  background-image: url("../img/agenciador-de-cargas-trem.png");
  animation-delay: 10s;
}


/* =========================================
   FADE DO CARROSSEL
   15 segundos = 5 segundos por imagem
========================================= */

@keyframes heroFade {

  0% {
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  36% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }

}