/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0B5D6E;
  --primary-light: #0f7a91;
  --primary-dark: #07404c;
  --accent: #F26B21;
  --accent-light: #ff8542;
  --accent-dark: #d1520e;
  
  --bg-main: #F7FAF9;
  --bg-white: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);
  
  --text-dark: #1F363A;
  --text-muted: #627C80;
  --text-light: #FFFFFF;
  
  --border-color: #E2ECEE;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --shadow-sm: 0 4px 6px -1px rgba(11, 93, 110, 0.05), 0 2px 4px -1px rgba(11, 93, 110, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 93, 110, 0.08), 0 4px 6px -2px rgba(11, 93, 110, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 93, 110, 0.12), 0 10px 10px -5px rgba(11, 93, 110, 0.06);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  display: block;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.section-padding { padding: 100px 0; }
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-family: var(--font-family);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(11, 93, 110, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 93, 110, 0.6);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(242, 107, 33, 0.4);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 107, 33, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(11, 93, 110, 0.05);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  max-width: 650px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
  position: relative;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

@media (max-width: 1100px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .burger-menu {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

/* Burger Animation */
.burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 160px 0 140px 0;
  background: radial-gradient(circle at 80% 20%, rgba(11, 93, 110, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(242, 107, 33, 0.04) 0%, transparent 40%);
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 90px 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  border: 1px solid rgba(11, 93, 110, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(11, 93, 110, 0.05);
  transition: var(--transition-smooth);
}

.hero-badge:hover {
  background-color: rgba(11, 93, 110, 0.12);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

@media (max-width: 992px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-btns > .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 992px) {
  .hero-btns {
    justify-content: center;
  }
}

.hero-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-indicators {
    justify-content: center;
  }
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.indicator-icon {
  color: var(--accent);
  width: 20px;
  height: 20px;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper img.hero-image-flipped {
  transform: scaleX(-1);
}

.hero-image-wrapper:hover img.hero-image-flipped {
  transform: scaleX(-1) scale(1.03);
}

.hero-image-wrapper:hover img:not(.hero-image-flipped) {
  transform: scale(1.03);
}

/* Floating Card on Hero */
.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 16px 32px -8px rgba(11, 93, 110, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
  transition: var(--transition-smooth);
}

.hero-floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(11, 93, 110, 0.22);
}

.floating-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.floating-card-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .hero-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    width: 100%;
  }
}

/* Sobre Section */
.sobre {
  background-color: var(--bg-white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.sobre-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.sobre-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.sobre-image-wrapper {
  position: relative;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.sobre-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Sobre 4-Card Grid */
.sobre-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .sobre-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .sobre-cards-grid {
    grid-template-columns: 1fr;
  }
}

.sobre-card {
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sobre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px -6px rgba(11, 93, 110, 0.12), 0 6px 12px -2px rgba(11, 93, 110, 0.06);
  border-color: rgba(11, 93, 110, 0.25);
}

.sobre-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.sobre-card-icon svg {
  width: 26px;
  height: 26px;
}

.sobre-card:hover .sobre-card-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.08);
}

.sobre-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.sobre-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Como Trabalho Section */
.como-trabalho-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .como-trabalho-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .como-trabalho-grid {
    grid-template-columns: 1fr;
  }
}

.trabalho-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.trabalho-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.trabalho-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.trabalho-card:hover::before {
  height: 100%;
}

.trabalho-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.trabalho-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.trabalho-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Disciplinas Section */
.disciplinas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .disciplinas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .disciplinas-grid {
    grid-template-columns: 1fr;
  }
}

.disciplina-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
}

.disciplina-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.disciplina-icon {
  color: var(--accent);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.disciplina-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
}

/* Destaque (Aulas Individuais Bloco) */
.destaque-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  border-radius: var(--border-radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .destaque-block {
    padding: 40px 30px;
  }
}

.destaque-block::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 107, 33, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.destaque-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.destaque-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.destaque-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Vantagens Section */
.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .vantagens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .vantagens-grid {
    grid-template-columns: 1fr;
  }
}

.vantagem-card {
  background-color: var(--bg-white);
  padding: 36px 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.vantagem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.vantagem-icon {
  color: var(--primary);
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}

.vantagem-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.vantagem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Testemunhos Section */
.testemunhos {
  background-color: var(--bg-white);
}

.slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
  text-align: center;
}

