/* Importar fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* Variáveis CSS */
:root {
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(215, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(215, 25%, 15%);
  --primary: hsl(210, 80%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(200, 60%, 94%);
  --secondary-foreground: hsl(210, 80%, 35%);
  --muted: hsl(210, 30%, 96%);
  --muted-foreground: hsl(215, 15%, 50%);
  --accent: hsl(32, 95%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(210, 40%, 98%);
  --border: hsl(210, 25%, 90%);
  --input: hsl(210, 25%, 90%);
  --ring: hsl(210, 80%, 35%);
  --radius: 0.75rem;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-content {
    height: 80px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(200, 75%, 45%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.25rem;
  }
}

.logo-text .highlight {
  color: var(--primary);
}

/* Navigation */
nav {
  display: none;
}

@media (min-width: 1024px) {
  nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

nav a {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu nav a {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  font-weight: 500;
}

.mobile-menu nav a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(200, 75%, 45%) 100%);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, hsl(25, 90%, 55%) 100%);
  color: var(--accent-foreground);
  box-shadow: 0 0 40px rgba(255, 165, 0, 0.3);
}

.btn-accent:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 165, 0, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-whatsapp {
  background: hsl(142, 70%, 45%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp:hover {
  background: hsl(142, 70%, 40%);
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.2);
}

.btn-hero {
  background: linear-gradient(135deg, var(--accent) 0%, hsl(25, 90%, 55%) 100%);
  color: var(--accent-foreground);
  box-shadow: 0 0 40px rgba(255, 165, 0, 0.3);
  font-size: 1rem;
  padding: 1.5rem 2rem;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 165, 0, 0.4);
}

.btn-link {
  background: none;
  color: var(--primary);
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-lg {
  height: 48px;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-xl {
  height: 56px;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, hsl(200, 70%, 95%) 0%, hsl(210, 80%, 90%) 50%, hsl(180, 60%, 92%) 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-decoration::before,
.hero-bg-decoration::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-decoration::before {
  top: 80px;
  right: 40px;
  width: 288px;
  height: 288px;
  background: rgba(59, 130, 246, 0.05);
}

.hero-bg-decoration::after {
  bottom: 80px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: rgba(255, 165, 0, 0.05);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 5rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 200px);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .hero-stat-number {
    font-size: 1.875rem;
  }
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
}

.hero-card {
  position: relative;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.hero-card-wrapper {
  width: 100%;
  aspect-ratio: 1;
  max-width: 32rem;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
}

.hero-card-inner {
  width: 100%;
  height: 100%;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-card-icon {
  width: 96px;
  height: 96px;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero-card-text {
  color: var(--muted-foreground);
  text-align: center;
}

.hero-badge-float {
  position: absolute;
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
  animation: pulseSlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-float.top-left {
  top: 40px;
  left: -16px;
}

.hero-badge-float.bottom-right {
  bottom: 80px;
  right: -16px;
  animation-delay: 1s;
}

.hero-badge-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hero-badge-text h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.hero-badge-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-features {
  background: var(--primary);
  padding: 1.5rem 0;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-foreground);
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hero-feature-text h4 {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .hero-feature-text h4 {
    font-size: 1rem;
  }
}

.hero-feature-text p {
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .hero-feature-text p {
    font-size: 0.875rem;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-title .highlight {
  color: var(--primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* About Section */
.about-section {
  background: var(--card);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-stat-card {
  background: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.about-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-icon.primary {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(200, 75%, 45%) 100%);
  color: var(--primary-foreground);
}

.about-stat-icon.accent {
  background: linear-gradient(135deg, var(--accent) 0%, hsl(25, 90%, 55%) 100%);
  color: var(--accent-foreground);
}

.about-stat-icon.secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.about-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-stat-number.primary {
  color: var(--primary);
}

.about-stat-number.accent {
  color: var(--accent);
}

.about-stat-label {
  color: var(--muted-foreground);
}

/* Diploma Types Section */
.diploma-types-section {
  background: var(--background);
}

.diploma-types-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .diploma-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.diploma-type-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.diploma-type-card:hover {
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.diploma-type-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.diploma-type-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(200, 75%, 45%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.diploma-type-card:hover .diploma-type-icon {
  transform: scale(1.1);
}

.diploma-type-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.diploma-type-info p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.diploma-type-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.diploma-type-duration {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.diploma-types-cta {
  margin-top: 4rem;
  background: var(--primary);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .diploma-types-cta {
    padding: 3rem;
  }
}

.diploma-types-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .diploma-types-cta h3 {
    font-size: 1.875rem;
  }
}

.diploma-types-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* Courses Section */
.courses-section {
  background: var(--card);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.course-card {
  background: var(--background);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.course-card:hover {
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.course-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-foreground);
  transition: all 0.3s ease;
}

.course-card:hover .course-icon {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(200, 75%, 45%) 100%);
  color: var(--primary-foreground);
}

.course-name {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.course-card:hover .course-name {
  color: var(--primary);
}

.course-category {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.courses-cta {
  text-align: center;
  margin-top: 3rem;
}

.courses-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--background);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
  width: 40px;
  height: 40px;
  color: rgba(59, 130, 246, 0.2);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-star {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(200, 75%, 45%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
}

.testimonial-info h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* FAQ Section */
.faq-section {
  background: var(--card);
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--background);
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
  padding: 0 1.5rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-trigger::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 1000px;
}

.faq-answer {
  padding-bottom: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(200, 70%, 95%) 0%, hsl(210, 80%, 90%) 50%, hsl(180, 60%, 92%) 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-bg-decoration::before,
.cta-bg-decoration::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-bg-decoration::before {
  top: 40px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: rgba(59, 130, 246, 0.1);
}

.cta-bg-decoration::after {
  bottom: 40px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: rgba(255, 165, 0, 0.1);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .cta-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-info-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
}

.cta-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-info-icon.primary {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(200, 75%, 45%) 100%);
  color: var(--primary-foreground);
}

.cta-info-icon.accent {
  background: linear-gradient(135deg, var(--accent) 0%, hsl(25, 90%, 55%) 100%);
  color: var(--accent-foreground);
}

.cta-info-icon.secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.cta-info-card h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.cta-info-card p {
  color: var(--muted-foreground);
}

/* Footer */
footer {
  background: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo-text .highlight {
  color: var(--primary);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  max-width: 28rem;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(142, 70%, 50%);
  transition: color 0.3s ease;
}

.footer-whatsapp:hover {
  color: hsl(142, 70%, 60%);
}

.footer-column h4 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  background: hsl(142, 70%, 45%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: hsl(142, 70%, 40%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.whatsapp-button-icon {
  width: 28px;
  height: 28px;
  color: hsl(0, 0%, 100%);
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: hsl(142, 70%, 45%);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.3;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseSlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.mt-12 {
  margin-top: 3rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mobile-break {
  display: block;
}

@media (min-width: 768px) {
  .mobile-break {
    display: none;
  }
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.min-h-screen {
  min-height: 100vh;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Icon Styles */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
}

