/* =======================
   CORES E VARIÁVEIS
======================= */
:root {
  --primary: #1fb5a9;
  --primary-dark: #15968d;
  --primary-light: #2ecdc4;
  --dark: #0f1f3d;
  --dark-secondary: #132b55;
  --light: #f4f6f8;
  --text: #1a1a1a;
  --text-light: #555555;
  --border: #e0e0e0;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
}

/* =======================
   RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: linear-gradient(180deg, #f6fbff 0%, #eef5fb 58%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =======================
   TELA DE LOADING
======================= */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loading-content {
  text-align: center;
  color: white;
}

.logo-loader {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-animate {
  width: 250px;
  height: 250px;
  object-fit: contain;
  animation: pulseLogo 2s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(31, 181, 169, 0.9)) 
          drop-shadow(0 0 100px rgba(31, 181, 169, 0.6))
          drop-shadow(0 0 150px rgba(31, 181, 169, 0.4));
  z-index: 10;
}

.loader-ring {
  display: none;
}

@keyframes pulseLogo {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 50px rgba(31, 181, 169, 0.9)) 
            drop-shadow(0 0 100px rgba(31, 181, 169, 0.6))
            drop-shadow(0 0 150px rgba(31, 181, 169, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 80px rgba(31, 181, 169, 1)) 
            drop-shadow(0 0 150px rgba(31, 181, 169, 0.8))
            drop-shadow(0 0 200px rgba(31, 181, 169, 0.6));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 50px rgba(31, 181, 169, 0.9)) 
            drop-shadow(0 0 100px rgba(31, 181, 169, 0.6))
            drop-shadow(0 0 150px rgba(31, 181, 169, 0.4));
  }
}

.loading-content h2 {
  display: none;
}

.loading-content p {
  display: none;
}

