/* =========================================
   S ROLIM — Landing Page
   ========================================= */

:root {
  --color-primary: #16456d;
  --color-primary-dark: #0f2f4a;
  --color-accent: #1d5f8a;
  --color-text: #1c1f26;
  --color-text-light: #7A7786;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f5f7;
  --color-border: #e3e5ea;
  --color-whatsapp: #25d366;

  --font-heading: 'Instrument Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1180px;
  --radius-pill: 999px;
  --radius-md: 12px;
  --transition: 0.25s ease;
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--color-accent);
}

.typed-cursor {
  color: var(--color-accent);
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  .typed-cursor {
    animation: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 41, 77, 0.25);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ---------- Section title ---------- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 300;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 12px;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--color-text-light);
  font-size: 0.98rem;
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

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

.logo__img {
  height: 38px;
  width: auto;
}

.nav {
  flex: 1;
}

.nav__list {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.nav__head,
.nav__cta,
.nav-overlay {
  display: none;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background-color var(--transition);
}

.hamburger:hover {
  background-color: var(--color-bg-alt);
}

.hamburger__box {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.hamburger__box span {
  position: absolute;
  left: 0;
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-soft), opacity 0.25s ease, width 0.35s var(--ease-soft);
}

.hamburger__box span:nth-child(1) { top: 0; }
.hamburger__box span:nth-child(2) { top: 7px; }
.hamburger__box span:nth-child(3) { top: 14px; }

.hamburger.is-active .hamburger__box span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger__box span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.is-active .hamburger__box span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.hamburger.is-active .hamburger__box span {
  background-color: var(--color-accent);
}



.diferenciais {

    list-style-type: square;
    margin: 20px 40px;
    text-align: left;
}

.whatsapp-color{
  background-color:#25D366;
  text-transform: uppercase;
}
.whatsapp-color:hover{
  background-color:##11be52 !important
}

.diferenciais li {}

/* =========================================
   HERO
   ========================================= */
.hero {
  background-color: #fff;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -3px;
}

.hero__text {
  color: var(--color-text-light);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions a { }

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

.hero__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 700px;
}

.hero__img--overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero__img--overlay.is-visible {
  opacity: 1;
}

/* =========================================
   BRANDS
   ========================================= */
.brands {
  padding: 80px 0;
  background-color: #fff;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 70px;
  align-items: center;
  justify-items: center;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  padding: 8px 14px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
}

.brand:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.06);
}

.brands__list {
  max-width: 860px;
  margin: 0 auto 40px;
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.brands__cta {
  text-align: center;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how {
  background-color: var(--color-bg-alt);
  padding: 80px 0;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

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

.how__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--color-primary);
  transition: transform var(--transition), box-shadow var(--transition);
}


.how__icon img {
  width: 36px;
  height: 36px;
}

.how__text {
  font-size: 0.95rem;
  color: #7A7786;
  font-weight: 500;
  max-width: 220px;
  text-align: left;
}

/* =========================================
   ABOUT / POR QUE VENDER
   ========================================= */
.about {
  padding: 90px 0;
  background-color: #fff;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.3rem);
  font-weight: 300;
  margin-bottom: 24px;
}

.about__text {
  color: var(--color-text-light);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.about__signature-img {
  height: 56px;
  width: auto;
  margin: 20px 0 28px;
}

.about__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about__actions a { width: 220px; }

.about__gallery {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about__img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--ease-soft);
}

/* =========================================
   LOCATIONS
   ========================================= */
.locations {
  padding: 80px 0;
  background-color: var(--color-bg-alt);
}

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

.location__logo-img {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
}

.location__address {
  font-style: normal;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.location__phones-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.location__phones {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.location__phones a {
  color: var(--color-text-light);
  transition: color var(--transition);
}

.location__phones a:hover {
  color: var(--color-accent);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  text-align: center;
}

.footer p {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* =========================================
   WHATSAPP FLOAT BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform var(--transition);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* =========================================
   ANIMATIONS
   Scroll/entrance animations use Animate.css classes toggled by
   js/script.js (IntersectionObserver). This just hides .reveal elements
   until that class is added.
   ========================================= */
.reveal {
  opacity: 0;
}

.reveal.animate__animated {
  opacity: 1;
}

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

.hero__img {
  animation: float 5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1 !important;
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .brands__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 28px;
  }

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

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

  .location--phones {
    grid-column: 1 / -1;
  }
  .hero {
  background-color: #fff;
  padding: 20px 0;
}

}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(380px, 86vw);
    background-color: #fff;
    box-shadow: -16px 0 48px rgba(13, 20, 32, 0.14);
    padding: 24px 28px 32px;
    flex: none;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-soft);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__logo {
    height: 30px;
    width: auto;
  }

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

  .nav__close:hover {
    background-color: var(--color-bg-alt);
  }

  .nav__close svg {
    width: 20px;
    height: 20px;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow-y: auto;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 16px 6px 16px 0px;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition), background-color var(--transition), padding-left var(--transition);
  }

  .nav__link::after {
    display: none;
  }

  .nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 18px;
    border-radius: 2px;
    background-color: var(--color-accent);
    transition: transform var(--transition);
  }

  .nav__link:hover,
  .nav__link:active {
    color: var(--color-accent);
    background-color: var(--color-bg-alt);
    padding-left: 22px;
  }

  .nav__link:hover::before,
  .nav__link:active::before {
    transform: translateY(-50%) scaleY(1);
  }

  .nav__cta {
    display: flex;
    width: 100%;
    margin-top: 20px;
    flex-shrink: 0;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(13, 20, 32, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .hero__actions a {
    width: auto;
    flex: 1;
  }

  .hero__media {
    max-width: 300px;
    margin: 0 auto;
  }

  .about__container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about__content {
    text-align: center;
  }

  .about__signature-img {
    margin-left: auto;
    margin-right: auto;
  }

  .about__actions {
    justify-content: center;
    flex-wrap: nowrap;
  }
}

@media (max-width: 700px) {
  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }

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

  .how__step {
    padding: 12px;
  }

  .how__icon {
    justify-content: center;
  }

  .how__text {
    max-width: none;
    text-align: center;
  }

  .locations {
    text-align: center;
  }

  .locations .section-title--left {
    text-align: center;
  }

  .locations__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .location__logo-img {
    margin-left: auto;
    margin-right: auto;
  }

  .location__phones-title {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

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

  .about__actions {
    justify-content: center;
    gap: 10px;
  }

  .about__actions a {
    width: auto;
    flex: 1;
  }

  .about__actions .btn {
    padding: 13px 12px;
    font-size: 0.82rem;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__actions .btn {
    padding: 13px 12px;
    font-size: 0.82rem;
  }

  .btn {
    text-align: center;
  }

  .logo__img {
    height: 32px;
  }
}
