/* Estilos para o site Táuri */

:root {
  --primary-color: #ff6600;
  --secondary-color: #000000;
  --text-color: #333333;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--secondary-color);
  overflow-x: hidden;
}

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

/* Header */
header {
  background-color: var(--secondary-color);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
  height: 50px;
  width: auto;
}

/* Navegação */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 4px;
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--primary-color);
}

/* Carrinho */
.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-icon i {
  font-size: 24px;
  color: var(--white);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 150px 0 80px;
  text-align: left;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: #e55a00;
  transform: translateY(-2px);
}

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

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

/* Seções */
section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

section.dark {
  background-color: var(--secondary-color);
  color: var(--white);
}

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

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Cards */
.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.card-text {
  margin-bottom: 20px;
}

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

/* Origem do Nome */
.origin-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.origin-container {
  max-width: 1000px;
  margin: 0 auto;
}

.origin-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.origin-number {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.origin-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Combos */
.combo-section {
  background-color: var(--light-bg);
}

.combo-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.combo-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  width: 48%;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  font-weight: 700;
}

.combo-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.combo-description {
  margin-bottom: 20px;
}

.combo-composition {
  margin-bottom: 20px;
}

.combo-composition h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.combo-composition ul {
  list-style: none;
  margin-left: 20px;
}

.combo-composition ul li {
  margin-bottom: 5px;
  position: relative;
}

.combo-composition ul li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.combo-discount {
  font-weight: 700;
  margin-bottom: 10px;
}

.combo-production {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

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

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  width: 30%;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

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

.social-icons {
  display: flex;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-icons i {
  color: var(--white);
  font-size: 18px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

/* Responsividade */
@media (max-width: 992px) {
  .combo-card {
    width: 100%;
  }
  
  .footer-column {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .origin-number {
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
  }
  
  .origin-item {
    padding-top: 40px;
  }
  
  .footer-column {
    width: 100%;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--secondary-color);
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Carrinho Modal */
.cart-modal {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  padding: 20px;
  overflow-y: auto;
}

.cart-modal.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.cart-header h3 {
  font-size: 1.5rem;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.cart-items {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 700;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 700;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.quantity-btn {
  background-color: #eee;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.quantity-value {
  margin: 0 10px;
}

.remove-item {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  margin-left: auto;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: right;
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

/* Filtros de veículos */
.vehicle-filters {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}

.filter-btn {
  background-color: var(--light-bg);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Combo selector */
.combo-selector {
  margin-top: 20px;
}

.combo-selector h4 {
  margin-bottom: 10px;
}

.vehicle-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.vehicle-option {
  background-color: var(--light-bg);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.vehicle-option.selected {
  border-color: var(--primary-color);
  background-color: rgba(255, 102, 0, 0.1);
}

.vehicle-option img {
  width: 100px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 5px;
}

.vehicle-option-title {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Notificações */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Página de produção */
.production-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.production-table th,
.production-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.production-table th {
  background-color: var(--light-bg);
  font-weight: 700;
}

.production-table tr:hover {
  background-color: #f9f9f9;
}

.status-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pending {
  background-color: #ffeeba;
  color: #856404;
}

.status-production {
  background-color: #b8daff;
  color: #004085;
}

.status-completed {
  background-color: #c3e6cb;
  color: #155724;
}

.production-filters {
  display: flex;
  margin-bottom: 20px;
}

.production-filters select {
  padding: 8px 15px;
  margin-right: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-box {
  display: flex;
  margin-left: auto;
}

.search-box input {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.search-box button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

/* Galeria de imagens */
.vehicle-gallery {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-container {
  display: flex;
  transition: transform 0.3s ease;
}

.gallery-item {
  min-width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
}

.gallery-dot.active {
  background-color: var(--white);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}