.progress-bar {
  display: none;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  width: 0%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(31, 181, 169, 0.8);
  transition: width 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================
   LINKS
======================= */
a {
  text-decoration: none;
  color: inherit;
}

/* =======================
   ANIMAÇÕES
======================= */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

.animate-in.left {
  animation: slideInLeft 0.6s ease-out forwards;
}

/* =======================
   BOTÕES
======================= */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(31,181,169,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31,181,169,0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* =======================
   HEADER
======================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;

  background: rgba(10, 25, 52, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 14px 60px rgba(0,0,0,0.18);
  padding: 0.9rem 4rem;
}

.nav ul li a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: 0;
  transition: width 0.3s;
}

.nav ul li a:hover,
.nav ul li a.active {
  color: #a8f4f0;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
  width: 100%;
}

.btn-reservation {
  background: linear-gradient(135deg, #23c1d5, #1487b2);
  color: #ffffff;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(20, 135, 178, 0.35);
  transition: all 0.35s ease;
}

.btn-reservation:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(20, 135, 178, 0.4);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

/* MENU MOBILE */
.menu-mobile {
  display: none;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 30px;
  height: 24px;
  position: relative;
}

.menu-icon span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav ul {
    display: none;
  }

  .btn-reservation {
    display: none;
  }

  .menu-mobile {
    display: block;
  }

  .menu-icon {
    display: flex;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* =======================
   HERO
======================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
  color: #fff;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(31,181,169,0.18), transparent 24%),
              linear-gradient(180deg, #071426 0%, #0a1f39 42%, #071428 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31,181,169,0.18);
  top: -120px;
  right: -120px;
  filter: blur(32px);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-quickstats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1rem;
}

.stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  text-align: left;
  color: #e8f8ff;
  backdrop-filter: blur(12px);
}

.stat-box strong {
  display: block;
  font-size: 1.6rem;
  color: #b2f7ff;
  margin-bottom: 0.25rem;
}

.hero-panel {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.hero-panel-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(31,181,169,0.22);
  border-radius: 32px;
  padding: 2.2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
}

.panel-tag {
  display: inline-flex;
  background: rgba(31,181,169,0.14);
  color: #bdfafb;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-panel-card h3 {
  font-size: 1.7rem;
  line-height: 1.15;
  color: #f7fcff;
  margin-bottom: 1rem;
}

.hero-panel-card p {
  color: rgba(238,247,255,0.83);
  line-height: 1.9;
  margin-bottom: 1.6rem;
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(31,181,169,0.18);
  color: #d7ffff;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-panel-highlight {
  display: grid;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.highlight-item span {
  color: rgba(190,245,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.highlight-item strong {
  color: #f8ffff;
  font-size: 1.1rem;
}

/* =======================
   SEÇÕES GERAIS
======================= */
section {
  padding: 7rem 4rem;
}

section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.8rem;
  color: var(--dark);
  font-weight: 700;
}

section h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

.section-subtitle {
  color: #4b6d8a;
  font-size: 1.05rem;
  max-width: 760px;
  margin: 0.8rem auto 3rem;
  line-height: 1.9;
}

/* =======================
   ABOUT
======================= */
#about {
  background: linear-gradient(180deg, #fafdff 0%, #e7f2fb 100%);
}

.about-top {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-top h2 {
  margin-bottom: 1rem;
}

.about-description {
  max-width: 760px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #32435a;
  font-weight: 500;
}

.mission-vision-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-item {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(31,181,169,0.16);
  box-shadow: 0 20px 45px rgba(31, 101, 120, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(31, 181, 169, 0.18);
}

.mv-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(31,181,169,0.15);
  color: #0f5167;
  margin-bottom: 1.25rem;
}

.mv-item h3 {
  color: #0f2a4a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.mv-item p {
  color: #556b82;
  font-size: 0.98rem;
  line-height: 1.85;
}


/* =======================
   CEO
======================= */
.ceo {
  position: relative;
  background: linear-gradient(180deg, #061222 0%, #0c2538 100%);
  padding: 6rem 2rem 4.5rem;
  overflow: hidden;
}

.ceo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(29,177,170,0.18), transparent 24%),
              radial-gradient(circle at bottom right, rgba(31,181,169,0.10), transparent 20%);
  pointer-events: none;
}

.ceo-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.ceo-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  background: rgba(29,177,170,0.12);
  border: 1px solid rgba(29,177,170,0.22);
  color: #8be3dd;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ceo-header h2 {
  margin: 1.4rem auto 0;
  color: #f8fdff;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.05;
  max-width: 760px;
}

.ceo-header-copy {
  margin: 1.25rem auto 0;
  max-width: 680px;
  color: #d4e9ef;
  font-size: 1.05rem;
  line-height: 1.85;
}

.ceo-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(400px, 58%);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.ceo-photo {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: stretch;
  min-height: auto;
  position: static;
  top: auto;
  align-self: start;
}

.ceo-video-block {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  justify-self: stretch;
}

.ceo-video-heading {
  display: grid;
  gap: 0.55rem;
}

.ceo-video-heading h4 {
  margin: 0;
  color: #f4fbff;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}

.ceo-video-heading h4::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: block;
  margin: 0.8rem 0 0;
  border-radius: 10px;
}

.ceo-video-heading p {
  margin: 0;
  color: #c8e8ef;
  font-size: 1rem;
  line-height: 1.75;
}

.ceo-video-player {
  width: 100%;
  border-radius: 28px;
  min-height: 440px;
  max-height: 560px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.ceo-photo-frame {
  width: 100%;
  max-width: none;
  border-radius: 32px;
  overflow: hidden;
  background: #0c1d2f;
  border: 1px solid rgba(29,177,170,0.16);
  box-shadow: 0 30px 75px rgba(0,0,0,0.22);
}

.ceo-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ceo-photo img:hover {
  transform: scale(1.02);
}

.ceo-card {
  position: relative;
  display: grid;
  gap: 1.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 2.6rem;
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}

.ceo-card-head {
  display: grid;
  gap: 1rem;
}

.ceo-role-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: #0f3b4c;
  color: #8be3dd;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(29,177,170,0.18);
}

.ceo-card-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  line-height: 1.05;
}

.ceo-card-intro {
  margin: 0;
  color: #d8eef4;
  font-size: 1rem;
  line-height: 1.8;
}

.ceo-card-body {
  display: grid;
  gap: 1rem;
}

.ceo-card-body p {
  margin: 0;
  color: #d8eef4;
  font-size: 1.03rem;
  line-height: 1.9;
}

.ceo-note {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid #1db1aa;
  border-radius: 18px;
  background: rgba(29,177,170,0.08);
  color: #e6fbff;
}

.ceo-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 1.4rem 1.2rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(29,177,170,0.08);
}

.stat-number {
  display: block;
  color: #a7f3e1;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  color: #c9eaf0;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ceo-qualifications {
  display: grid;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 1.8rem;
}

.ceo-qualifications h4 {
  margin: 0 0 1rem;
  color: #f4fbff;
  font-size: 1rem;
  font-weight: 700;
}

.cert-list {
  display: grid;
  gap: 0.85rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.cert-badge i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(29,177,170,0.2);
  color: #b0f6ea;
  font-size: 1rem;
}

.cert-badge span {
  color: #ecfbff;
  font-size: 0.95rem;
}

.ceo-cta {
  display: flex;
  justify-content: center;
}

.ceo-button {
  margin: 0;
}

@media (max-width: 1024px) {
  .ceo-wrapper {
    grid-template-columns: 1fr;
  }

  .ceo-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ceo {
    padding: 4.5rem 1.5rem 3rem;
  }

  .ceo-header h2 {
    font-size: 2.25rem;
  }

  .ceo-header-copy {
    font-size: 1rem;
  }

  .ceo-wrapper {
    gap: 1.5rem;
  }

  .ceo-photo {
    min-height: auto;
  }

  .ceo-card {
    padding: 2rem;
  }

  .ceo-metrics-grid {
    grid-template-columns: 1fr;
  }

  .cert-badge {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =======================
   VÍDEO DEPOIMENTO
======================= */
.video-depoimento {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  padding: 6rem 4rem;
}

.video-depoimento-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.video-depoimento-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}

.video-depoimento-header h2 {
  color: var(--dark);
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.video-depoimento-header p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
}

.video-depoimento-player {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,253,255,0.95));
  border: 1px solid rgba(31,181,169,0.18);
  box-shadow: 0 30px 80px rgba(31,181,169,0.12);
  overflow: hidden;
  padding: 1.2rem;
}

