/*
Theme Name: Padaria Pernambucana Coffee Break
Theme URI: https://padariapernambucana.com.br
Author: Seu Nome
Author URI: https://padariapernambucana.com.br
Description: Tema WordPress para Coffee Break Corporativo - Padaria Pernambucana
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: padaria-pernambucana
*/

/* Design System - Cores HSL */
:root {
  --color-background: 40, 20%, 97%;
  --color-foreground: 25, 30%, 20%;
  --color-primary: 25, 75%, 31%;
  --color-primary-foreground: 40, 20%, 97%;
  --color-secondary: 35, 50%, 85%;
  --color-accent: 140, 75%, 45%;
  --color-accent-foreground: 0, 0%, 100%;
  --color-muted: 40, 15%, 92%;
  --color-border: 35, 25%, 88%;
}

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

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

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

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

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.4);
}

.btn-primary {
  background-color: hsl(var(--color-primary));
  color: hsl(var(--color-primary-foreground));
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 4rem 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(var(--color-primary), 0.95) 0%, hsla(var(--color-primary), 0.85) 50%, hsla(var(--color-primary), 0.7) 100%);
}

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

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
