/*
Theme Name: Hellen Florio Psychology
Description: Landing page theme for perinatal psychology practice
Version: 1.0
Author: Custom Theme
*/

:root {
  /* Primary Colors */
  --primary: 15 23% 29%; /* #4B2E2E - Marrom escuro */
  --primary-foreground: 36 66% 92%; /* #F5ECD8 - Palha */
  
  /* Secondary Colors */
  --secondary: 36 66% 92%; /* #F5ECD8 - Palha */
  --secondary-foreground: 15 23% 29%; /* #4B2E2E */
  
  /* Background Colors */
  --background: 0 0% 100%; /* White */
  --foreground: 15 23% 29%;
  
  /* Muted Colors */
  --muted: 36 33% 85%;
  --muted-foreground: 15 15% 45%;
  
  /* Accent Colors */
  --accent: 36 66% 92%;
  --accent-foreground: 15 23% 29%;
  
  /* Border */
  --border: 36 33% 85%;
  --input: 36 33% 85%;
  --ring: 15 23% 29%;
  
  /* Card */
  --card: 0 0% 100%;
  --card-foreground: 15 23% 29%;
  
  /* Popover */
  --popover: 0 0% 100%;
  --popover-foreground: 15 23% 29%;
  
  /* Destructive */
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  
  /* Custom Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(15, 23%, 29%), hsl(36, 66%, 92%));
  --gradient-hero: linear-gradient(135deg, hsl(36, 66%, 92%) 0%, hsl(36, 50%, 88%) 100%);
  
  /* Custom Backgrounds */
  --hero-bg: hsl(36, 66%, 92%);
  --testimonial-bg: hsl(36, 33%, 96%);
  
  /* Shadows */
  --shadow-soft: 0 2px 10px hsl(15, 23%, 29%, 0.1);
  --shadow-card: 0 4px 20px hsl(15, 23%, 29%, 0.15);
  --shadow-hero: 0 10px 40px hsl(15, 23%, 29%, 0.1);
  
  /* Border Radius */
  --radius: 0.75rem;
}

/* Reset and Base Styles */
* {
  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: hsl(var(--foreground));
  background-color: hsl(var(--background));
}

.font-serif {
  font-family: Georgia, "Times New Roman", serif;
}

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

/* Utilities */
.text-primary { color: hsl(var(--primary)); }
.text-secondary { color: hsl(var(--secondary-foreground)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-hero { background: var(--gradient-hero); }
.bg-testimonial { background-color: var(--testimonial-bg); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: hsl(15, 23%, 25%);
}

.btn-hero {
  background: rgba(255, 255, 255, 0.1);
  color: hsl(var(--primary));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
}

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

/* Cards */
.card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-card);
}

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

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo img {
  width: 3rem;
  height: 1.5rem;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.nav a:hover {
  color: hsl(var(--primary));
}

/* Hero Section */
.hero {
  background: var(--gradient-hero);
  padding: 8rem 0 5rem;
  margin-top: 4rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hero);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}

/* Footer */
.footer {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

.footer a {
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: hsl(var(--secondary));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Accordion for FAQ */
.accordion-item {
  border-bottom: 1px solid hsl(var(--border));
}

.accordion-trigger {
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  padding-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid hsl(var(--border));
    padding: 1rem;
  }
  
  .mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--border));
  }
}