.video-depoimento-player::before,
.video-depoimento-player::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 120px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(31,181,169,0.9), rgba(31,181,169,0.15));
}

.video-depoimento-player::before {
  left: -22px;
  top: 20%;
}

.video-depoimento-player::after {
  right: -22px;
  bottom: 20%;
}

.video-depoimento-player video {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;
  background: #000;
}

.ceo-text h3 {
  color: #0f1f3d;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.ceo-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000000;
}
/* =======================
   TEXTO = ALTURA DA FOTO
======================= */
.ceo-photo img {
  height: 520px;
  object-fit: cover;
}

.ceo-text {
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== Assinatura CEO (branca) ===== */
.ceo-name {
  color: #ffffff;
}

.ceo-role {
  color: rgba(255,255,255,0.75);
}

.ceo-line {
  background: rgba(255,255,255,0.6);
}
/* VÍDEO */
.ceo-video {
  width: 320px;          /* largura controlada */
  height: 520px;         /* altura menor */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  background: #000;
}

.ceo-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* corta sem distorcer */
  border-radius: 18px;
}

/* =======================
   SERVICES
======================= */
.services {
  background: linear-gradient(180deg, #06132d 0%, #091d34 100%);
  padding: 8rem 4rem;
}

.services h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #eef7ff;
  font-weight: 700;
}

.section-subtitle {
  color: #a9ddee;
}

.service-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(31,181,169,0.14);
}

.service-card h3 {
  color: #081f31;
}

.service-card p {
  color: #53647a;
}

.service-link {
  color: #0f668d;
}

.service-card:nth-child(odd) {
  background: rgba(255,255,255,0.98);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  flex: 1 1 300px;
  max-width: 350px;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  animation: slideInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(31,181,169,0.15);
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff, #f0fffe);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 25px rgba(31,181,169,0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 35px rgba(31,181,169,0.4);
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--dark);
  font-weight: 700;
  margin: 0;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.service-link:hover {
  gap: 0.8rem;
  color: var(--primary-dark);
}

/* =======================
   REVIEWS/DEPOIMENTOS
======================= */
.reviews {
  background: linear-gradient(135deg, #e9f4ff, #f9fcff);
  padding: 8rem 4rem;
}

.reviews h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #0f2a4a;
}

.review-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto 1.75rem;
}

.review-track {
  position: relative;
  min-height: 320px;
}

.review-card {
  background: linear-gradient(180deg, #ffffff, #eef8ff);
  padding: 2.4rem;
  border-radius: 28px;
  box-shadow: 0 28px 76px rgba(20,79,126,0.12);
  border: 1px solid rgba(31,181,169,0.18);
  transition: all 0.35s ease;
  text-align: left;
  display: grid;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  visibility: visible;
  pointer-events: auto;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(20,79,126,0.18);
  border-color: rgba(31,181,169,0.3);
}

.review-text {
  font-size: 1rem;
  line-height: 1.95;
  color: #344054;
  font-style: normal;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(31,181,169,0.14);
}

.author-name {
  font-weight: 700;
  color: #102141;
}

.author-role {
  color: #0f80a8;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.review-stars i {
  color: #ffc107;
  font-size: 1.2rem;
}

.review-nav {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15,47,76,0.95);
  border: 1px solid rgba(31,181,169,0.25);
  color: #a8f6ff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
  cursor: pointer;
}

