/* ============================================================
   SEARCON × DAIKIN — Landing Page Premium
   Paleta: Azul Escuro #1e3ea7 | Azul Médio #0f3c68 | 
           Azul Claro #1a5a9e | Laranja #ff7a00 | Branco #fff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #f8f9fc;
  line-height: 1.6;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === UTILITIES === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff7a00;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: #ff7a00;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1e3ea7;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #5a6070;
  max-width: 640px;
  line-height: 1.7;
}

/* === HEADER / TOPBAR === */
.topbar {
  background: #1e3ea7;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-certs {
  display: flex;
  gap: 16px;
  align-items: center;
}

.topbar-certs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .1);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
}

header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .04);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

header.header-scrolled {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
}

.logo-daikin {
  height: 38px;
  object-fit: contain;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: #ddd;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-badge span:first-child {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ff7a00;
}

.logo-badge span:last-child {
  font-size: 14px;
  font-weight: 800;
  color: #1e3ea7;
  letter-spacing: -0.3px;
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0f3c68;
  font-size: 15px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
  line-height: 1;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.btn-primary {
  background: #007dc6;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 125, 198, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #0f3c68;
  border: 2px solid #0f3c68;
}

.btn-outline:hover {
  background: #0f3c68;
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, .45);
}

/* === HERO === */
.hero {
  background: url('assets/imgs/header_bg.webp') center/cover no-repeat, #1e3ea7;
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 122, 0, .12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 90, 158, .3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 20px;
  animation: fadeSlideUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 0, .15);
  border: 1px solid rgba(255, 122, 0, .3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ffb366;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  display: inline-block;
  padding: 1px 3px;
  background: #FFFFFF;
  color: #007dc6;
  border-radius: 5px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #ff7a00;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(16px);
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.hero-card-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.6;
}

.hero-card-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-card-badges span {
  background: rgba(255, 255, 255, .1);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
}

/* === TRUST BAR === */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  padding: 40px 0;
  overflow: hidden;
}

.trust-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 80px;
  padding-right: 80px;
  width: max-content;
  flex-shrink: 0;
  animation: scrollTrust 35s linear infinite;
}

/* Pausa todas as colunas ao fazer hover no marquee-geral */
.trust-marquee:hover .trust-group {
  animation-play-state: paused;
}

@keyframes scrollTrust {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(60%);
  transition: all 0.3s ease;
}

.trust-logo img:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

/* === SERVICES === */
.services {
  padding: 100px 0;
  background: #f8f9fc;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  padding-bottom: 46px;
  /* Extra padding to clear the arrow */
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3ea7, #007dc6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  border-radius: 16px 16px 0 0;
}

.service-card:hover,
.service-card.selected {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(15, 60, 104, .1);
  border-color: transparent;
}

.service-card:hover::before,
.service-card.selected::before {
  transform: scaleX(1);
}

.service-card-arrow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #007dc6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 125, 198, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.service-card-arrow i {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-arrow {
  background: #0f3c68;
}

.service-card.selected .service-card-arrow {
  background: #ff7a00;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.service-card.selected .service-card-arrow i {
  transform: rotate(180deg);
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

#servico-vrv:not(.selected) .service-card-arrow {
  animation: bounceArrow 1.5s infinite ease-in-out;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(15, 60, 104, .08), rgba(26, 90, 158, .08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #0f3c68, #1a5a9e);
  transform: scale(1.05);
  color: #FFFFFF;
}

.service-card:hover .service-icon span {
  filter: brightness(5);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1e3ea7;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #ff7a00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === INFO SERVICES === */
.info-services {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-services.active {
  grid-template-rows: 1fr;
}

.info-services-wrapper {
  overflow: hidden;
}

.info-services-inner {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-img-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.info-img-wrapper:hover .info-img {
  transform: scale(1.03);
}

.info-content .section-subtitle {
  margin-bottom: 32px;
}

@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === VRV / VRF SECTION === */
.vrv-section {
  padding: 100px 0;
  background: #fff;
}

.vrv-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
}

.vrv-content .section-subtitle {
  margin-bottom: 36px;
}

.vrv-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.vrv-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vrv-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(15, 60, 104, .08), rgba(26, 90, 158, .08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.vrv-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e3ea7;
  margin-bottom: 4px;
}

.vrv-feature p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.vrv-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vrv-info-card {
  background: #fafbfe;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.vrv-card-header {
  background: linear-gradient(135deg, #1e3ea7, #0f3c68);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.vrv-daikin-logo {
  height: 32px;
  filter: brightness(5);
}

.vrv-card-header span {
  font-size: 16px;
  font-weight: 700;
}

.vrv-card-body {
  padding: 32px;
}

.vrv-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3ea7;
  margin-bottom: 16px;
}

.vrv-ideal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.vrv-ideal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: all 0.2s ease;
}

.vrv-ideal-list li:hover {
  border-color: #007dc6;
  transform: translateX(4px);
}

.vrv-card-highlight {
  background: linear-gradient(135deg, rgba(255, 122, 0, .08), rgba(255, 170, 68, .08));
  border: 1px solid rgba(255, 122, 0, .15);
  border-radius: 12px;
  padding: 20px;
}

.vrv-card-highlight strong {
  display: block;
  font-size: 15px;
  color: #1e3ea7;
  margin-bottom: 6px;
}

.vrv-card-highlight p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* === PROCESS / TIMELINE === */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3ea7 0%, #0f3c68 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.process-graph-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process.graph-visible .process-graph-bg {
  clip-path: inset(0 0 0 0);
}

.process-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {

  .process-graph-bg,
  .process-glass-overlay {
    display: none !important;
  }
}

.process .container {
  position: relative;
  z-index: 2;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header .section-label {
  color: #ffb366;
}

.process-header .section-label::before {
  background: #ffb366;
}

.process-header .section-title {
  color: #fff;
}

.process-header .section-subtitle {
  color: rgba(255, 255, 255, .65);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #007dc6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(0, 125, 198, .4);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(0, 125, 198, .25);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

/* === WHY SEARCON === */
.why-us {
  padding: 100px 0;
  background: #fff;
}

.why-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-us-header .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fafbfe;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(15, 60, 104, .15);
  box-shadow: 0 12px 40px rgba(15, 60, 104, .07);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: #1e3ea7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3ea7;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* === SEGMENTS === */
.segments {
  padding: 100px 0;
  background: #f8f9fc;
}

.segments-header {
  text-align: center;
  margin-bottom: 60px;
}

.segments-header .section-subtitle {
  margin: 0 auto;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.segment-item {
  background: #fff;
  border-radius: 14px;
  padding: 32px 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all 0.3s ease;
}

.segment-item:hover {
  border-color: #007dc6;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 122, 0, .1);
}

.segment-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.segment-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e3ea7;
}

/* === CTA / FORM SECTION === */
.cta-section {
  padding: 100px 0;
  background: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: #1e3ea7;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  color: #5a6070;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #333;
}

.cta-benefit-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, rgba(37, 211, 102, .1), rgba(37, 211, 102, .2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .05);
}

.form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3ea7;
  margin-bottom: 8px;
}

.form-card>p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a2e;
  background: #fafbfe;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a5a9e;
  box-shadow: 0 0 0 3px rgba(26, 90, 158, .1);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: #007dc6;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 125, 198, .2);
}

