/*
Theme Name: André Araújo - Cheguei Pra Terapia
Theme URI: https://seusite.com.br
Author: André Araújo
Author URI: https://seusite.com.br
Description: Tema para landing page de vendas do método Cheguei Pra Terapia
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cheguei-pra-terapia
*/

/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;600;700&display=swap');

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(0, 0%, 11.8%);
  --foreground: hsl(0, 0%, 95%);
  --card: hsl(0, 0%, 14.5%);
  --card-foreground: hsl(0, 0%, 95%);
  --muted: hsl(0, 0%, 22.7%);
  --muted-foreground: hsl(0, 0%, 63.9%);
  --accent: hsl(0, 100%, 35.1%);
  --accent-foreground: hsl(0, 0%, 95%);
  --border: hsl(0, 0%, 22.7%);
  --warrior-red: hsl(0, 100%, 35.1%);
  --shadow-warrior: 0 10px 40px -15px hsla(0, 100%, 35.1%, 0.4);
  --shadow-glow: 0 0 60px hsla(0, 100%, 35.1%, 0.3);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-warrior);
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
  font-weight: 700;
}

.btn-hero:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  background-color: hsl(0, 100%, 40%);
}

/* Text utilities */
.text-gradient-warrior {
  background: linear-gradient(to right, var(--accent), hsl(0, 100%, 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-warrior {
  text-shadow: 0 0 20px hsla(0, 100%, 35.1%, 0.5);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-center {
  text-align: center;
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-pulse-red {
  animation: pulse-red 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
}

.hero-logo {
  width: 250px;
  margin: 0 auto 3rem;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.hero-logo:hover {
  opacity: 1;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.about-image:hover img {
  filter: grayscale(0%);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0.2;
  mix-blend-mode: multiply;
  transition: opacity 0.5s;
  z-index: 1;
}

.about-image:hover::before {
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 100%, 35.1%, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-family: 'Cinzel', serif;
  color: var(--accent);
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-warrior);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.benefit-card:hover .benefit-title {
  color: var(--accent);
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid hsla(0, 100%, 35.1%, 0.2);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: hsla(0, 100%, 35.1%, 0.5);
  box-shadow: var(--shadow-warrior);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(0, 100%, 35.1%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.25rem;
}

.author-name {
  font-weight: 600;
}

.author-age {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Modules & Bonuses */
.modules-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 4rem;
}

.module-item {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.module-item:hover {
  border-color: hsla(0, 100%, 35.1%, 0.5);
  box-shadow: var(--shadow-warrior);
}

.module-icon {
  width: 3rem;
  height: 3rem;
  background: hsla(0, 100%, 35.1%, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.module-item:hover .module-icon {
  background: hsla(0, 100%, 35.1%, 0.2);
}

.module-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.module-content {
  flex: 1;
}

.module-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.module-item:hover .module-title {
  color: var(--accent);
}

.module-description {
  color: var(--muted-foreground);
}

.bonuses-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bonus-card {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid hsla(0, 100%, 35.1%, 0.3);
  transition: all 0.3s;
}

.bonus-card:hover {
  border-color: hsla(0, 100%, 35.1%, 0.6);
  box-shadow: var(--shadow-warrior);
}

.bonus-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bonus-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.bonus-description {
  color: var(--muted-foreground);
}

/* Pricing */
.pricing-box {
  background: linear-gradient(135deg, var(--background), var(--card));
  padding: 3rem;
  border-radius: 1rem;
  border: 2px solid hsla(0, 100%, 35.1%, 0.5);
  box-shadow: var(--shadow-glow);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.price {
  font-size: 3rem;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  color: var(--accent);
  margin: 1.5rem 0;
}

.price-detail {
  font-size: 1rem;
  color: var(--muted-foreground);
  display: block;
  margin-top: 0.5rem;
}

/* Guarantee */
.guarantee-box {
  background: var(--card);
  border: 2px solid hsla(0, 100%, 35.1%, 0.5);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.guarantee-icon {
  width: 4rem;
  height: 4rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
}

.guarantee-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.urgency-box {
  background: var(--background);
  border: 1px solid hsla(0, 100%, 35.1%, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 2rem;
  transition: border-color 0.3s;
}

.urgency-box:hover {
  border-color: hsla(0, 100%, 35.1%, 0.5);
}

.urgency-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.clock-icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

/* Footer */
footer {
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  width: 200px;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-warrior);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.social-link:hover svg {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Responsive utilities */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pricing-box,
  .guarantee-box {
    padding: 2rem 1rem;
  }
  
  .price {
    font-size: 2rem;
  }
}