/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
  color: #2b5932;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #81c784);
  border-radius: 2px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #c2f0c2 0%, #ffffff 100%);
  text-align: center;
  padding: 80px 20px 60px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 700px;
  color: #4a5c4a;
  font-weight: 400;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.light {
  background: linear-gradient(135deg, #f9fdf9 0%, #e8f5e8 100%);
  position: relative;
}

.light::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(76,175,80,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.dark-section {
  background: linear-gradient(135deg, #fff9c4 0%, #fef5a3 100%);
  color: #2b5932;
}

.dark-section h2 {
  color: #2b5932;
}

.dark-section .card {
  background: white;
}

.dark-section .checklist li {
  color: #2b5932;
}

.modern-section {
  background: linear-gradient(135deg, #c2f0c2 0%, #ffffff 100%);
  color: #2b5932;
  transform: skewY(-2deg);
  margin: 60px 0;
}

.modern-section .section {
  transform: skewY(2deg);
}

/* Grid Layouts */
.grid-2, .grid-3 {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

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

.card p {
  text-align: center;
  color: #666;
}

.bordered {
  border: 3px solid #c7ecc7;
}

.highlight {
  background: linear-gradient(135deg, #e8fce8 0%, #f0fff0 100%);
  border-color: #4caf50;
  position: relative;
}

.highlight h3 {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.02);
  }
}

.highlight::before {
  content: "🔥 MAIS POPULAR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #4caf50;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Lists */
ul {
  text-align: left;
  padding-left: 20px;
  list-style: disc;
  margin: 20px 0;
}

ul li {
  margin-bottom: 10px;
  color: #555;
}

.checklist {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 30px auto;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.checklist li::before {
  content: "👉";
  position: absolute;
  left: 0;
  top: 0;
}

/* Pricing */
.price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #4caf50;
  text-align: center;
  margin: 20px 0;
}

/* Buttons */
.btn {
  display: block;
  margin: 20px auto 10px;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  width: fit-content;
  animation: gentlePulse 3s ease-in-out infinite;
}

.btn:hover {
  background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn:active {
  transform: translateY(0);
}

/* Alert */
.alert {
  margin-top: 30px;
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.1rem;
  background: #fff3cd;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #d32f2f;
}

/* Centered Content */
.centered {
  text-align: center;
  margin-top: 30px;
}

.centered-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #e6f5e6 0%, #f0fff0 100%);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  margin-top: 60px;
}

.footer a {
  color: #2b5932;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #4caf50;
}

.disclaimer {
  margin-top: 15px;
  color: #666;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 60px 15px;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 20px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .price {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px 40px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 40px 10px;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .centered-text {
    font-size: 1rem;
  }
}

/* Remove lateral spacing - Full width layout */
.section { 
  max-width: none; 
  width: 100%; 
  margin: 0; 
  padding-left: 16px; 
  padding-right: 16px; 
}

.effects-grid, 
.testimonials-container, 
.faq-container, 
.checklist, 
.centered-text { 
  max-width: none; 
  width: 100%; 
  margin-left: 0; 
  margin-right: 0; 
}

.hero p { 
  max-width: none; 
}

/* Testimonial Images Styling */
.testimonial-image {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.testimonial-image img:hover {
  transform: translateY(-5px);
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Card icons */
.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

/* Floating elements */
.floating-element {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.3;
  z-index: 1;
}

/* Enhanced card styling */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.card:hover::before {
  left: 100%;
}

/* Modern section enhancements */
.modern-section h2 {
  color: #2b5932;
  text-shadow: none;
}

.modern-section .centered-text {
  color: #4a5c4a;
}

.modern-section .btn {
  color: white;
}

/* Testimonials Styles */
.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-left: 4px solid #4caf50;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.15);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: #4caf50;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-photo {
  margin-bottom: 20px;
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4caf50;
  box-shadow: 0 3px 15px rgba(76, 175, 80, 0.3);
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.testimonial-author {
  margin-top: 15px;
}

.testimonial-author strong {
  color: #2b5932;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.testimonial-stars {
  font-size: 1.2rem;
  margin-top: 5px;
}

.testimonial-result-image {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

/* Guarantee Section */
.guarantee-section {
  text-align: center;
  padding: 40px 20px;
}

.guarantee-image {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.guarantee-image:hover {
  transform: scale(1.02);
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #2b5932;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4caf50;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 20px 0;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive floating elements */
@media (max-width: 768px) {
  .floating-element {
    font-size: 2rem;
    top: 10px;
    right: 10px;
  }
  
  .card-icon {
    font-size: 2.5rem;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial {
    padding: 20px;
  }
  
  .testimonial-photo img {
    width: 60px;
    height: 60px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card {
  animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(odd) {
  animation: slideInLeft 0.8s ease-out;
}

.card:nth-child(even) {
  animation: slideInRight 0.8s ease-out;
}

.floating-element {
  animation: float 4s ease-in-out infinite;
}

.pulse-element {
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  }
}

/* Hover effect for section headers */
h2 {
  transition: color 0.3s ease;
}

h2:hover {
  color: #4caf50;
}

/* Modern Effects Grid Section */
.section-subtitle {
  color: #4a5c4a;
  max-width: 720px;
  margin: -10px auto 32px;
  font-size: 1.1rem;
  text-align: center;
  opacity: 0.9;
}

.effects-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.effect-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8f5e8;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.effect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffa726);
  border-radius: 20px 20px 0 0;
}

.effect-card.in-view {
  transform: translateY(0);
  opacity: 1;
}

.effect-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe3e3, #fff8f8);
  color: #e53935;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.2);
  margin-bottom: 20px;
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.effect-card h3 {
  color: #2b5932;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 16px 0 12px;
  line-height: 1.3;
}

.effect-card .muted {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.chip {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: #e8fce8;
  color: #2b5932;
  border: 1px solid #c7ecc7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for effects grid */
@media (max-width: 768px) {
  .effects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .effect-card {
    padding: 24px 20px;
  }
  
  .icon-circle {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .effects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .effects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Alert Section with Depth Effects */
.alert-section {
  --accent1: #ff6f00;
  --accent2: #ffc107;
  --danger: #d32f2f;
  --shadow-color: rgba(191, 54, 12, 0.15);
  
  background: linear-gradient(135deg, #fff3cd 0%, #ffe082 50%, #ffcc80 100%);
  position: relative;
  overflow: hidden;
}

.alert-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 111, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.alert-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 111, 0, 0.1) 20px,
    rgba(255, 111, 0, 0.1) 25px
  );
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
}

.alert-section h2 {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-section h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255, 193, 7, 0.4) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  border-radius: 50%;
}

.warning-chip {
  display: inline-block;
  background: linear-gradient(135deg, var(--danger), #ff5722);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  margin: 10px 0 30px;
  position: relative;
  z-index: 2;
}

.warning-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.warning-item {
  background: linear-gradient(180deg, #fffef7 0%, #fff6d6 100%);
  border: 1px solid rgba(255, 193, 7, 0.5);
  border-radius: 16px;
  padding: 24px 24px 24px 64px;
  box-shadow: 
    0 12px 30px var(--shadow-color),
    0 2px 6px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  font-size: 1.1rem;
  color: #2b2b2b;
  font-weight: 500;
  line-height: 1.5;
}

.warning-item::before {
  content: '⚠️';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 111, 0, 0.1), rgba(255, 193, 7, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(255, 111, 0, 0.3);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.warning-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent1), var(--accent2));
  border-radius: 16px 0 0 16px;
  box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.1);
}

.warning-item.in-view {
  transform: translateY(0);
  opacity: 1;
}

.warning-item:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 40px var(--shadow-color),
    0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.warning-item:active {
  transform: translateY(-2px);
}

/* Responsive adjustments for alert section */
@media (min-width: 768px) {
  .warning-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .warning-item {
    padding: 20px 20px 20px 56px;
    font-size: 1rem;
  }
  
  .warning-item::before {
    font-size: 20px;
    width: 32px;
    height: 32px;
    left: 16px;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .warning-item {
    transform: none;
    transition: none;
  }
  
  .warning-item:hover {
    transform: none;
  }
  
  .alert-section h2::before {
    animation: none;
  }
}