.form-submit:hover {
  transform: translateY(-2px);
}

.form-status {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  min-height: 24px;
}

.form-status.success {
  color: #25d366;
}

.form-status.error {
  color: #ef4444;
}

.form-status.loading {
  color: #1a5a9e;
}

/* === FOOTER === */
.footer {
  background: #1e3ea7;
  color: rgba(255, 255, 255, .8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
  margin-top: 16px;
  max-width: 320px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #ff7a00;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.footer-contact li span:first-child {
  font-size: 16px;
  min-width: 20px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #007dc6;
  transform: translateY(-2px);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  animation: wpp-jump 5s infinite;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .5);
}

.whatsapp-float .wpp-icon {
  font-size: 22px;
}

@keyframes wpp-jump {

  0%,
  12%,
  100% {
    transform: translateY(0);
  }

  6% {
    transform: translateY(-20px);
  }
}

/* === ANIMATIONS === */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(.4, 0, .2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SOCIAL & WPP SVG ICONS === */
.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-social a:hover .social-icon {
  filter: brightness(0) invert(1);
}

.wpp-svg {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.topbar-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}

.hero-btn-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vrv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vrv-info-card {
    position: static;
  }
}

@media (max-width: 768px) {

  /* Carousel / Trust Bar overrides */
  .trust-group {
    gap: 0;
    padding-right: 0;
  }

  .trust-logo img {
    height: 36px;
  }

  /* Header mobile fixes */
  .header-inner {
    padding: 10px 0;
    gap: 8px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    height: 28px;
  }

  .logo-daikin {
    height: 24px !important;
  }

  .logo-divider {
    height: 22px;
  }

  .header-cta .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 640px) {

  /* Carousel overrides */
  .trust-group {
    gap: 0;
    padding-right: 0;
  }

  .trust-logo img {
    height: 28px;
  }

  .topbar {
    display: none;
  }

  /* Header mobile — compact */
  .header-inner {
    padding: 8px 0;
  }

  .logo img {
    height: 24px;
  }

  .logo-daikin {
    height: 20px !important;
  }

  .logo-divider {
    height: 18px;
  }

  .logo {
    gap: 6px;
  }

  .header-cta .btn {
    padding: 8px 14px;
    font-size: 11px;
    border-radius: 6px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat strong {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    word-break: break-word;
  }

  .cf-turnstile {
    transform: scale(0.85);
    transform-origin: left center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .vrv-cta {
    flex-direction: column;
  }

  .vrv-cta .btn {
    text-align: center;
  }

  .whatsapp-float a span:not(.wpp-icon) {
    display: none;
  }

  .whatsapp-float a {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 20px;
  width: calc(100% - 48px);
  max-width: 380px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cookie-icon {
  font-size: 24px;
  line-height: 1;
}

.cookie-content p {
  font-size: 13px;
  color: #5a6070;
  line-height: 1.5;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
}

.btn-cookie-accept {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border-radius: 20px 20px 0 0;
    padding: 24px 20px;
  }
}

/* === DAIKIN TRAINING === */
.daikin-training {
  padding: 100px 0;
  background: #fff;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.training-content .section-subtitle {
  margin-top: 16px;
  color: #1e3ea7;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.5;
}

.training-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .training-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === FAQ === */
.faq-section {
  padding: 100px 0;
  background: #fff;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fafbfe;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 125, 198, .2);
  box-shadow: 0 4px 20px rgba(15, 60, 104, .06);
}

.faq-item.active {
  border-color: rgba(0, 125, 198, .3);
  box-shadow: 0 8px 30px rgba(15, 60, 104, .08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #1e3ea7;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #007dc6;
}

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: #007dc6;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: #5a6070;
  line-height: 1.7;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}