/*
Theme Name: Protocolo Sal Rosa
Theme URI: https://protocolosalrosa.com
Author: Protocolo Sal Rosa
Author URI: https://protocolosalrosa.com
Description: Tema personalizado para landing page do Protocolo Sal Rosa
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: protocolo-sal-rosa
*/

:root {
  --primary: 14 86% 65%;
  --primary-foreground: 0 0% 100%;
  --secondary: 142 71% 45%;
  --secondary-foreground: 0 0% 100%;
  --accent: 38 92% 50%;
  --accent-foreground: 0 0% 100%;
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --border: 240 5.9% 90%;
  --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px hsla(14, 86%, 65%, 0.3);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

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

.gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px hsla(14, 86%, 65%, 0.5);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Problem Section */
.problem-list {
  max-width: 48rem;
  margin: 0 auto;
}

.problem-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  background: hsl(var(--card));
  border-left: 4px solid hsl(0, 84%, 60%);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}

/* Solution Section */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.benefit-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Transformation Section */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}

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

.star {
  color: hsl(var(--accent));
}

/* Offer Section */
.offer-card {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem;
  background: hsl(var(--card));
  border: 2px solid hsla(14, 86%, 65%, 0.2);
  border-radius: 1rem;
  box-shadow: var(--shadow-glow);
}

.price-original {
  text-decoration: line-through;
  color: hsl(var(--muted-foreground));
}

.price-current {
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.include-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.checkmark {
  color: hsl(var(--secondary));
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: hsl(var(--muted));
  padding: 2rem 0;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
