
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #ea580c;
  --primary-hover: #f97316;
  --secondary: #0a0a0a;
  --bg-color: #050505;
  --text-color: #e0e0e0;
  --heading-color: #ffffff;
  --white: #ffffff;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: #111111;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
}

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

::selection {
  background-color: var(--primary-hover);
  color: var(--white);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: var(--secondary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
}

.logo-text {
  line-height: 1;
}

.logo-text span.brand {
  font-size: 1.125rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--white);
  display: block;
}

.logo-text span.slogan {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-hover);
  display: block;
}

.logo a {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

main {
  flex: 1;
}

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

h1, h2, h3 { 
  color: var(--heading-color); 
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 1rem; 
}
h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; color: #9ca3af; }
a { color: var(--primary-hover); transition: color 0.2s; }
a:hover { color: var(--primary); }

ul { margin-bottom: 1rem; padding-left: 1.5rem; color: #9ca3af; }
li { margin-bottom: 0.5rem; }
ol { margin-bottom: 1rem; padding-left: 1.5rem; color: #9ca3af; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.5);
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover { 
  transform: translateY(-5px); 
  border-color: rgba(255, 255, 255, 0.1);
}

.card h3, .card h4 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

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

.disclaimer {
  background: var(--secondary);
  padding: 1rem;
  text-align: center;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

footer {
  background: var(--secondary);
  color: #9ca3af;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h3 { 
  color: var(--white); 
  font-size: 1rem;
  font-family: var(--font-sans);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem; 
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col a { color: #9ca3af; text-decoration: none; font-size: 0.875rem;}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; margin-bottom: 0.5rem; }

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border: 4px solid rgba(255,255,255,0.1);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}
.faq-question {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  color: var(--white);
}
.faq-answer {
  display: none;
  padding-top: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.faq-answer.active { display: block; }

.ad-slot {
  width: 100%;
  padding: 1.5rem;
  background: #080808;
  text-align: center;
  color: #4b5563;
  margin: 2rem 0;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.3);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-text {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.cookie-banner button {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0.25rem;
  cursor: pointer;
}

.cookie-banner button.btn-text {
  background: transparent;
  color: var(--white);
  text-decoration: underline;
  padding: 0.5rem;
}

input[type="number"], input[type="text"] {
  width: 100%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.875rem;
}

input[type="number"]:focus {
  outline: none;
  border-color: var(--primary);
}

label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.hero {
  background: linear-gradient(to bottom right, #121212, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero::after {
  content: '';
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 16rem;
  height: 16rem;
  border: 2rem solid rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 32rem;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
  }
  
  .hero::after {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
