/*
Theme Name: WhatsApp Workshop Landing
Theme URI: https://example.com
Author: Mina Meneses
Author URI: https://example.com
Description: Tema personalizado para Workshop de WhatsApp Business
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: whatsapp-workshop
Tags: landing-page, workshop, business
*/

:root {
  --color-purple: #6B46C1;
  --color-purple-dark: #553C9A;
  --color-purple-light: #9F7AEA;
  --color-gold: #F59E0B;
  --color-gold-light: #FBBF24;
  --color-white: #FFFFFF;
  --color-gray: #E5E7EB;
  --color-dark: #1F2937;
  --gradient-hero: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--gradient-hero);
}

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

/* Typography */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-dark);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  background: var(--gradient-hero);
  color: var(--color-white);
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

/* Price Ladder */
.price-ladder {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.price-highlight {
  font-weight: 700;
  font-size: 1.25rem;
}

/* Content Sections */
.section {
  padding: 5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-gold);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* List with checkmarks */
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.check-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-size: 1.125rem;
}

.check-list li::before {
  content: "✅";
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Testimonials */
.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-white);
}

.testimonial-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Instructor Section */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.instructor-image {
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .price-ladder {
    flex-direction: column;
    gap: 1rem;
  }
  
  .instructor-grid {
    grid-template-columns: 1fr;
  }
}
