/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.font-playfair {
  font-family: "Playfair Display", serif;
}

.text-italic {
  font-style: italic;
  color: #666;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
}
.logo img {
  width: 72px; /* ajuste como quiser */
  height: auto;
  display: block;
}

.logo sup {
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #000;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: block;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #000;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid #f0f0f0;
}

.mobile-nav {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #000;
}

.mobile-cta {
  margin-top: 16px;
  width: 100%;
}

/* Buttons */
.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.btn-primary:hover {
  background: #333;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.btn-secondary:hover {
  border-color: #000;
  color: #000;
  transform: scale(1.05);
}

.btn-large {
  padding: 16px 48px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 128px 24px;
  background: linear-gradient(to bottom, rgba(249, 250, 251, 0.5), #fff);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.blob-1 {
  width: 288px;
  height: 288px;
  background: #f3f4f6;
  top: 80px;
  left: 40px;
  animation: blob 7s infinite;
}

.blob-2 {
  width: 288px;
  height: 288px;
  background: #e5e7eb;
  top: 160px;
  right: 40px;
  animation: blob 7s infinite;
  animation-delay: 2s;
}

.blob-3 {
  width: 288px;
  height: 288px;
  background: #f9fafb;
  bottom: -32px;
  left: 80px;
  animation: blob 7s infinite;
  animation-delay: 4s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 144px);
  font-weight: 300;
  color: #000;
  line-height: 0.85;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero-word {
  display: inline-block;
  opacity: 0;
}

.hero-word-italic {
  font-style: italic;
  color: #666;
}

.hero-description {
  font-size: 20px;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  opacity: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.floating-1 {
  width: 16px;
  height: 16px;
  background: #9ca3af;
  top: 25%;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  width: 24px;
  height: 24px;
  background: #d1d5db;
  top: 33%;
  right: 0;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-3 {
  width: 12px;
  height: 12px;
  background: #6b7280;
  bottom: 25%;
  left: 25%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-4 {
  width: 20px;
  height: 20px;
  background: #e5e7eb;
  bottom: 33%;
  right: 25%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #666;
  opacity: 0;
}

.scroll-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #9ca3af;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 4px;
  height: 12px;
  background: #9ca3af;
  border-radius: 2px;
  margin-top: 8px;
  animation: bounce 2s infinite;
}

/* Gallery */
.gallery {
  padding: 80px 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  group: hover;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #fff;
  font-weight: 500;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Services */
.services-intro {
  text-align: center;
  padding: 96px 24px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  color: #000;
  line-height: 1.2;
  margin-bottom: 32px;
}

.section-description {
  font-size: 20px;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.services-detailed {
  padding: 96px 24px;
  background: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 48px 32px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #000, #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 24px;
}

.service-description {
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

/* About */
.about {
  padding: 96px 24px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 80px;
}

.about-image {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  text-align: left;
}

.about-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  color: #000;
  margin-bottom: 32px;
}

.about-paragraph {
  color: #666;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Testimonials */
.testimonials {
  padding: 96px 24px;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 24px;
}

.testimonial-text {
  color: #666;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: #e5e7eb;
  border-radius: 50%;
}

.author-name {
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: #666;
}

/* Contact */
.contact {
  padding: 96px 24px;
  text-align: center; /* Centraliza títulos e descrição */
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 800px;
  margin: 64px auto;
  flex-wrap: wrap; /* deixa quebrar no mobile */
}

.contact-item {
  flex: 1;
  min-width: 200px; /* garante largura mínima */
  text-align: center;
}

/* Mobile: empilha */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    max-width: 100%;
  }
}


.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #000, #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  color: #fff;
}

.contact-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
}

.contact-text {
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

.btn-container {
  display: flex;
  justify-content: center; /* botão sempre centralizado */
  margin-top: 32px;
}

.contact-cta {
  display: inline-flex; /* mantém animação + centralização */
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
}


/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 64px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-logo sup {
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.footer-description {
  color: #9ca3af;
  font-weight: 300;
  line-height: 1.6;
}

.footer-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 64px;
  padding-top: 32px;
  text-align: center;
  color: #9ca3af;
  font-weight: 300;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

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

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text {
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