.stars {
  color: #FFB800;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-text {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 1.2rem;
  }
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--primary);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* FAQ Section */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  font-family: var(--font-family);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Contacto Section */
.contacto {
  background-color: var(--bg-white);
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background: radial-gradient(circle at 100% 0%, rgba(11, 93, 110, 0.04) 0%, transparent 40%),
              var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 40px;
  }
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.detail-icon {
  color: var(--accent);
  width: 24px;
  height: 24px;
}

.contact-action {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-action {
    align-items: stretch;
  }
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 56px 0 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
    margin-bottom: 24px;
  }

  .footer-grid > .footer-col:first-child,
  .footer-grid > .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer {
    padding: 36px 0 20px;
  }

  .footer-logo {
    margin-bottom: 8px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 12px;
  }

  .footer-links {
    gap: 6px;
  }
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-logo {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
  max-width: 300px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-contact-item svg {
  margin-top: 3px;
  color: var(--accent);
  width: 18px;
  height: 18px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.6;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Criasite Logo Footer Integration */
.criasite-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.criasite-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  vertical-align: middle;
}

.criasite-logo-main { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
  font-size: 18px; 
  letter-spacing: -0.5px; 
  line-height: 1;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.criasite-icon { 
  color: #60a5fa; /* Tech blue for dark background */
  font-weight: 700; 
  font-size: 16px; 
  font-family: monospace; 
  animation: blink 1.2s ease-in-out infinite;
}

.criasite-cria { 
  font-weight: 900; 
  color: #ffffff; /* White for readability */
}

.criasite-site { 
  font-weight: 300; 
  color: #60a5fa; 
}

.criasite-tagline {
  margin-top: 2px;
  font-size: 6px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600; 
  letter-spacing: 2px;
  margin-left: 2px;
}

/* SPRINT 006 Styles */

/* Solução Completa Section */
.solucao-completa {
  background-color: var(--bg-main);
}

.solucao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .solucao-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .solucao-grid {
    grid-template-columns: 1fr;
  }
}

.solucao-card {
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solucao-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px -6px rgba(11, 93, 110, 0.12), 0 6px 12px -2px rgba(11, 93, 110, 0.06);
  border-color: rgba(11, 93, 110, 0.25);
}

.solucao-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.solucao-card-icon svg {
  width: 26px;
  height: 26px;
}

.solucao-card:hover .solucao-card-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.08);
}

.solucao-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.solucao-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Instituições Section */
.instituicoes {
  background-color: var(--bg-white);
}

.instituicoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .instituicoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .instituicoes-grid {
    grid-template-columns: 1fr;
  }
}

.instituicao-card {
  background: var(--bg-main);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.instituicao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px -4px rgba(11, 93, 110, 0.1), 0 4px 8px -2px rgba(11, 93, 110, 0.04);
  border-color: var(--primary);
  background: var(--bg-white);
}

.instituicao-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-md);
  background-color: rgba(242, 107, 33, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.instituicao-icon svg {
  width: 24px;
  height: 24px;
}

.instituicao-card:hover .instituicao-icon {
  background-color: var(--primary);
  color: var(--text-light);
  transform: scale(1.08);
}

.instituicao-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.instituicao-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Estatísticas Section */
.estatisticas {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.estatisticas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 992px) {
  .estatisticas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .estatisticas-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stat-card {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
  font-family: var(--font-family);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

.stat-disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.7;
  font-style: italic;
}

/* Escolhem Education One Section */
.escolhem-educationone {
  background-color: var(--bg-main);
}

.escolhem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .escolhem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .escolhem-grid {
    grid-template-columns: 1fr;
  }
}

.escolhem-card {
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.escolhem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px -6px rgba(11, 93, 110, 0.12);
  border-color: var(--accent);
}

.escolhem-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background-color: rgba(242, 107, 33, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.escolhem-icon svg {
  width: 26px;
  height: 26px;
}

.escolhem-card:hover .escolhem-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.08);
}

