* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-dark: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--black);
  padding: 1.5rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo-img {
  height: 150%;
  width: auto;
  object-fit: contain;
  display: block;
  filter: contrast(1.1);
  transition: transform 0.3s ease;
  aspect-ratio: 2 / 3;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--black);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--black);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 3rem 4rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--black);
  margin-bottom: 2rem;
  transform: rotate(-2deg);
}

.hero-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-button {
  padding: 1.25rem 2.5rem;
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 2px solid var(--black);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  color: var(--black);
}

.cta-button:hover::before {
  left: 0;
}

.cta-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-geometric {
  position: relative;
  height: 500px;
}

.geo-shape {
  position: absolute;
  border: 2px solid var(--black);
  background-color: transparent;
}

.geo-1 {
  width: 200px;
  height: 200px;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite;
}

.geo-2 {
  width: 150px;
  height: 150px;
  bottom: 100px;
  right: 100px;
  transform: rotate(-45deg);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float 8s ease-in-out infinite reverse;
}

.geo-3 {
  width: 100px;
  height: 100px;
  top: 200px;
  right: 200px;
  transform: rotate(15deg);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-20px) rotate(var(--rotation, 0deg));
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--black);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}

/* Section Styles */
section {
  padding: 8rem 3rem;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
  position: relative;
}

.section-number {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--black);
  transform: skewX(-45deg);
}

/* About Section */
.about {
  background-color: var(--gray-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.lead-text {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-locations {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-card {
  padding: 2rem;
  border: 2px solid var(--black);
  background-color: var(--white);
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.location-card:hover {
  transform: rotate(0deg);
}

.location-content {
  flex: 1;
}

.location-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.location-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-card .location-content p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.location-address {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.location-address p {
  font-size: 1rem;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.8;
  font-weight: 400;
  margin: 0;
}

/* Services Section */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.service-card {
  padding: 3rem;
  border: 2px solid var(--black);
  position: relative;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 0 var(--black);
}

.service-number {
  font-size: 4rem;
  font-weight: 700;
  opacity: 0.1;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.service-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black);
}

.service-details h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-details ul {
  list-style: none;
}

.service-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  transform: rotate(-45deg);
}

.service-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-left: 2px solid var(--black);
  border-top: 2px solid var(--black);
  transform: translate(50%, 50%) rotate(45deg);
}

/* Process Section */
.process {
  background-color: var(--black);
  color: var(--white);
}

.process .section-number,
.process .section-title {
  color: var(--white);
}

.process .title-underline {
  background-color: var(--white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  position: relative;
  padding-left: 2rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  line-height: 1;
}

.step-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.step-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -4rem;
  width: 2px;
  background-color: var(--white);
  opacity: 0.3;
}

.process-step:last-child .step-line {
  display: none;
}

/* Contact Section */
.contact {
  background-color: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-cta {
  margin-top: 2rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
  border: 2px solid var(--black);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: left 0.3s ease;
  z-index: -1;
}

.whatsapp-button:hover {
  color: var(--black);
}

.whatsapp-button:hover::before {
  left: 0;
}

.whatsapp-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
  transform: translateX(5px);
}

.contact-geometric {
  position: relative;
  height: 400px;
}

.contact-shape {
  width: 100%;
  height: 100%;
  border: 2px solid var(--black);
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
  transform: rotate(-2deg);
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem;
  border-top: 1px solid var(--white);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
  aspect-ratio: 2 / 3;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.footer-info {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-geometric {
    display: none;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .contact-shape,
  .contact-geometric {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .logo {
    height: 40px;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding-left: 1rem;
  }

  .step-number {
    font-size: 2rem;
  }

  .location-card {
    flex-direction: column;
  }

  .location-address {
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo-img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card,
  .location-card {
    padding: 2rem;
    flex-direction: column;
  }

  .location-address {
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
  }

  .logo {
    height: 35px;
  }

  .footer-logo-img {
    height: 40px;
  }
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--black);
    padding: 2rem;
    gap: 1.5rem;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

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

/* Ripple Effect */
.cta-button,
.whatsapp-button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Active Navigation Link */
.nav-link.active {
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}
