﻿@charset "utf-8";
:root {
  --green-900: #6c0f12;
  --green-500: #e23c3c;
  --green-300: #f27a6b;
  --black: #0a0c0f;
  --gray-700: #231c1f;
  --gray-500: #4f4145;
  --gray-200: #f0e6e6;
  --white: #fdf8f8;
  --max-width: 1200px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

section {
  padding: 3.5rem 1.5rem;
}

main {
  margin-top: 118px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 15, 16, 0.9);
  color: var(--white);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.topbar {
  background: #1b2028;
  color: #f5f3f3;
}

.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1.5rem;
}

.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}

.topbar__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.topbar__icon svg {
  width: 100%;
  height: 100%;
}

.topbar__social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.topbar__social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.topbar__social svg {
  width: 20px;
  height: 20px;
}

.topbar__social a:hover,
.topbar__social a:focus-visible {
  background: rgba(226, 60, 60, 0.18);
  border-color: rgba(226, 60, 60, 0.55);
  transform: translateY(-1px);
  outline: none;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.navbar__logo img {
  width: 40px;
  height: auto;
}

.navbar__menu {
  display: flex;
  gap: 1rem;
}

.navbar__menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}

.navbar__menu a.is-active,
.navbar__menu a:hover,
.navbar__menu a:focus-visible {
  background: var(--green-500);
  color: var(--black);
  outline: none;
}

.navbar__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.navbar__toggle span,
.navbar__toggle span::before,
.navbar__toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
  transition: transform var(--transition);
}

.navbar__toggle span::before,
.navbar__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.navbar__toggle span::before {
  top: -6px;
}

.navbar__toggle span::after {
  top: 6px;
}

.navbar__toggle.is-active span {
  transform: rotate(45deg);
}

.navbar__toggle.is-active span::before {
  transform: rotate(-90deg);
  top: 0;
}

.navbar__toggle.is-active span::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 85vh;
  padding: 7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.hero__carousel,
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__carousel {
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: saturate(1.05) brightness(0.98);
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  z-index: 1;
  background: linear-gradient(118deg, rgba(26, 8, 10, 0.58), rgba(10, 6, 8, 0.24));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: flex-start;
}