.escolhem-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.escolhem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Final Section */
.cta-final {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.cta-final-card h2 {
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.cta-final-card p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-light:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-final-card {
    padding: 40px 24px;
  }
  .cta-final-card h2 {
    font-size: 2rem;
  }
}

/* SPRINT 007 Styles */

/* Como Funciona Timeline */
.como-funciona {
  background-color: var(--bg-main);
  position: relative;
}

.timeline-wrapper {
  position: relative;
  margin-top: 50px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.timeline-step {
  background: var(--bg-white);
  padding: 36px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px -6px rgba(11, 93, 110, 0.12);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: -16px;
  right: 20px;
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(11, 93, 110, 0.3);
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-md);
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.timeline-step:hover .step-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.08);
}

.timeline-step h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Funcionalidades Detalhe 2 Colunas */
.funcionalidades-detalhe {
  background-color: var(--bg-white);
}

.func-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .func-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.func-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.func-image-container img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.func-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .func-list-grid {
    grid-template-columns: 1fr;
  }
}

.func-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-main);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.func-item:hover {
  transform: translateY(-3px);
  background: var(--bg-white);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.func-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Demonstração Browser Mockup */
.demonstracao {
  background-color: var(--bg-main);
}

.browser-mockup {
  max-width: 960px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 24px 48px -12px rgba(11, 93, 110, 0.18), 0 8px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.browser-header {
  background: #EAEFF0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.dot-red, .dot-yellow, .dot-green {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.browser-address-bar {
  flex: 1;
  background: var(--bg-white);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
}

.browser-content {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}

.browser-content img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.demonstracao-cta {
  text-align: center;
  margin-top: 40px;
}

/* Comparação Section */
.comparacao {
  background-color: var(--bg-white);
}

.comparacao-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.comparacao-header {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr;
  padding: 24px 30px;
  background: var(--primary-dark);
  color: var(--text-light);
  font-weight: 700;
  align-items: center;
}

.comparacao-header .col-brand {
  font-size: 1.2rem;
  color: var(--accent);

}

.comparacao-row {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr;
  padding: 20px 30px;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  transition: var(--transition-smooth);
}

.comparacao-row:last-child {
  border-bottom: none;
}

.comparacao-row:nth-child(even) {
  background-color: var(--bg-main);
}

.comparacao-row:hover {
  background-color: rgba(11, 93, 110, 0.04);
}

.comparacao-row .criterion {
  font-weight: 600;
  color: var(--primary);
}

.comparacao-row .val-edone {
  font-weight: 700;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparacao-row .val-trad {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .comparacao-header, .comparacao-row {
    padding: 16px 18px;
    font-size: 0.88rem;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(242, 107, 33, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(242, 107, 33, 0.6);
}

/* SPRINT 008 Styles */

/* Portfólio Section */
.portfolio {
  background-color: var(--bg-main);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -8px rgba(11, 93, 110, 0.15);
}

.portfolio-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #EAEFF0;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.05);
}

.portfolio-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.portfolio-body h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.portfolio-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Personalização Rápida Section */
.personalizacao {
  background-color: var(--bg-white);
}

.personalizacao-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .personalizacao-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

.personalizacao-box {
  background: var(--bg-main);
  padding: 36px 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.personalizacao-box.after-box {
  background: rgba(11, 93, 110, 0.04);
  border-color: var(--primary-light);
}

.personalizacao-box h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.personalizacao-arrow {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
}

.custom-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.custom-tag {
  background: var(--bg-white);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dashboard Mockup Section */
.dashboard-sec {
  background-color: var(--bg-main);
  scroll-margin-top: 96px;
}

.dashboard-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 24px 48px -12px rgba(11, 93, 110, 0.18);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 480px;
}

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

.dash-sidebar {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-sidebar-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 10px;
}

.dash-sidebar-logo span { color: var(--accent); }

.dash-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dash-menu-item.active, .dash-menu-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.dash-main {
  padding: 30px;
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dash-panel[hidden] { display: none; }

.dash-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.dash-panel > .dash-header-bar h3 {
  color: var(--primary);
  font-size: 1.3rem;
}

.dash-panel-badge {
  padding: 4px 12px;
  color: var(--primary);
  background: rgba(11, 93, 110, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.dash-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.content-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.content-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.content-summary-card span {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.content-summary-card strong {
  color: var(--primary);
  font-size: 1.25rem;
}

.dash-messages-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 16px;
  min-width: 0;
}

.dash-message-list,
.dash-message-preview {
  min-width: 0;
  padding: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.dash-message-list {
  display: grid;
  gap: 8px;
}

.dash-message-item {
  position: relative;
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 13px 14px;
  color: var(--text-dark);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dash-message-item:hover,
.dash-message-item.active {
  background: rgba(11, 93, 110, 0.06);
  border-color: rgba(11, 93, 110, 0.16);
}

.dash-message-item strong {
  padding-right: 64px;
  color: var(--primary);
  font-size: 0.88rem;
}

.dash-message-item small,
.dash-message-subject {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-message-subject {
  color: var(--text-dark);
  font-weight: 600;
}

.dash-message-state {
  position: absolute;
  top: 13px;
  right: 14px;
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
}

.dash-message-state-new {
  color: #17633a;
  background: rgba(39, 174, 96, 0.14);
}

.dash-message-state-read {
  color: var(--text-muted);
  background: var(--bg-main);
}

.dash-message-preview {
  align-self: stretch;
  padding: 22px;
}

.dash-message-preview h4 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

.dash-message-preview-meta {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.dash-message-preview-body {
  color: var(--text-dark);
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .dash-messages-layout { grid-template-columns: 1fr; }
}

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

.dash-table-wrapper {
  overflow-x: auto;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.dash-data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.dash-data-table th,
.dash-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.82rem;
  white-space: nowrap;
}

.dash-data-table th {
  color: var(--text-muted);
  background: var(--bg-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dash-data-table td {
  color: var(--text-dark);
}

.dash-data-table tbody tr:last-child td { border-bottom: 0; }
.dash-data-table tbody tr:hover { background: rgba(11, 93, 110, 0.03); }

.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.dash-status::before {
  width: 8px;
  height: 8px;
  content: '';
  border-radius: 50%;
  background: currentColor;
}

.dash-status-active { color: #218653; }
.dash-status-unavailable { color: #b87714; }
.dash-status-pending { color: #b87714; }
.dash-status-completed { color: var(--primary); }
.dash-status-published { color: #218653; }
.dash-status-draft { color: #b87714; }

.dash-content-table {
  min-width: 0;
  table-layout: fixed;
}

.dash-content-table th,
.dash-content-table td {
  padding: 12px 10px;
  white-space: normal;
  overflow-wrap: anywhere;
  vertical-align: middle;
}

.dash-content-table th:nth-child(1),
.dash-content-table td:nth-child(1) { width: 28%; }
.dash-content-table th:nth-child(2),
.dash-content-table td:nth-child(2) { width: 10%; }
.dash-content-table th:nth-child(3),
.dash-content-table td:nth-child(3) { width: 15%; }
.dash-content-table th:nth-child(4),
.dash-content-table td:nth-child(4) { width: 17%; }
.dash-content-table th:nth-child(5),
.dash-content-table td:nth-child(5) { width: 12%; }
.dash-content-table th:nth-child(6),
.dash-content-table td:nth-child(6) { width: 18%; }

.dash-content-type {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--primary);
  background: rgba(11, 93, 110, 0.1);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.dash-content-type-pdf { color: #a63b32; background: rgba(166, 59, 50, 0.1); }
.dash-content-type-vídeo { color: #6f42c1; background: rgba(111, 66, 193, 0.1); }
.dash-content-type-ficha { color: #1f6f8b; background: rgba(31, 111, 139, 0.1); }
.dash-content-type-link { color: #218653; background: rgba(39, 174, 96, 0.12); }

.dash-course-table {
  min-width: 0;
  table-layout: fixed;
}

.dash-course-table th,
.dash-course-table td {
  padding: 12px 10px;
  white-space: normal;
  overflow-wrap: anywhere;
  vertical-align: middle;
}

.dash-course-table th:nth-child(1),
.dash-course-table td:nth-child(1) { width: 20%; }
.dash-course-table th:nth-child(2),
.dash-course-table td:nth-child(2) { width: 15%; }
.dash-course-table th:nth-child(3),
.dash-course-table td:nth-child(3) { width: 22%; }
.dash-course-table th:nth-child(4),
.dash-course-table td:nth-child(4) { width: 10%; }
.dash-course-table th:nth-child(5),
.dash-course-table td:nth-child(5) { width: 18%; }
.dash-course-table th:nth-child(6),
.dash-course-table td:nth-child(6) { width: 15%; }

.dash-course-table .dash-status {
  padding: 4px 8px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.2;
}

.dash-course-table .dash-status::before {
  background: var(--bg-white);
}

.dash-course-table .dash-status-active { background: #218653; }
.dash-course-table .dash-status-pending { background: #b87714; }
.dash-course-table .dash-status-completed { background: var(--primary); }

[data-mock-table="students"] .dash-data-table {
  min-width: 0;
  table-layout: fixed;
}

[data-mock-table="students"] .dash-data-table th,
[data-mock-table="students"] .dash-data-table td {
  white-space: normal;
  overflow-wrap: anywhere;
  vertical-align: middle;
}

[data-mock-table="students"] .dash-data-table th:nth-child(1),
[data-mock-table="students"] .dash-data-table td:nth-child(1) { width: 20%; }
[data-mock-table="students"] .dash-data-table th:nth-child(2),
[data-mock-table="students"] .dash-data-table td:nth-child(2) { width: 23%; }
[data-mock-table="students"] .dash-data-table th:nth-child(3),
[data-mock-table="students"] .dash-data-table td:nth-child(3) { width: 18%; white-space: nowrap; }
[data-mock-table="students"] .dash-data-table th:nth-child(4),
[data-mock-table="students"] .dash-data-table td:nth-child(4) { width: 23%; }
[data-mock-table="students"] .dash-data-table th:nth-child(5),
[data-mock-table="students"] .dash-data-table td:nth-child(5) { width: 16%; white-space: nowrap; }

[data-mock-table="students"] .dash-status { white-space: nowrap; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dash-data-card,
.dash-settings-card {
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.dash-data-card h4 {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 0.95rem;
}

.dash-data-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.dash-settings-card {
  display: grid;
  gap: 0;
}

.dash-settings-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dash-settings-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--border-color);
}

.dash-settings-section-title h4 {
  color: var(--primary);
  font-size: 0.95rem;
}

.dash-settings-section-title span {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.dash-settings-field {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-color);
}

.dash-settings-field:last-child { border-bottom: 0; }

.dash-settings-field span {
  color: var(--text-muted);
  font-size: 0.74rem;
}

.dash-settings-field strong {
  color: var(--text-dark);
  font-size: 0.86rem;
}

.dash-settings-status,
.dash-settings-option {
  padding: 4px 9px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}

.dash-settings-status {
  color: #17633a;
  background: rgba(39, 174, 96, 0.12);
}

.dash-settings-option {
  color: var(--primary);
  background: rgba(11, 93, 110, 0.1);
}

.dash-settings-card label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: var(--text-dark);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.dash-settings-card label:last-child { border-bottom: 0; }

@media (max-width: 576px) {
  .dash-data-grid { grid-template-columns: 1fr; }
  .dash-panel-badge { font-size: 0.7rem; }
  .dash-settings-layout { grid-template-columns: 1fr; }
}

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

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .dash-stats-grid { grid-template-columns: 1fr; }
}

.dash-stat-box {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.dash-stat-box h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.dash-stat-box .val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.dash-chart-card {
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.chart-bars-mockup {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 140px;
  margin-top: 20px;
  padding-top: 10px;
}

.chart-bar {
  flex: 1;
  background: var(--primary-light);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.chart-bar:hover { background: var(--accent); }

/* Destaques Section */
.destaques {
  background-color: var(--bg-white);
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .destaques-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .destaques-grid { grid-template-columns: 1fr; }
}

.destaque-item-card {
  background: var(--bg-main);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.destaque-item-card:hover {
  transform: translateY(-8px);
  background: var(--bg-white);
  box-shadow: 0 16px 32px -6px rgba(11, 93, 110, 0.12);
  border-color: var(--accent);
}

.destaque-item-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-md);
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition-smooth);
}

.destaque-item-card:hover .destaque-item-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.08);
}

.destaque-item-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.destaque-item-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Prova Social Section */
.prova-social {
  background-color: var(--bg-main);
}

.prova-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .prova-social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .prova-social-grid { grid-template-columns: 1fr; }
}

.prova-card {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.prova-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.prova-badge-demo {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-main);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.prova-stars {
  color: #FFB800;
  margin-bottom: 14px;
  display: flex;
  gap: 4px;
}

.prova-quote {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.prova-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

/* SPRINT 009 Styles */

/* Banner de Confiança */
.banner-confianca {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.banner-confianca-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .banner-confianca-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .banner-confianca-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
}

.banner-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Processo de Implementação */
.processo {
  background-color: var(--bg-main);
}

.processo.section-padding,
.integracoes.section-padding,
.garantias.section-padding {
  padding: 72px 0;
}

.processo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 32px;
}

@media (max-width: 992px) {
  .processo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .processo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.processo-card {
  background: var(--bg-white);
  padding: 22px 16px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.processo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px -6px rgba(11, 93, 110, 0.12);
  border-color: var(--accent);
}

.processo-num {
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(11, 93, 110, 0.25);
}

.processo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background-color: rgba(242, 107, 33, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.processo-card:hover .processo-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.08);
}

.processo-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.processo-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Planos Comparativos */
.planos {
  background-color: var(--bg-white);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .planos-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 540px;
    margin: 40px auto 0 auto;
  }
}

.plano-card {
  background: var(--bg-main);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plano-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.plano-card.featured {
  background: var(--bg-white);
  border: 2px solid var(--accent);
  box-shadow: 0 20px 40px -10px rgba(242, 107, 33, 0.2);
  transform: scale(1.04);
}

.plano-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.plano-badge-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(242, 107, 33, 0.4);
}

.plano-header h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.plano-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plano-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

.plano-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.plano-features-list li svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Integrações Section */
.integracoes {
  background-color: var(--bg-main);
}

.integracoes-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 992px) {
  .integracoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .integracoes-grid {
    grid-template-columns: 1fr;
  }
}

.integracao-card {
  background: var(--bg-white);
  padding: 20px 14px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.integracao-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.integracao-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-md);
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: var(--transition-smooth);
}

.integracao-card:hover .integracao-icon {
  background-color: var(--primary);
  color: var(--text-light);
}

.integracao-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.integracao-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Garantias Section */
.garantias {
  background-color: var(--bg-white);
}

.garantias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .garantias-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .garantias-grid { grid-template-columns: 1fr; }
}

.garantia-card {
  background: var(--bg-main);
  padding: 22px 18px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.garantia-card:hover {
  transform: translateY(-8px);
  background: var(--bg-white);
  box-shadow: 0 16px 32px -6px rgba(11, 93, 110, 0.12);
  border-color: var(--accent);
}

.garantia-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  background-color: rgba(242, 107, 33, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.garantia-card:hover .garantia-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.08);
}

.garantia-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.garantia-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Contacto Premium Form */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-main);
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(242, 107, 33, 0.15);
}

.contact-side-panel {
  background: var(--bg-main);
  padding: 36px 28px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.side-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(11, 93, 110, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.side-info-text h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.side-info-text p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

/* Local Booking */
.section-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-demo {
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.booking-demo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.booking-demo-header h3 {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 1.2rem;
}

.booking-demo-header p {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.booking-demo-header > svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  padding: 42px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking-new-button {
  grid-column: 1 / -1;
  width: fit-content;
}

.internal-booking-modal {
  width: min(620px, calc(100% - 32px));
  max-width: 620px;
  padding: 28px;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.internal-booking-modal::backdrop {
  background: rgba(7, 64, 76, 0.48);
  backdrop-filter: blur(3px);
}

.internal-booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.internal-booking-header h3 {
  color: var(--primary);
  font-size: 1.3rem;
}

.internal-booking-close {
  width: 34px;
  height: 34px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.booking-form-grid .form-group:last-child {
  grid-column: span 2;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.booking-feedback {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-feedback-success {
  color: #17633a;
  background: rgba(39, 174, 96, 0.12);
}

.booking-feedback-error {
  color: #9b2c2c;
  background: rgba(231, 76, 60, 0.12);
}

.public-booking-modal {
  width: min(620px, calc(100% - 32px));
  max-width: 620px;
  padding: 28px;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.public-booking-modal::backdrop {
  background: rgba(7, 64, 76, 0.48);
  backdrop-filter: blur(3px);
}

.public-booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.public-booking-modal-header h2 {
  color: var(--primary);
  font-size: 1.5rem;
}

.public-booking-close {
  width: 34px;
  height: 34px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.public-booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.public-booking-form-grid .form-group:last-child {
  grid-column: span 2;
}

.public-booking-modal .booking-submit {
  margin-top: 4px;
}

.public-booking-modal #public-booking-subject,
.public-booking-modal #public-booking-date,
.public-booking-modal #public-booking-time {
  cursor: pointer;
}

.public-booking-modal #public-booking-date {
  min-height: 52px;
}

.public-booking-duration {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

@media (max-width: 576px) {
  .public-booking-modal { padding: 22px 18px; }

  .internal-booking-modal { padding: 22px 18px; }

  .public-booking-form-grid { grid-template-columns: 1fr; }
  .public-booking-form-grid .form-group:last-child { grid-column: auto; }
}

.booking-list-wrapper {
  min-width: 0;
  padding: 26px;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
}

.booking-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.booking-list-header h3 {
  color: var(--primary);
  font-size: 1.25rem;
}

.booking-count {
  flex-shrink: 0;
  padding: 6px 10px;
  color: var(--primary);
  background: rgba(11, 93, 110, 0.1);
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
}

.booking-list {
  display: grid;
  gap: 12px;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  border-radius: var(--border-radius-sm);
}

.booking-requests-wrapper .booking-card {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.booking-requests-wrapper .booking-card-details,
.booking-requests-wrapper .booking-actions {
  width: 100%;
  min-width: 0;
}

.booking-requests-wrapper .booking-actions {
  justify-content: flex-start;
}

.booking-card-details h4 {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.98rem;
}

.booking-card-details p,
.booking-card-details span {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.booking-card-details span {
  color: var(--text-dark);
  font-weight: 600;
}

.booking-card-details .booking-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.booking-status-pending {
  color: #9a6410 !important;
  background: rgba(245, 158, 11, 0.14);
}

.booking-status-confirmed {
  color: #17633a !important;
  background: rgba(39, 174, 96, 0.12);
}

.booking-status-cancelled {
  color: #9b2c2c !important;
  background: rgba(231, 76, 60, 0.12);
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.booking-action {
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-approve {
  color: #17633a;
  background: rgba(39, 174, 96, 0.12);
  border-color: rgba(39, 174, 96, 0.22);
}

.booking-deny {
  color: #9b2c2c;
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.2);
}

.booking-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #b33a32;
  background: transparent;
  border: 1px solid rgba(179, 58, 50, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.booking-delete:hover {
  color: var(--text-light);
  background: #b33a32;
  border-color: #b33a32;
}

.booking-empty {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 992px) {
  .booking-panel {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-grid .form-group:last-child {
    grid-column: auto;
  }

  .booking-list-wrapper {
    padding: 20px 16px;
  }
}

/* SPRINT 011 Styles */

/* Dark Mode Support */
[data-theme="dark"] {
  --bg-main: #0F172A;
  --bg-white: #1E293B;
  --text-dark: #F8FAFC;
  --text-muted: #94A3B8;
  --border-color: #334155;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .navbar {
  background-color: rgba(15, 23, 42, 0.95);
}

[data-theme="dark"] .personalizacao-box {
  background: #1E293B;
}

[data-theme="dark"] .personalizacao-box.after-box {
  background: rgba(242, 107, 33, 0.08);
}

[data-theme="dark"] .dash-main {
  background: #0F172A;
}

[data-theme="dark"] .dash-stat-box,
[data-theme="dark"] .dash-chart-card {
  background: #1E293B;
}

[data-theme="dark"] .custom-tag {
  background: #334155;
  color: #F8FAFC;
  border-color: #475569;
}

/* Customizer Panel & Drawer */
.customizer-toggle-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(242, 107, 33, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customizer-toggle-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(242, 107, 33, 0.5);
}

.customizer-panel {
  position: fixed;
  top: 0;
  right: -360px;
  width: 340px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px 24px;
  overflow-y: auto;
  border-left: 1px solid var(--border-color);
}

.customizer-panel.active {
  right: 0;
}

.customizer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.customizer-header h3 {
  font-size: 1.15rem;
  color: var(--primary);
}

.customizer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.customizer-group {
  margin-bottom: 24px;
}

.customizer-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.palette-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.palette-btn {
  height: 36px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.palette-btn:hover {
  transform: scale(1.05);
}

.palette-btn.active {
  border-color: var(--accent);
}

.palette-c1 { flex: 1; height: 100%; }
.palette-c2 { flex: 1; height: 100%; }

.theme-toggle-btn {
  background: rgba(11, 93, 110, 0.08);
  border: 1px solid var(--border-color);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 992px) {
  .processo.section-padding,
  .integracoes.section-padding,
  .garantias.section-padding {
    padding: 52px 0;
  }
}

@media (max-width: 576px) {
  .processo.section-padding,
  .integracoes.section-padding,
  .garantias.section-padding {
    padding: 40px 0;
  }
}

/* Mobile viewport safeguards */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .navbar,
  .nav-container,
  .hero,
  .hero-grid,
  .hero-content,
  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-menu:not(.active) {
    display: none !important;
    max-width: 100%;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-cta {
    display: none !important;
  }

  .customizer-panel {
    display: none;
  }

  .logo {
    max-width: calc(100% - 48px);
    min-width: 0;
  }

  .burger-menu {
    display: flex;
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {
  .container,
  .nav-container,
  .hero-grid,
  .hero-content,
  .hero-image-wrapper {
    min-width: 0;
  }

  .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-left: 0;
    padding-right: 0;
  }

  .nav-container {
    width: 100%;
    gap: 10px;
  }

  .logo {
    min-width: 0;
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .burger-menu {
    flex-shrink: 0;
  }

  .hero-grid {
    width: 100%;
    gap: 28px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-badge {
    max-width: 100%;
    padding: 7px 12px;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .hero-btns {
    width: 100%;
    max-width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-indicators {
    width: 100%;
    gap: 10px 14px;
  }

  .indicator-item {
    min-width: 0;
    font-size: 0.8rem;
  }

  .hero-image-wrapper {
    width: 100%;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .hero-floating-card {
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-form-wrapper > * {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .hero,
  .hero-grid,
  .hero-content,
  .hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    text-align: center;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-btns,
  .hero-btns .btn,
  .hero-indicators {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-image-wrapper {
    order: 2;
  }
}

/* Compactação de conteúdo repetido — E-One */
.hero-floating-card,
.banner-confianca {
  display: none;
}

/* A secção principal mantém apenas capacidades funcionais do produto. */
.solucao-grid .solucao-card:nth-child(n + 4) {
  display: none;
}

/* FAQ mantém apenas dúvidas comerciais não respondidas noutras secções. */
.faq-list .faq-item:nth-child(1),
.faq-list .faq-item:nth-child(4),
.faq-list .faq-item:nth-child(5) {
  display: none;
}

/* Footer: retirar links internos de baixo valor comercial. */
.footer-links a[href="styleguide.html"],
.footer-links a[href="#processo"],
.footer-links a[href="#garantias"] {
  display: none;
}

@media (max-width: 576px) {
  .section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .processo-grid,
  .solucao-grid,
  .garantias-grid,
  .faq-list {
    gap: 16px;
  }

  .processo-card,
  .solucao-card,
  .garantia-card {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .section-header {
    margin-bottom: 24px;
  }
}

/* Detalhes expansíveis apenas no mobile. No desktop, o texto permanece visível. */
.mobile-expand > summary {
  display: none;
}

.mobile-expand > p,
.mobile-expand > ul {
  display: block;
}

@media (max-width: 768px) {
  .mobile-expand > summary {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 0;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-expand > summary::after {
    content: '+';
    margin-left: 8px;
    color: var(--accent);
    font-size: 1.1rem;
  }

  .mobile-expand[open] > summary::after {
    content: '−';
  }

  .mobile-expand:not([open]) > p,
  .mobile-expand:not([open]) > ul {
    display: none;
  }

  .mobile-expand[open] > p,
  .mobile-expand[open] > ul {
    display: block;
  }

  .processo-card:nth-child(5) {
    display: none;
  }

  .processo-card,
  .garantia-card,
  .integracao-card {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .plan-details {
    margin-top: 4px;
  }

  .plan-details > ul {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
  }

  .plan-details li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
  }

  .portfolio-footer > span {
    display: none;
  }

  .contact-side-panel .side-info-item:nth-child(2),
  .contact-side-panel .side-info-item:nth-child(4),
  .contact-side-panel .side-info-item:nth-child(5) {
    display: none;
  }
}
