/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* --- PALLETE PREMIUM OSCURO --- */
:root {
  --primary: #FF4C00;       /* Orange accent / CTA */
  --secondary: #ffd856;     /* Gold accent for highlights */
  --text: #E0E0E0;          /* Light grey text */
  --bg: #121212;            /* Dark page background */
  --highlight-bg: #1E1E1E;  /* Dark highlight background */
  --btn-hover: #FF3300;     /* Button hover */
  --section-bg: #1B1B1B;    /* Section background */
  --quote-color: #FFC857;   /* Color for quotes / testimonials */
}

html {
  scroll-behavior: smooth;
}

/* --- GLOBAL --- */
body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 10px;
}

/* --- HEADINGS --- */
h1, h2, h3 {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 3em;
  animation: fadeInUp 1s ease forwards;
}

h2 {
  font-size: 2.2em;
  animation: fadeInUp 1s ease forwards;
}

h3 {
  font-size: 1.8em;
  animation: fadeInUp 1s ease forwards;
}

h4 {
  font-size: 1.8em;
  animation: fadeInUp 1s ease forwards;
  background-color: #171717;
  border-left: solid 4px var(--secondary);
  border-radius: 10px;
  padding: 10px 10px 10px 15px;
}

/* --- PARAGRAPHS --- */
p {
  font-size: 1.15em;
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

p span.highlight {
  background: var(--highlight-bg);
  color: var(--primary);
  font-weight: 600;
  padding: 0 4px;
  border-radius: 3px;
  font-size: 1.2em;
}

/* --- SECTIONS --- */
.section {
  background: var(--section-bg);
  padding: 50px 20px;
  margin-bottom: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transform: translateY(20px);
  opacity: 0;
  animation: sectionFade 0.8s ease forwards;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 18px 35px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255,76,0,0.6);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 100px;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::after {
  width: 300%;
  height: 300%;
}

.btn:hover {
  background: var(--btn-hover);
  box-shadow: 0 10px 25px rgba(255,51,0,0.7);
}

/* --- PRICE --- */
.price {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--primary);
  margin: 25px 0;
  text-align: center;
  animation: fadeIn 1s ease forwards;
}

/* --- LISTS --- */
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 14px;
  font-size: 1.15em;
}

/* --- TESTIMONIALS --- */
#testimonials p {
  font-style: italic;
  background: #1E1E1E;
  border-left: 4px solid var(--quote-color);
  padding: 18px 20px;
  border-radius: 6px;
  font-size: 1.15em;
  color: var(--quote-color);
  line-height: 1.6;
}

#testimonials strong {
  color: var(--primary);
  font-size: 1.2em;
}

/* --- QUOTE HIGHLIGHT VARIATION --- */
p.quote {
  font-size: 1.25em;
  color: var(--secondary);
  font-weight: 600;
  margin: 25px 0;
}

footer {
    padding: 20px;
    font-size: small;
    text-align: center;
}

#hero {
  background: none;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes sectionFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media screen and (max-width: 768px) {
  h1 { font-size: 2.4em; }
  h2 { font-size: 1.9em; }
  .btn { padding: 16px 28px; font-size: 1em; }
  p { font-size: 1.05em; }
}

.dynamic-text { font-weight: bold; color: #FFB400; }

