:root {
  --bg-main: #0D0D0D;
  --gold: #C5A059;
  --text-main: #F2F2F2;
  --gray-border: #262626;
  --font-main: 'Inter', sans-serif;
  --font-highlight: 'Sedgwick Ave Display', cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

.highlight-font {
  font-family: var(--font-highlight);
  color: var(--gold);
  font-weight: normal;
  letter-spacing: 2px;
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--gold);
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: #000;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

header.scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  border-bottom: 1px solid var(--gray-border);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 2px;
}

.logo span {
  color: var(--gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gold);
}

/* Sections */
section {
  padding: 100px 5%;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

.section-title span {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Home */
#home {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-main) 70%);
  position: relative;
  padding-top: 80px;
}

.home-content h1 {
  font-size: 5vw;
  margin-bottom: 20px;
}

.home-content p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #a0a0a0;
}

.home-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #111;
  border: 1px solid var(--gray-border);
  padding: 40px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1);
  border-color: var(--gold);
}

.service-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: #a0a0a0;
  font-size: 15px;
}

/* Diferenciais */
#diferenciais {
  background-color: #0a0a0a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item i {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 15px;
  background: #111;
  border: 1px solid var(--gray-border);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: #888;
}

/* Tabela */
.table-container {
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
}

th, td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-border);
}

th {
  background-color: #1a1a1a;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

tr:hover {
  background-color: rgba(38, 38, 38, 0.3);
}

tr:last-child td {
  border-bottom: none;
}

td:first-child {
  font-weight: 600;
  color: var(--text-main);
}

td {
  color: #ccc;
}

/* Planos e Valores */
#planos {
  background-color: var(--bg-main);
}

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

.pricing-card {
  background-color: #111;
  border: 1px solid var(--gray-border);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.price-monthly {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 5px;
}

.price-monthly span {
  font-size: 16px;
  color: #888;
  font-weight: 400;
}

.price-annual {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 15px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
}

.pricing-features i {
  color: var(--gold);
  margin-top: 4px;
}

.pricing-card .btn {
  width: 100%;
}

/* Portfólio */
#portfolio {
  background-color: #0a0a0a;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gray-border);
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-overlay h4 {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 5px;
}

.portfolio-overlay p {
  color: #ccc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Depoimentos */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #111;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--gray-border);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-text {
  font-style: italic;
  color: #ccc;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

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

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gray-border);
}

.author-info h5 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12px;
  color: #888;
}

/* Contato */
#contato {
  background-color: #0a0a0a;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info p {
  color: #a0a0a0;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 16px;
}

.info-item i {
  color: var(--gold);
  font-size: 20px;
  width: 30px;
  text-align: center;
}

.contact-form {
  background: #111;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: #1a1a1a;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  color: var(--text-main);
  font-family: var(--font-main);
  outline: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--gray-border);
  background-color: #000;
  font-size: 14px;
  color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .home-content h1 {
    font-size: 40px;
  }
  
  .home-buttons {
    flex-direction: column;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.98);
    padding: 20px;
    border-bottom: 1px solid var(--gray-border);
    display: none;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .section-title {
    font-size: 28px;
  }
}
