:root {
  --color-light: #F5F5F5;
  --color-accent-light: #F8E7F6;
  --color-accent: #DD88CF;
  --color-primary: #4B164C;

  --font-primary: 'Orbitron', sans-serif;
  --font-secondary: 'Exo 2', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(75, 22, 76, 0.1);
  --shadow-md: 0 4px 8px rgba(75, 22, 76, 0.2);
  --shadow-lg: 0 8px 16px rgba(75, 22, 76, 0.3);
  --transition: all 0.3s ease;
  --neon-glow: 0 0 10px rgba(221, 136, 207, 0.6), 0 0 20px rgba(221, 136, 207, 0.4), 0 0 30px rgba(221, 136, 207, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent);
}

p {
  margin-bottom: var(--space-sm);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
.btn {
  background-color: var(--color-primary);
  color: var(--color-light);
  border: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

button:hover,
.btn:hover {
  background-color: var(--color-accent);
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

section {
  padding: var(--space-lg) 0;
}

.header {
  position: relative;
  z-index: 100;
  padding: var(--space-sm) 0;
  background-color: rgba(75, 22, 76, 0.9);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}

@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav-links {
  display: none;
}

.nav-links a {
  color: var(--color-light);
  margin-left: var(--space-md);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-light);
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(75, 22, 76, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: var(--color-light);
  font-size: 1.5rem;
  margin: var(--space-sm) 0;
  position: relative;
  overflow: hidden;
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: -100%;
  background-color: var(--color-accent);
  transition: var(--transition);
}

.mobile-menu a:hover::before {
  left: 0;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(75, 22, 76, 0.8), rgba(221, 136, 207, 0.6));
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  color: var(--color-light);
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 15px rgba(221, 136, 207, 0.8);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.hero .btn {
  margin-top: var(--space-sm);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: blur(3px);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(221, 136, 207, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--neon-glow);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--neon-glow);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: var(--space-sm);
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonial {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin: var(--space-sm);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--color-accent);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  font-weight: bold;
  color: var(--color-primary);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(75, 22, 76, 0.3);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-secondary);
  background: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(221, 136, 207, 0.3);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.form-check input {
  margin-right: var(--space-xs);
  margin-top: 5px;
}

.map-container {
  width: 100%;
  height: 400px;
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: var(--space-md) 0;
  margin-top: var(--space-xl);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  margin-bottom: var(--space-md);
  flex: 1 1 250px;
}

.footer-section h3 {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--color-accent-light);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(75, 22, 76, 0.95);
  color: var(--color-light);
  padding: var(--space-md);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.not-found {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found h1 {
  font-size: 6rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 15px rgba(221, 136, 207, 0.5);
}

.not-found p {
  margin-bottom: var(--space-md);
}

.thank-you {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you h1 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(221, 136, 207, 0.5);
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .nav-links {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .footer-container {
    flex-wrap: nowrap;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.neon-text {
  text-shadow: 0 0 5px rgba(221, 136, 207, 0.8), 0 0 10px rgba(221, 136, 207, 0.5), 0 0 15px rgba(221, 136, 207, 0.3);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
}

.blurred-bg {
  position: relative;
}

.blurred-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(10px);
  z-index: -1;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}