/*
Theme Name: Emagreça 15kg em 30 Dias
Theme URI: https://seu-site.com
Author: Seu Nome
Author URI: https://seu-site.com
Description: Tema personalizado para landing page de emagrecimento
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emagreca-theme
*/

/* Renomeie este arquivo para style.css quando usar no WordPress */

:root {
  --primary-color: hsl(25, 100%, 50%);
  --secondary-color: hsl(152, 76%, 36%);
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 13%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

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

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.5);
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--foreground);
}

.gradient-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  
  .btn-cta {
    padding: 15px 30px;
    font-size: 16px;
  }
}