.review-nav:hover {
  transform: translateY(-2px);
  background: rgba(31,181,169,0.14);
  border-color: rgba(31,181,169,0.45);
  color: #fff;
}

.review-nav i {
  font-size: 1.05rem;
}

.review-indicators {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto;
  max-width: 1140px;
}

.review-indicator {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(31,181,169,0.22);
  border: 1px solid rgba(31,181,169,0.35);
  transition: all 0.25s ease;
  cursor: pointer;
}

.review-indicator.active {
  width: 42px;
  background: rgba(31,181,169,0.95);
  border-color: rgba(31,181,169,0.95);
}

@media (max-width: 900px) {
  .review-carousel {
    grid-template-columns: 1fr;
  }

  .review-nav {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 720px) {
  .reviews {
    padding: 6rem 2rem;
  }

  .review-card {
    padding: 2rem;
  }

  .review-indicators {
    flex-wrap: wrap;
  }
}

/* =======================
   CONTACT
======================= */
.contact {
  background: linear-gradient(135deg, #06132d, #0c2446);
  color: #fff;
  padding: 8rem 4rem;
}

.contact h2 {
  color: #eef7ff;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.contact-info h3,
.contact-info p,
.info-item,
.whatsapp-btn {
  color: #f2fbff;
}

.contact-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.contact-form button {
  background: linear-gradient(135deg, #23c1d5, #1487b2);
}

.whatsapp-btn {
  background: #14a2cf;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.contact-subtitle {
  color: rgba(242, 251, 255, 0.9);
  max-width: 820px;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0 auto;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  justify-items: center;
}

.action-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 2.4rem;
  border-radius: 28px;
  backdrop-filter: blur(20px);
  min-height: 320px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.action-copy {
  color: rgba(242, 251, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1rem;
}

.contact-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mailto-button {
  background: linear-gradient(135deg, #4fc3f7, #1e88e5);
  box-shadow: 0 20px 40px rgba(30, 136, 229, 0.28);
}

.whatsapp-card-button {
  background: linear-gradient(135deg, #25d366, #16a34a);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
}

.contact-action-button svg {
  flex-shrink: 0;
  color: #fff;
}

.contact-action-button:hover,
.contact-action-button:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.18);
}

.mailto-button:hover,
.mailto-button:focus-visible {
  background: linear-gradient(135deg, #56ccf2, #1073c8);
}

.whatsapp-card-button:hover,
.whatsapp-card-button:focus-visible {
  background: linear-gradient(135deg, #2ddc78, #14a34d);
}

.contact-action-button:focus-visible {
  outline: 3px solid rgba(255,255,255,0.28);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .contact-container {
    padding: 0 1.5rem;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .action-card {
    min-height: auto;
  }
}

.info-item {
  margin-bottom: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  background: #25D366;
  padding: 1rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 0.95rem;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background: rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(31,181,169,0.3);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.action-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 2rem;
  border-radius: 24px;
  backdrop-filter: blur(18px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.action-copy {
  color: rgba(242, 251, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1rem;
}

.contact-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1.2rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mailto-button {
  background: linear-gradient(135deg, #4fc3f7, #1e88e5);
  box-shadow: 0 18px 35px rgba(30, 136, 229, 0.22);
}

.whatsapp-card-button {
  background: linear-gradient(135deg, #25d366, #1ebd5f);
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.22);
}

.contact-action-button svg {
  flex-shrink: 0;
  color: #fff;
}

.contact-action-button:hover,
.contact-action-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.mailto-button:hover,
.mailto-button:focus-visible {
  background: linear-gradient(135deg, #56ccf2, #1073c8);
}

.whatsapp-card-button:hover,
.whatsapp-card-button:focus-visible {
  background: linear-gradient(135deg, #2ddc78, #17a656);
}

.contact-action-button:focus-visible {
  outline: 3px solid rgba(255,255,255,0.3);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .mailto-card {
    min-height: auto;
    padding: 1.8rem;
  }
}

@media (prefers-color-scheme: dark) {
  .mailto-button {
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    box-shadow: 0 18px 35px rgba(8, 61, 135, 0.32);
  }

  .mailto-button:hover {
    background: linear-gradient(135deg, #2196f3, #1565c0);
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.1rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid var(--primary);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 15px rgba(31,181,169,0.3);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 1.1rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(31,181,169,0.3);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(31,181,169,0.4);
}

/* =======================
   FOOTER
======================= */
.footer {
  background: #0a1322;
  color: #fff;
  text-align: center;
  padding: 2.5rem 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(31,181,169,0.2);
}

.footer p {
  opacity: 0.8;
}
/* ==========================
   ABOUT - DESIGN PROFISSIONAL
========================== */

.mission-vision-values {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* CARD */
.mv-item {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.05),
    0 1px 2px rgba(0,0,0,0.04);
  opacity: 0;
  animation: slideInUp 0.6s ease-out forwards;
}

.mv-item:nth-child(1) { animation-delay: 0.1s; }
.mv-item:nth-child(2) { animation-delay: 0.2s; }
.mv-item:nth-child(3) { animation-delay: 0.3s; }

/* Linha superior elegante */
.mv-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transition: all 0.5s ease;
}

.mv-item:hover {
  transform: translateY(-15px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.12),
    0 5px 15px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.mv-item:hover::before {
  width: 100px;
}

/* Ícone dentro de círculo */
.mv-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 12px 30px rgba(31,181,169,0.35);
  transition: all 0.4s ease;
}

.mv-item:hover .mv-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 18px 45px rgba(31,181,169,0.45);
}

/* Título */
.mv-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Texto */
.mv-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}

.nrs-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  background: #f8fafb;
}

.nrs-section .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.nrs-section .section-header h2 {
  font-size: clamp(2.2rem, 2.4vw, 3rem);
  margin-bottom: 0.85rem;
  color: #102a43;
}

.nrs-section .section-header .section-subtitle {
  font-size: 1rem;
  color: #4b5b65;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.nr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto 2rem;
}

.nr-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(16,42,67,0.12);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(16,42,67,0.06);
  color: #102a43;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nr-card:hover,
.nr-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(29,177,170,0.22);
  box-shadow: 0 20px 48px rgba(16,42,67,0.1);
}

.nr-card.active {
  background: #eafdf9;
  border-color: #1db1aa;
}

.nr-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f4a44;
}

.nr-card-subtitle {
  font-size: 1.05rem;
  line-height: 1.45;
  color: #102a43;
}

.nr-details {
  max-width: 1040px;
  margin: 0 auto;
}

.nr-details-panel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(16,42,67,0.08);
  border-radius: 32px;
  padding: 0;
  opacity: 0;
  max-height: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease, padding 0.45s ease;
}

.nr-details-panel.active {
  opacity: 1;
  max-height: 1400px;
  transform: translateY(0);
  padding: 2.5rem;
}

.nr-details-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: rgba(29,177,170,0.04);
  pointer-events: none;
}

.nr-details-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.nr-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #1db1aa;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nr-details-head h3 {
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  color: #102a43;
  margin: 0;
}

.nr-details-copy {
  margin: 0;
  padding: 0 1rem 0 0;
  color: #4b5b65;
  line-height: 1.85;
  font-size: 1rem;
}

.nr-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.8rem 0 2rem;
}

.nr-details-block {
  background: #ffffff;
  border: 1px solid rgba(16,42,67,0.08);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 14px 30px rgba(16,42,67,0.06);
}

.nr-details-block h4 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #102a43;
}

.nr-details-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.nr-details-block li {
  position: relative;
  padding-left: 1.4rem;
  color: #4b5b65;
  line-height: 1.7;
}

.nr-details-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #1db1aa;
}

.nr-details-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  background: #1db1aa;
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  margin: 0 auto;
}

.nr-details-action:hover,
.nr-details-action:focus-visible {
  background: #14817b;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(29,177,170,0.18);
}

@media (max-width: 1024px) {
  .nr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nrs-section {
    padding: 3rem 1.25rem;
  }

  .nr-grid {
    grid-template-columns: 1fr;
  }

  .nr-details-grid {
    grid-template-columns: 1fr;
  }

  .nr-details-panel {
    padding: 1.8rem 0;
  }

  .nr-details-head {
    gap: 0.75rem;
  }

  .nr-details-copy {
    padding-right: 0;
  }
}
/* =======================
   RESPONSIVO
======================= */

/* Tablets e abaixo */
@media (max-width: 1200px) {
  .ceo-content {
    gap: 2rem;
  }

  .service-list {
    gap: 2rem;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .header {
    padding: 1rem 2rem;
  }

  .nav {
    gap: 1.5rem;
  }

  .nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

  section {
    padding: 5rem 2rem;
  }

  .hero {
    padding: 0 3%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-quickstats {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .contact-container {
    gap: 3rem;
  }

  .ceo-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ceo-photo {
    min-height: auto;
  }

  .ceo-photo img {
    max-width: 100%;
    height: auto;
  }

  .ceo-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile Grande (600px+) */
@media (max-width: 900px) {
  .header {
    padding: 0.8rem 1.5rem;
  }

  .logo img {
    height: 50px;
  }

  .nav ul {
    display: none;
  }

  section h2 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 0.98rem;
    margin-bottom: 2rem;
  }

  .hero-grid {
    display: block;
  }

  .hero-quickstats {
    grid-template-columns: 1fr;
  }

  .service-list {
    gap: 1.5rem;
  }

  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ceo-content {
    flex-direction: column;
    gap: 2rem;
  }

  .ceo-photo {
    max-width: 100%;
  }

  .ceo-photo img {
    height: 300px;
  }

  .ceo-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ceo-info {
    max-width: 100%;
  }

  .ceo-video {
    max-width: 100%;
    height: 300px;
  }

  /* CEO - novo layout responsivo */
  .ceo-wrapper {
    grid-template-columns: 1fr;
  }

  .ceo-photo {
    position: static;
    min-height: auto;
  }

  .ceo-photo img {
    max-width: 100%;
    height: auto;
  }

  .ceo-video {
    position: static;
    width: 100%;
    height: 300px;
    margin-top: 2rem;
  }

  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mission-vision-values {
    gap: 1.5rem;
  }

  .mv-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 2rem;
  }

  .mv-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .mv-item h3 {
    font-size: 1.2rem;
  }

  .nrs-section {
    padding: 3rem 1.5rem;
  }

  .nr-carousel {
    grid-template-columns: 1fr;
  }

  .nr-buttons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .nr-summary-grid {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
  }

  .nr-button {
    min-height: 92px;
    width: 100%;
    font-size: 0.88rem;
    padding: 0.95rem 1rem;
  }

  .nr-panel {
    padding: 1.8rem;
  }
}

/* Mobile Pequeno (max 600px) */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .header {
    padding: 0.6rem 1rem;
  }

  .logo img {
    height: 45px;
  }

  .btn-reservation {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .ceo h2 {
    margin-bottom: 2rem;
  }

  .ceo-wrapper {
    grid-template-columns: 1fr;
    position: relative;
    gap: 2rem;
  }

  .ceo-photo {
    position: static;
    max-width: 100%;
  }

  .ceo-photo img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }

  .ceo-middle {
    gap: 1.5rem;
  }

  .ceo-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .ceo-text {
    padding: 1.5rem;
  }

  .ceo-text h3 {
    font-size: 1.2rem;
  }

  .ceo-text p {
    font-size: 0.95rem;
  }

  .ceo-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .ceo-certifications {
    padding: 1.5rem;
  }

  .ceo-certifications h4 {
    font-size: 0.95rem;
  }

  .cert-badge {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .ceo-video {
    position: static;
    width: 100%;
    height: 280px;
    margin-top: 1.5rem;
  }

  .hero {
    height: 80vh;
    padding: 0 2%;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .about-description {
    font-size: 1rem;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .nrs-section {
    padding: 2.5rem 1.25rem;
  }

  .nr-carousel {
    grid-template-columns: 1fr;
  }

  .nr-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .nr-button {
    min-width: auto;
    width: 100%;
    height: auto;
    font-size: 0.82rem;
    padding: 0.95rem 1rem;
  }

  .nr-panel {
    padding: 1.4rem;
  }
}

/* Mobile Muito Pequeno (max 480px) */
@media (max-width: 480px) {
  .header {
    padding: 0.5rem 0.8rem;
  }

  .logo img {
    height: 40px;
  }

  .hero {
    height: 70vh;
    padding: 0 1%;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .hero-buttons {
    gap: 0.6rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  .mission-vision-values {
    gap: 1rem;
  }

  .mv-item {
    padding: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .contact-form button {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .ceo-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ceo-photo img {
    height: 250px;
  }

  .ceo-video {
    height: 220px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .ceo-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .stat-item {
    padding: 0.8rem;
  }
}

