:root{
  --petroleum:#0f5b61;
  --petroleum-dark:#09444a;
  --petroleum-soft:#e8f2f1;
  --gold:#f0c51e;
  --gold-dark:#c79f0b;
  --white:#ffffff;
  --ink:#163134;
  --muted:#5d7376;
  --shadow:0 24px 60px rgba(9,68,74,.18);
  --radius:28px;
  --max:1180px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}

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

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

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.section{
  padding:96px 0;
}

.skip-link{
  position:absolute;
  top:-50px;
  left:16px;
  background:var(--gold);
  color:var(--petroleum-dark);
  padding:10px 14px;
  border-radius:12px;
  z-index:1000;
}

.skip-link:focus{
  top:16px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(15,91,97,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.12);
}

.navbar{
  width:min(var(--max), calc(100% - 40px));
  height:84px;
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img{
  width:auto;
  height:54px;
  max-width:148px;
  object-fit:contain;
  border-radius:12px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:var(--white);
  font-weight:700;
}

.nav-links a{
  opacity:.92;
  transition:.25s ease;
}

.nav-links a:hover{
  color:var(--gold);
  opacity:1;
}

.nav-cta{
  background:var(--gold);
  color:var(--petroleum-dark)!important;
  padding:12px 18px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(240,197,30,.22);
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:14px;
  background:transparent;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:5px auto;
  background:var(--white);
}

.hero{
  background:
    radial-gradient(circle at 85% 20%, rgba(240,197,30,.18), transparent 32%),
    linear-gradient(135deg, var(--petroleum) 0%, var(--petroleum-dark) 100%);
  color:var(--white);
  min-height:calc(100vh - 84px);
  display:flex;
  align-items:center;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:64px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  margin-bottom:14px;
}

.eyebrow::before{
  content:"";
  width:34px;
  height:3px;
  border-radius:999px;
  background:currentColor;
}

.eyebrow.dark{
  color:var(--petroleum);
}

h1,h2,h3,p{
  margin-top:0;
}

h1{
  font-size:clamp(2.45rem, 5.5vw, 5.4rem);
  line-height:.96;
  letter-spacing:-.06em;
  margin-bottom:22px;
}

h2{
  font-size:clamp(2rem, 4vw, 3.65rem);
  line-height:1.03;
  letter-spacing:-.045em;
  margin-bottom:22px;
}

h3{
  font-size:1.25rem;
  line-height:1.2;
}

.brand-phrase{
  display:inline-block;
  color:var(--petroleum-dark);
  background:var(--gold);
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:22px;
}

.hero-text{
  font-size:1.18rem;
  color:rgba(255,255,255,.88);
  max-width:680px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:15px 22px;
  border-radius:999px;
  font-weight:900;
  transition:.25s ease;
  border:2px solid transparent;
  text-align:center;
}

.btn-primary{
  background:var(--gold);
  color:var(--petroleum-dark);
  box-shadow:0 16px 34px rgba(240,197,30,.25);
}

.btn-primary:hover{
  transform:translateY(-3px);
  background:#ffd633;
}

.btn-secondary{
  border-color:rgba(255,255,255,.42);
  color:var(--white);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.12);
  transform:translateY(-3px);
}

.hero-card{
  position:relative;
  transform:translateY(-64px);
}

.logo-panel{
  width:min(32%, 190px);
  margin-inline:auto;
  margin-bottom:22px;
  background:rgba(15,91,97,.94);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:10px;
  box-shadow:0 18px 42px rgba(9,68,74,.16);
  transform:rotate(-1.2deg);
  position:relative;
  z-index:2;
}

.logo-panel img{
  width:100%;
  max-height:150px;
  object-fit:contain;
  border-radius:14px;
}

.hero-image{
  height:390px;
  margin-top:0;
  border-radius:var(--radius);
  background:
    linear-gradient(rgba(15,91,97,.08), rgba(15,91,97,.28)),
    url("assets/images/abertura.webp") center/cover;
  box-shadow:var(--shadow);
}

.about{
  background:var(--white);
}

.two-columns{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:start;
}

.about-text{
  font-size:1.14rem;
  color:var(--muted);
}

.highlight-text{
  color:var(--petroleum);
  font-size:1.8rem;
  font-weight:950;
  letter-spacing:-.03em;
  margin-top:20px;
}

.products{
  background:var(--petroleum);
  color:var(--white);
}

.section-heading{
  max-width:760px;
  margin-bottom:42px;
}

.section-heading p{
  color:rgba(255,255,255,.78);
  font-size:1.1rem;
}

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

.product-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  overflow:hidden;
  min-height:100%;
  transition:.25s ease;
}

.product-card:hover{
  transform:translateY(-7px);
  background:rgba(255,255,255,.12);
}

.product-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  object-position:center 24%;
}



.product-card:nth-child(3) img{
  object-position:center 18%;
}

.product-card:nth-child(5) img{
  object-position:center 20%;
}

.product-card div{
  padding:24px;
}

.product-card h3{
  color:var(--gold);
  margin-bottom:10px;
}

.product-card p{
  color:rgba(255,255,255,.82);
  margin-bottom:0;
}

.service{
  background:var(--petroleum-soft);
}

.service-card{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:44px;
  align-items:center;
  background:var(--white);
  border-radius:var(--radius);
  padding:42px;
  box-shadow:var(--shadow);
}

.service-card p{
  color:var(--muted);
}

.dark-btn{
  margin-top:16px;
}

