/* Estilos Globais */
:root {
  --primary-color: #ffd700;
  --secondary-color: #000000;
  --text-color: #333333;
  --light-color: #ffffff;
  --gray-color: #f4f4f4;
  --dark-gray: #666666;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

.section-title p {
  color: var(--dark-gray);
  font-size: 18px;
}

/* Header */
header {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

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

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
}

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

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--light-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--light-color);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Sobre Section */
.sobre {
  padding: 100px 0;
  background-color: var(--light-color);
}

.sobre-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sobre-img {
  flex: 1;
}

.sobre-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sobre-text {
  flex: 1;
}

.sobre-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.sobre-text p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.sobre-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

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

.feature-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
}

/* Serviços Section */
.servicos {
  padding: 100px 0;
  background-color: var(--gray-color);
}

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

.servico-card {
  background: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.servico-card:hover {
  transform: translateY(-10px);
}

.servico-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  margin-bottom: 0;
}

.servico-icon i {
  font-size: 80px;
  transition: transform 0.3s ease;
}

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

.servico-content {
  padding: 25px;
}

.servico-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.servico-content p {
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: left;
}

.servico-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Estatísticas nos serviços */
.servico-stats {
  background-color: var(--gray-color);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-item i {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 15px;
  width: 25px;
  text-align: center;
}

.stat-item p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}

/* Pacotes Section */
.pacotes {
  padding: 100px 0;
  background-color: var(--light-color);
}

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

.pacote-card {
  background: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid var(--gray-color);
}

.pacote-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pacote-card:hover {
  transform: translateY(-10px);
}

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

.pacote-header {
  background: var(--secondary-color);
  color: var(--light-color);
  padding: 20px;
  text-align: center;
}

.pacote-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.pacote-price {
  font-size: 36px;
  font-weight: 700;
}

.pacote-price span {
  font-size: 16px;
  font-weight: 400;
}

.pacote-features {
  padding: 30px;
}

.pacote-features ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.pacote-features ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.pacote-footer {
  padding: 0 30px 30px;
  text-align: center;
}

/* Depoimentos Section */
.depoimentos {
  padding: 100px 0;
  background-color: var(--gray-color);
}

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

.depoimento-card {
  background: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.depoimento-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.depoimento-author {
  display: flex;
  align-items: center;
}

.depoimento-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  color: var(--dark-gray);
  font-size: 14px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--light-color);
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contato Section */
.contato {
  padding: 100px 0;
  background-color: var(--light-color);
}

.contato-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contato-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contato-details {
  margin-bottom: 30px;
}

.contato-details div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contato-details i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
}

.contato-socials {
  display: flex;
  gap: 15px;
}

.contato-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--light-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contato-socials a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

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

.contato-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
}

.contato-form textarea {
  height: 150px;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Whatsapp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
  .sobre-content {
    flex-direction: column;
  }
  
  .contato-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    background: var(--secondary-color);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .sobre-features {
    grid-template-columns: 1fr;
  }
  
  .pacote-card.featured {
    transform: none;
  }
  
  .pacote-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .logo h1 {
    font-size: 20px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title p {
    font-size: 16px;
  }
}
