/* Espanha TekBar - Estilos Personalizados */

:root {
  --primary-color: #e50914;
  --secondary-color: #25d366;
  --dark-bg: #0e0e0e;
  --darker-bg: #000;
  --light-text: #fff;
  --card-bg: #1a1a1a;
  --accent-color: #ffbe0b;
  --gray-light: #f8f9fa;
  --gray-dark: #343a40;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--light-text);
  background-color: var(--dark-bg);
}

/* Navbar */
.navbar {
  background-color: rgba(0, 0, 0, 0.9) !important;
  box-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
  padding: 0.5rem 1rem;
}

.navbar-brand img {
  height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--light-text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/foto_01.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  z-index: 1;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.7));
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #c50812;
  border-color: #c50812;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

/* Sobre Nós */
.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

/* Serviços */
.service-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(229, 9, 20, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Catálogo de Serviços */
.package-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.package-featured {
  border: 2px solid var(--primary-color);
}

.package-ribbon {
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--primary-color);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.package-header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: center;
  position: relative;
}

.package-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.package-icon {
  margin-bottom: 10px;
}

.package-icon i {
  font-size: 2rem;
  color: white;
}

.package-body {
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  height: calc(100% - 90px);
}

.package-features {
  flex-grow: 1;
  margin-bottom: 15px;
}

.package-features p {
  margin-bottom: 10px;
}

.package-features ul {
  list-style: none;
  padding-left: 5px;
  margin-bottom: 15px;
}

.package-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.package-features li i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 0.9rem;
  margin-top: 4px;
}

.package-highlight {
  background-color: rgba(255, 0, 0, 0.1);
  border-left: 3px solid var(--primary-color);
  padding: 8px 12px;
  margin-top: 10px;
  font-weight: 500;
  border-radius: 0 4px 4px 0;
}

.package-highlight i {
  margin-right: 5px;
  color: var(--primary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
  color: white;
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.catalog-logo {
  max-width: 150px;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.catalog-tagline {
  font-style: italic;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px dotted var(--primary-color);
  padding-bottom: 2px;
}

/* Galeria */
.gallery-container {
  margin-bottom: 3rem;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.gallery-icon {
  color: var(--light-text);
  font-size: 2rem;
}

/* Contato */
.contact-info {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

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

.contact-text a:hover {
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--darker-bg);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.social-icons {
  margin-bottom: 1.5rem;
}

.social-icons a {
  color: var(--light-text);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--light-text);
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  color: #aaa;
  font-size: 0.9rem;
}

/* WhatsApp Button */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease;
  z-index: 999;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  color: var(--light-text);
}

/* Animações */
.animate-fade-up {
  animation: fadeUp 1s ease-out;
}

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

/* Responsividade */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-radius: 0 0 15px 15px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-logo {
    max-width: 150px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-primary {
    padding: 0.5rem 1rem;
  }
}