.service-image{
  width:100%;
  min-height:430px;
  height:100%;
  border-radius:24px;
  object-fit:cover;
  object-position:center 18%;
  box-shadow:0 16px 34px rgba(9,68,74,.12);
}

.saturday{
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 28%),
    var(--gold);
}

.saturday-card{
  text-align:center;
  color:var(--petroleum-dark);
  max-width:850px;
}

.badge{
  display:inline-flex;
  background:var(--petroleum);
  color:var(--white);
  padding:8px 16px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:18px;
}

.saturday-card p{
  font-size:1.12rem;
}

.saturday-card h3{
  font-size:1.8rem;
}

.btn-secondary.solid{
  background:var(--petroleum);
  color:var(--white);
  border-color:var(--petroleum);
}

.btn-secondary.solid:hover{
  background:var(--petroleum-dark);
}

.location{
  background:var(--petroleum);
  color:var(--white);
}

.location-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}

.location p{
  color:rgba(255,255,255,.84);
}

.address{
  font-size:1.25rem;
  font-weight:900;
  color:var(--gold)!important;
}

.map-card{
  min-height:420px;
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
  background:var(--white);
  color:var(--petroleum-dark);
  box-shadow:var(--shadow);
}

.google-map{
  width:100%;
  min-height:420px;
  height:100%;
  display:block;
  border:0;
}

.map-fallback{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:36px;
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    repeating-linear-gradient(45deg, #d7e5e4 0 10px, #eef5f4 10px 20px);
}

.map-card.map-loaded .google-map{
  display:block;
}

.map-card.map-loaded .map-fallback{
  display:none;
}

.map-pin{
  width:88px;
  height:88px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--gold);
  font-size:2.6rem;
  margin-bottom:18px;
}

.map-card small{
  color:var(--muted);
}

.instagram{
  background:var(--white);
}

.instagram-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  padding:40px;
  border-radius:var(--radius);
  background:var(--petroleum-soft);
  border:1px solid rgba(15,91,97,.12);
}

.instagram-card p{
  max-width:720px;
  color:var(--muted);
}

.footer{
  background:var(--petroleum-dark);
  color:var(--white);
  padding:54px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:32px;
  align-items:start;
}

.footer-logo{
  width:190px;
  border-radius:20px;
  margin-bottom:18px;
}

.footer h3{
  color:var(--gold);
}

.footer p,
.footer a{
  color:rgba(255,255,255,.82);
}

.footer a:hover{
  color:var(--gold);
}

.floating-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:40;
  background:#25d366;
  color:#073f22;
  font-weight:950;
  padding:15px 20px;
  border-radius:999px;
  box-shadow:0 16px 32px rgba(0,0,0,.22);
  transition:.25s ease;
}

.floating-whatsapp:hover{
  transform:translateY(-4px);
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}



/* Ícones nos botões e informações de contato */
.icon{
  width:1.25em;
  height:1.25em;
  display:inline-block;
  flex:0 0 auto;
  fill:currentColor;
}

.btn,
.nav-cta,
.floating-whatsapp,
.contact-line{
  display:inline-flex;
  align-items:center;
  gap:9px;
}

.contact-line{
  display:flex;
  margin:10px 0;
}

.contact-line .icon{
  color:var(--gold);
  width:22px;
  height:22px;
  margin-top:2px;
}

.nav-cta .icon,
.btn .icon{
  width:20px;
  height:20px;
}

.floating-whatsapp{
  width:64px;
  height:64px;
  padding:0;
  border-radius:50%;
  align-items:center;
  justify-content:center;
}

.floating-whatsapp .icon{
  width:31px;
  height:31px;
}

.floating-whatsapp span{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

@media (max-width:980px){
  .section{
    padding:72px 0;
  }

  .hero-grid,
  .two-columns,
  .service-card,
  .location-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
  }

  .logo-panel{
    width:min(30%, 170px);
    margin-bottom:18px;
  }

  .hero-card{
    transform:translateY(-44px);
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .instagram-card{
    flex-direction:column;
    align-items:flex-start;
  }

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

@media (max-width:760px){
  .navbar{
    height:74px;
  }

  .brand img{
    width:auto;
    height:46px;
    max-width:128px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    left:20px;
    right:20px;
    top:84px;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:var(--white);
    color:var(--petroleum-dark);
    border-radius:22px;
    padding:14px;
    box-shadow:var(--shadow);
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
  }

  .nav-links.open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

  .nav-links a{
    padding:13px 14px;
    border-radius:14px;
  }

  .nav-links a:hover{
    background:var(--petroleum-soft);
  }

  .nav-cta{
    text-align:center;
    margin-top:8px;
  }

  h1{
    font-size:2.75rem;
  }

  h2{
    font-size:2.2rem;
  }

  .hero-actions,
  .btn{
    width:100%;
  }

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

  .service-card,
  .instagram-card{
    padding:28px;
  }

  .logo-panel{
    width:min(36%, 150px);
    margin-bottom:16px;
  }

  .hero-card{
    transform:translateY(-28px);
  }

  .hero-image{
    height:330px;
    margin-top:0;
  }

  .service-image{
    min-height:300px;
  }

  .map-card,
  .google-map{
    min-height:340px;
  }

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

  .floating-whatsapp{
    left:auto;
    right:18px;
    width:60px;
    height:60px;
    text-align:center;
  }
}

@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }

  .btn,
  .product-card,
  .floating-whatsapp{
    transition:none;
  }
}
