/* ===================================================
   MULTI-MÁQUINAS – Folha de Estilos Principal
   Paleta: Vermelho #c0392b | Amarelo #e8a020 | Escuro #1a1a1a
=================================================== */

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

:root {
  --red:       #c0392b;
  --red-dark:  #a93226;
  --yellow:    #e8a020;
  --dark:      #1a1a1a;
  --dark2:     #2d2d2d;
  --gray:      #555;
  --light:     #f8f8f8;
  --white:     #ffffff;
  --radius:    10px;
  --shadow:    0 6px 30px rgba(0,0,0,.12);
  --trans:     .3s ease;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; transition: color var(--trans); }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn--primary {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn--primary:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }

.btn--whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn--whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn--red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

.btn--white-red { background: var(--white); color: var(--red); border-color: var(--white); }
.btn--white-red:hover { background: var(--light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }

.btn--sm { padding: 9px 20px; font-size: .82rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Section Commons ---- */
.section { padding: 90px 0; }

.section__header { text-align: center; margin-bottom: 60px; }

.section__tag {
  display: inline-block;
  background: rgba(192,57,43,.1);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section__desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ===================================================
   HEADER
=================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--trans);
}

.header.scrolled {
  background: var(--dark);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__logo img {
  height: 52px;
  transition: height var(--trans);
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.header.scrolled .header__logo img { height: 44px; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 8px; }
.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--trans);
}
.nav__link:hover,
.nav__link.active { background: var(--red); color: var(--white); }

.header__cta { margin-left: 12px; padding: 10px 22px; font-size: .85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,.82) 0%, rgba(15,15,15,.55) 60%, rgba(192,57,43,.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 130px 20px 100px;
  max-width: 780px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,.2);
  border: 1px solid rgba(232,160,32,.5);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

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

.hero__subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 38px;
  max-width: 560px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===================================================
   SERVICES
=================================================== */
.services { background: var(--light); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.15); }

.service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.08); }

.service-card__img--icon {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.andaimes-visual {
  width: 180px;
  opacity: .9;
}

.service-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-card__body {
  padding: 24px;
}

.service-card__icon {
  width: 46px; height: 46px;
  background: rgba(192,57,43,.1);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-card__body p {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ===================================================
   CTA BANNER
=================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 70px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner__text p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
}

/* ===================================================
   ABOUT
=================================================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 500px;
}

.about__img-main {
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about__img-sub {
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  position: absolute;
  bottom: 0; right: 0;
  border: 5px solid var(--white);
}

.about__content .section__title { text-align: left; margin-bottom: 10px; }
.about__content .section__tag  { margin-bottom: 10px; }

.about__lead {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}

.about__content p {
  color: var(--gray);
  margin-bottom: 14px;
}

.about__features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
}
.about__features li i { color: var(--red); font-size: 1rem; }

.about__owner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-top: 24px;
}
.about__owner img {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--red);
  flex-shrink: 0;
}
.about__owner div { display: flex; flex-direction: column; gap: 2px; }
.about__owner strong { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.about__owner span   { color: var(--gray); font-size: .82rem; }
.about__owner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #25d366;
  font-weight: 700;
  font-size: .88rem;
  margin-top: 4px;
}
.about__owner a:hover { color: #1ebe5a; }

/* ===================================================
   GALLERY
=================================================== */
.gallery { background: var(--dark); }
.gallery .section__tag  { background: rgba(232,160,32,.15); color: var(--yellow); }
.gallery .section__title { color: var(--white); }
.gallery .section__desc  { color: rgba(255,255,255,.6); }

.gallery-swiper {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  height: 480px;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: var(--white);
  background: rgba(192,57,43,.85);
  width: 44px; height: 44px;
  border-radius: 50%;
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after { font-size: 1rem; }

.gallery-swiper .swiper-pagination-bullet { background: var(--white); opacity: .5; }
.gallery-swiper .swiper-pagination-bullet-active { background: var(--red); opacity: 1; }

/* ===================================================
   CONTACT
=================================================== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: transform var(--trans);
}
.contact__card:hover { transform: translateX(6px); }
.contact__card i {
  font-size: 1.4rem;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact__card strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.contact__card span, .contact__card a { color: var(--gray); font-size: .92rem; }
.contact__card a:hover { color: var(--red); }

.contact__whatsapp-btn { margin-top: 8px; margin-bottom: 20px; }

.contact__qr {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 16px;
}
.contact__qr img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.contact__qr span { color: rgba(255,255,255,.7); font-size: .85rem; }

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 20px;
}
.alert--success { background: rgba(39,174,96,.1); color: #27ae60; border: 1px solid rgba(39,174,96,.3); }
.alert--error   { background: rgba(192,57,43,.1);  color: var(--red); border: 1px solid rgba(192,57,43,.3); }

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 7px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--trans);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,.75);
  padding-top: 70px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer__brand img { margin-bottom: 16px; mix-blend-mode: screen; filter: brightness(1.1); }
.footer__brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: all var(--trans);
}
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }

.footer__links h4,
.footer__services h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .5px;
}

.footer__links ul li,
.footer__services ul li {
  margin-bottom: 10px;
  font-size: .88rem;
}
.footer__links a:hover { color: var(--red); }
.footer__services li { display: flex; align-items: center; gap: 8px; }
.footer__services li i { color: var(--red); font-size: .7rem; }

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 12px;
}
.footer__contact p i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.footer__contact a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ===================================================
   WHATSAPP FLOAT
=================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: all var(--trans);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,.6); }

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--trans);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; transform: translateX(0); }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__inner  { gap: 40px; }
}

@media (max-width: 900px) {
  .about__inner  { grid-template-columns: 1fr; }
  .about__images { height: 340px; }
  .about__img-main { width: 75%; height: 300px; }
  .about__img-sub  { width: 50%; height: 180px; }
  .contact__inner  { grid-template-columns: 1fr; }
}

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

  /* Header mobile */
  .nav, .header__cta {
    display: none;
  }
  .nav.open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    z-index: 999;
    padding: 90px 30px 30px;
  }
  .nav.open .nav__list {
    flex-direction: column;
    gap: 0;
  }
  .nav.open .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
  }

  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__content  { padding: 110px 20px 80px; }
  .hero__stats    { gap: 24px; }
  .hero__actions  { flex-direction: column; align-items: flex-start; }

  .cta-banner__inner { flex-direction: column; text-align: center; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand p { max-width: 100%; }

  .gallery-swiper .swiper-slide { height: 300px; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px 18px; }
  .hero__title { font-size: 2rem; }
  .about__images { height: 260px; }
  .about__img-main { height: 220px; }
  .about__img-sub  { height: 140px; }
}
