/*
Theme Name: Dra. Suellen Rabelo
Description: Tema customizado para consultório odontológico da Dra. Suellen Rabelo
Version: 1.0
Author: Dra. Suellen Rabelo
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --background: #ffffff;
  --foreground: #5c4a35;
  --primary: #8e734d;
  --primary-foreground: #ffffff;
  --secondary: #d2b684;
  --secondary-foreground: #5c4a35;
  --muted: #f8f6f3;
  --muted-foreground: #777;
  --accent: #f8f6f3;
  --accent-foreground: #5c4a35;
  --border: #e6ddd1;
  --brand-beige: #ccbaa7;
  --brand-gold: #8e734d;
  --brand-gold-light: #d2b684;
  --brand-gold-dark: #906e40;
  --container-max-width: 1280px;
  --border-radius: 0.5rem;
}

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

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

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

.logo img {
  height: 48px;
  width: auto;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-navigation a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: var(--brand-gold);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brand-gold);
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation {
    display: none;
  }
  
  .main-navigation.mobile-open {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 2rem;
  }
  
  .main-navigation.mobile-open ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--brand-gold-dark), var(--brand-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #080808;
  font-weight: 600;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background: var(--brand-gold);
  color: white;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.btn-primary:hover {
  background: var(--brand-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--brand-gold);
  padding: 0.75rem 2rem;
  text-decoration: none;
  border: 2px solid var(--brand-gold);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--brand-gold);
  color: white;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--brand-gold);
}

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

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

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

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

/* Card Styles */
.card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--brand-gold);
}

.card-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Testimonial Styles */
.testimonial {
  background: var(--muted);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--brand-gold);
  margin-bottom: 2rem;
}

.testimonial-content {
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--brand-gold);
}

/* Footer Styles */
.site-footer {
  background: rgba(204, 186, 167, 0.2);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  color: rgba(92, 74, 53, 0.7);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(204, 186, 167, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: rgba(92, 74, 53, 0.6);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* WordPress specific */
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-style: italic; text-align: center; }