* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold-primary: #d4af37;
  --gold-secondary: #ffd700;
  --gold-light: #f5e6a4;
  --gold-dark: #b8941f;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2d2d2d;
  --light-gray: #444444;
  --lighter-gray: #e8e8e8;
  --white: #ffffff;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --border-radius: 8px;
  --section-spacing: 100px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--white);
  background-color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(212, 175, 55, 0.02) 0%,
      transparent 20%
    );
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-spacing) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-header.left-align {
  text-align: left;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-primary),
    transparent
  );
}

.left-align .section-title::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

.section-divider {
  height: 2px;
  width: 100px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-primary),
    transparent
  );
  margin: 20px auto;
}

.section-divider.left {
  margin: 20px 0;
}

.gold-text {
  color: var(--gold-primary);
  position: relative;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05));
  transform: skewX(-15deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-headline {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--lighter-gray);
  opacity: 0.9;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lighter-gray);
}

.feature-item i {
  font-size: 1.1rem;
}

.whatsapp-btn-container {
  margin-top: 40px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 18px 35px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.hero-form {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease;
  box-shadow: var(--shadow);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-header {
  margin-bottom: 30px;
  margin-top: 10px;
  text-align: center;
}

.form-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--white);
}

.form-header p {
  color: var(--light-gray);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

label {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--lighter-gray);
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--light-gray);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-primary);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Sobre nós */
.sobre-section {
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.sobre-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-primary) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.sobre-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-primary) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.sobre-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.sobre-desc {
  margin-bottom: 20px;
  color: var(--lighter-gray);
  opacity: 0.9;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
}

.stat-label {
  color: var(--light-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sobre-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: none;
  position: relative;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
}

.image-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--white);
}

.image-overlay p {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.image-credit {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(26, 26, 26, 0.8);
  padding: 8px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gold-primary);
}

.sobre-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-primary);
  font-size: 1.8rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold-primary);
  color: var(--black);
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--white);
}

.feature-card p {
  color: var(--light-gray);
  font-size: 0.95rem;
}

/* Galeria */
.galeria-section {
  background-color: var(--black);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.galeria-item {
  background: var(--dark-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.galeria-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.galeria-image {
  height: 250px;
  background: linear-gradient(45deg, var(--medium-gray), var(--dark-gray));
  position: relative;
  overflow: hidden;
}

.galeria-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 30px;
}

.galeria-item:hover .image-overlay {
  opacity: 1;
}

.galeria-image h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.galeria-image p {
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 20px;
}

.galeria-btn {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.galeria-btn:hover {
  background: var(--gold-primary);
  color: var(--black);
}

.galeria-info {
  padding: 25px;
}

.galeria-info h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--white);
}

.galeria-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(212, 175, 55, 0.1);
  color: var();
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}
