:root {
  --red: #E7CB77;
  --red-dark: #C9AD5F;
  --black: #080808;
  --black-2: #101010;
  --black-3: #171717;
  --white: #ffffff;
  --gray: #a5a5a5;
  --gray-light: #d2d2d2;
  --border: rgba(255, 255, 255, 0.1);
  --max-width: 1200px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button {
  font-family: inherit;
}

.container {
  width: min(92%, var(--max-width));
  margin: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(15px);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1px;
}


.logo img {
  width: auto;
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.final-logo img {
  width: auto;
  height: 150px;
  max-width: 100%;
  object-fit: contain;
}

.footer-logo img {
  width: auto;
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 3px solid var(--red);
  color: var(--red);
  transform: skew(-10deg);
  font-size: 28px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-button,
.footer-button {
  background: var(--red);
  padding: 13px 22px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: var(--transition);
}

.header-button:hover,
.footer-button:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px;
  background: var(--white);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?auto=format&fit=crop&w=2000&q=90") center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 70px;
}

.hero-label,
.section-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label {
  margin-bottom: 20px;
}

.hero-label span,
.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(75px, 10vw, 145px);
  line-height: 0.8;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 30px;
}

.hero h1 strong {
  color: var(--red);
  display: block;
}

.hero p {
  max-width: 620px;
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-bottom {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-info {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray-light);
  font-size: 11px;
  font-weight: 600;
}

.hero-info strong {
  color: var(--red);
}

section {
  padding: 110px 0;
}

.section-header {
  margin-bottom: 55px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-title,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 15px;
}

h2 span {
  color: var(--red);
}

.section-header p {
  color: var(--gray);
  margin-top: 20px;
  line-height: 1.7;
}

.about {
  background: var(--black-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  height: 600px;
  object-fit: cover;
  filter: grayscale(15%);
  position: relative;
  z-index: 1;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--red);
  z-index: 0;
}

.experience-box {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
  background: var(--red);
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
}

.experience-box strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
}

.experience-box span {
  font-size: 11px;
  font-weight: 600;
}

.about-content > p {
  color: var(--gray);
  line-height: 1.9;
  margin-top: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}

.feature {
  display: flex;
  gap: 12px;
}

.feature-icon {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.feature strong {
  font-size: 13px;
}

.feature p {
  color: var(--gray);
  font-size: 11px;
  line-height: 1.6;
  margin-top: 5px;
}

.numbers {
  padding: 55px 0;
  background: var(--red);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.number-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 20px;
}

.number-item:last-child {
  border-right: 0;
}

.number-item strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  line-height: 1;
}

.number-item span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.modalities {
  background: var(--black);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.modality-card {
  height: 470px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.modality-card img {
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.modality-card:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.15));
}

.card-content {
  position: absolute;
  left: 25px;
  right: 20px;
  bottom: 25px;
}

.card-content > span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.card-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  margin: 3px 0 8px;
}

.card-content p {
  color: #cfcfcf;
  font-size: 11px;
  line-height: 1.6;
}

.cta {
  padding: 75px 0;
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.cta-background {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1800&q=70") center / cover;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta .section-label {
  color: var(--white);
}

.cta .section-label::before {
  background: var(--white);
}

.cta h2 {
  margin-top: 10px;
}

.cta h2 span {
  color: var(--black);
}

.cta p {
  margin-top: 15px;
  font-size: 14px;
}

.cta .btn-red {
  background: var(--black);
}

.cta .btn-red:hover {
  background: var(--white);
  color: var(--black);
}

.structure {
  background: var(--black-2);
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.gallery-large {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 55%);
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.gallery-caption strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

.gallery-caption span {
  color: var(--gray-light);
  font-size: 10px;
}

.schedule {
  background: var(--black);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.schedule-grid > div:first-child > p {
  color: var(--gray);
  line-height: 1.8;
  margin-top: 25px;
  max-width: 500px;
}

.opening-status {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  font-size: 10px;
  color: var(--gray-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #23c552;
  border-radius: 50%;
}

.schedule-table {
  border-top: 1px solid var(--border);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.schedule-row strong {
  font-weight: 700;
}

.schedule-row span {
  color: var(--red);
  font-weight: 700;
}

.testimonials {
  background: var(--black-2);
}

.testimonial-slider {
  max-width: 850px;
  margin: auto;
  min-height: 230px;
  position: relative;
}

.testimonial {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.testimonial.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stars {
  color: var(--red);
  letter-spacing: 5px;
  font-size: 20px;
  margin-bottom: 25px;
}

.testimonial p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(25px, 3vw, 37px);
  line-height: 1.15;
}

.testimonial strong {
  display: block;
  margin-top: 25px;
  color: var(--gray);
  font-size: 11px;
  text-transform: uppercase;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 25px;
  border-radius: 10px;
  background: var(--red);
}

.blog {
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(231, 203, 119, 0.5);
}

.blog-image {
  height: 230px;
  overflow: hidden;
}

.blog-image img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-content > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
  margin: 10px 0;
}

.blog-content p {
  color: var(--gray);
  font-size: 11px;
  line-height: 1.7;
}

.blog-content a {
  display: inline-block;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 20px;
}

.contact {
  background: var(--black-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: stretch;
}

.contact-content > p {
  color: var(--gray);
  line-height: 1.8;
  margin-top: 20px;
}

.contact-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--red);
  font-weight: 800;
}

.contact-list small {
  display: block;
  color: var(--gray);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-list strong {
  font-size: 12px;
}

.map-container {
  min-height: 450px;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  filter: grayscale(100%) invert(90%);
}

.final-cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.88)), url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?auto=format&fit=crop&w=1800&q=85") center / cover fixed;
}

.final-cta-content {
  max-width: 850px;
  margin: auto;
}

.final-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.final-cta h2 {
  font-size: clamp(55px, 8vw, 100px);
}

.final-cta p {
  color: var(--gray-light);
  margin: 20px 0 30px;
}

footer {
  background: #050505;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-grid > div:first-child p {
  color: var(--gray);
  font-size: 12px;
  margin-top: 15px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--gray);
  font-size: 11px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--red);
}

.footer-column p {
  color: var(--gray);
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 5px;
}

.footer-button {
  width: fit-content;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #666;
  font-size: 9px;
}

.whatsapp-button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.whatsapp-button span {
  font-size: 22px;
  font-weight: 900;
  color: white;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 50px;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 16px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {
  header {
    padding: 15px 0;
  }

  .header-button {
    display: none;
  }

  .menu-toggle {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
  }

  .hero {
    min-height: 800px;
  }

  .hero-info {
    display: none;
  }

  .about-grid,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 500px;
  }

  .schedule-grid,
  .contact-grid {
    gap: 50px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 250px 250px;
  }

  .gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .number-item:nth-child(2) {
    border-right: 0;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  section {
    padding: 75px 0;
  }

  .logo {
    font-size: 30px;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .hero {
    min-height: 750px;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68));
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(65px, 18vw, 100px);
  }

  .hero p {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 400px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .modality-card {
    height: 400px;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .number-item {
    border-right: 0;
  }

  .number-item strong {
    font-size: 40px;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 260px);
  }

  .gallery-item.gallery-large {
    grid-column: auto;
  }

  .schedule-row {
    gap: 15px;
  }

  .schedule-row span {
    white-space: nowrap;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 35px;
  }

  .map-container,
  .map-container iframe {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-button {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

.hidden-animation {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hidden-animation.show {
  opacity: 1;
  transform: translateY(0);
}