.hero__copy {
  max-width: 560px;
  padding: 2.5rem;
  border-radius: 30px;
  background: rgba(20, 8, 10, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.hero__brand img {
  width: 48px;
  height: auto;
}

.hero__brand p {
  margin: 0;
  font-weight: 600;
  color: var(--white);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero__badges {
  display: flex;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}

.hero__highlights li {
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  background: rgba(226, 60, 60, 0.12);
  color: rgba(255, 244, 244, 0.95);
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section--band {
  background: linear-gradient(180deg, #f7eaea 0%, #fff8f8 100%);
}

.section--soft {
  background: #fff9f8;
}

.section--panel {
  background: linear-gradient(180deg, rgba(13, 15, 16, 0.03) 0%, rgba(13, 15, 16, 0.01) 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--green-500);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.btn--primary {
  background: var(--green-500);
  color: #fffaf9;
}

.btn--ghost {
  border-color: var(--green-500);
  color: var(--green-500);
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: transparent;
}

.hero .btn--ghost:hover,
.hero .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.btn:focus-visible,
.btn:hover {
  transform: translateY(-2px);
}

.data {
  background: #f0f5f1;
}

.data__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  justify-content: center;
}

.data-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(13, 47, 51, 0.08);
}

.data-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(226, 60, 60, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.data-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.data-card__icon--contain img {
  object-fit: contain;
  padding: 0.35rem;
}

.data-card__metric {
  font-size: 2rem;
  color: var(--green-900);
  margin: 0.5rem 0;
}

.services {
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.services__grid--balanced {
  max-width: 1080px;
}

.services__grid--balanced .service-card {
  height: 100%;
}

@media (min-width: 992px) {
  .services__grid--balanced {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  margin: 0 0 0.75rem;
  display: block;
}

.service-card div {
  padding: 1.25rem;
  width: 100%;
}

.service-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  padding: 1.5rem;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: min(520px, 100%);
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(20px) scale(0.98);
  transition: transform 240ms ease, opacity 240ms ease;
  opacity: 0;
}

.service-modal.is-open .service-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.service-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray-700);
  transition: transform var(--transition), color var(--transition);
}

.service-modal__close:hover {
  transform: scale(1.05);
  color: var(--green-500);
}

.service-modal__content h3 {
  margin: 0.2rem 0 0.35rem;
}

.service-modal__content p {
  margin: 0.1rem 0;
}

body.modal-open {
  overflow: hidden;
}

.services__bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.services__bullets li {
  background: rgba(226, 60, 60, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.clients {
  background: linear-gradient(135deg, #0c0f14 0%, #121722 100%);
  color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(226, 60, 60, 0.08), transparent 40%), radial-gradient(circle at 80% 0%, rgba(130, 196, 144, 0.07), transparent 35%);
  pointer-events: none;
}

.clients .section-heading h2,
.clients .section-heading p,
.clients .eyebrow {
  color: #f5f5f5;
}

.clients-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
}

.clients-carousel__viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-carousel__track {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  will-change: transform;
}

.clients-carousel__slide {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  height: 220px;
  width: 240px;
  flex: 0 0 auto;
  display: grid;
}

.clients-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients-carousel__slide img[src*="clientes (3).jpeg"] {
  object-fit: cover;
  transform: none;
  object-position: center;
}

.clients-carousel__slide img[src*="clientes (4).jpeg"] {
  object-position: center 0%;
  transform: translateY(-18%);
}

.clients-carousel__slide img[src*="clientes (6).jpeg"] {
  object-fit: contain;
  transform: scale(0.75);
  object-position: center;
}

.clients-carousel__btn {
  border: none;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--green-900);
  transition: transform var(--transition), box-shadow var(--transition);
}

.clients-carousel__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about__values {
  list-style: none;
  padding: 0;
}

.about__values li {
  margin-bottom: 0.5rem;
}

.about__media img {
  border-radius: 20px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
  gap: 1rem;
}

.timeline__step {
  text-align: center;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(13, 15, 16, 0.05);
}

.timeline__step span {
  font-weight: 700;
  color: var(--green-500);
}

.about__media-stack {
  display: grid;
  gap: 1.25rem;
  align-self: center;
}

.clients__grid,
.testimonials__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.clients__grid {
  max-width: 980px;
  margin-bottom: 1.5rem;
}

.testimonials__grid article {
  padding: 1.5rem;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  color: #0f1216;
}

.stars span {
  color: var(--green-500);
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid rgba(13, 47, 51, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  background: white;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-items: center;
}

.contact__form {
  display: grid;
  gap: 1rem;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--gray-700);
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  margin-top: 0.35rem;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 47, 51, 0.25);
  font: inherit;
  background: white;
}

.contact__form input:focus-visible,
.contact__form select:focus-visible,
.contact__form textarea:focus-visible {
  outline: 2px solid var(--green-500);
  border-color: transparent;
}

.site-footer {
  background: #1f222a;
  color: #f5f5f5;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
  justify-items: center;
}

.site-footer h4 {
  margin: 0 0 0.6rem;
  color: #fff;
}

.site-footer p {
  margin: 0.2rem 0;
  color: #e3e3e3;
}

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

.site-footer li {
  margin: 0.2rem 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__branding {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact__info {
  text-align: center;
}

.site-footer__branding--top img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 10px 25px rgba(13, 47, 51, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fab::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background-image: url('assets/WhatsApp.svg.webp');
  background-size: contain;
  background-repeat: no-repeat;
}

.to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  background: var(--black);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-6px);
}

@media (max-width: 960px) {
  .navbar__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar__menu {
    position: absolute;
    inset: 100% 1rem auto;
    flex-direction: column;
    background: var(--black);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateY(-10px);
  }

  .navbar__menu.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .hero {
    padding: 6rem 1.25rem;
    min-height: auto;
  }

  .hero__copy {
    padding: 2rem;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__highlights {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 1rem;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 5rem 1rem;
  }

  .hero__copy {
    padding: 1.75rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
  }

  .to-top {
    right: 1rem;
    bottom: 4.5rem;
  }
}

.gallery {
  background: rgba(13, 15, 16, 0.04);
  border-radius: 18px;
  padding: 0.75rem 0.75rem 0.5rem;
  margin-top: 0.5rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  background: rgba(13, 15, 16, 0.06);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform var(--transition), filter var(--transition);
}

.gallery__item:hover img,
.gallery__item:focus-within img {
  transform: scale(1.12);
  filter: saturate(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 16, 0.75);
  backdrop-filter: blur(4px);
}

.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: min(960px, 92vw);
  padding: 1.25rem;
  background: rgba(13, 15, 16, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
}

.lightbox__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #0d0f10;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(4px);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

.lightbox__arrow--prev {
  left: 14px;
}

.lightbox__arrow--next {
  right: 14px;
}
