/*
Theme Name: Multiecho Medicina
Theme URI: https://multiecho.com.br
Description: Tema personalizado para Multiecho - Medicina Diagnóstica
Version: 1.0.0
Author: Multiecho
Author URI: https://multiecho.com.br
Text Domain: multiecho
*/

:root {
  /* Medical theme colors - Multiecho inspired */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(25, 30%, 20%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(25, 30%, 20%);

  /* Primary: Warm Brown - multiecho brand color */
  --primary: hsl(25, 45%, 40%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-hover: hsl(25, 45%, 30%);

  /* Secondary: Lighter Brown - complementary */
  --secondary: hsl(25, 35%, 55%);
  --secondary-foreground: hsl(0, 0%, 100%);
  
  /* Accent: Darker Brown - emphasis */
  --accent: hsl(25, 50%, 35%);
  --accent-foreground: hsl(0, 0%, 100%);

  --muted: hsl(25, 15%, 96%);
  --muted-foreground: hsl(25, 10%, 50%);

  --border: hsl(25, 15%, 90%);
  --input: hsl(25, 15%, 90%);
  --ring: hsl(25, 45%, 40%);

  --radius: 0.75rem;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 2px 20px -5px hsl(25 45% 40% / 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 2px 20px -5px hsl(25 45% 40% / 0.15);
}

.btn-secondary:hover {
  background-color: hsl(25, 35%, 45%);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, hsl(25, 45%, 40%), hsl(25, 45%, 50%));
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background-color: var(--muted);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.benefit-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 30px -8px hsl(25 30% 30% / 0.1);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 20px -5px hsl(25 45% 40% / 0.15);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: hsl(25, 45%, 40%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 2px 20px -5px hsl(25 45% 40% / 0.15);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background-color: white;
}

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

.testimonial-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 30px -8px hsl(25 30% 30% / 0.1);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-content {
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.testimonial-role {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Authority Section */
.authority-section {
  padding: 5rem 0;
  background-color: var(--muted);
}

.authority-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.authority-logo {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: white;
}

.faq-item {
  background-color: var(--card);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 4px 30px -8px hsl(25 30% 30% / 0.1);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(25, 45%, 40%), hsl(25, 45%, 50%));
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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