@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');


:root{
  --font-family-Baloo2-sans-serif: "Baloo 2", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;  
  --primary-color: #007b94;
  --segundary-color: #006181;
  --thrist-color: #BB0808;
  --four-color:#0079C6;
  --five-color: #1D6A74;
  --six-color: #2C9FAF;
  --seven-color: #2C9FAF;
  --eigth-color:#1780a6;
  --nine-color:#E8E8F0;
  --teen-color:#3b8af2;
  --grey: #96B5D1;
  --white: #fff;
            --bg: #0b1220;
      --card: #0f172a;
      --card-2: #0b132a;
      --text: #e5e7eb;
      --muted: #94a3b8;
      --primary: #3b82f6; /* Azul principal */
      --primary-600: #2563eb;
      --accent: #22d3ee;
      --ring: rgba(59, 130, 246, .45);
      --success: #22c55e;
      --warning: #f59e0b;
      --danger: #ef4444;
      --radius: 18px;
      --radius-sm: 14px;
      --shadow: 0 8px 24px rgba(2, 6, 23, .45);
      --shadow-soft: 0 10px 30px rgba(2, 6, 23, .35);
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);



            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --gradient: linear-gradient(135deg, #2563eb, #1e40af);
            --gradient-hover: linear-gradient(135deg, #1e40af, #1e3a8a);
            /* --accent: #f59e0b; */


            --light-blue: #dbeafe;
    /* Extended Palette */
    --surface: hsl(0, 0%, 100%);
    --surface-alt: hsl(215, 20%, 98%);
    --border: hsl(215, 15%, 90%);
    --border-light: hsl(215, 10%, 95%);
    --text: hsl(215, 25%, 25%);
    --text-muted: hsl(215, 15%, 50%);
    --text-light: hsl(215, 10%, 70%);





            --gradient-primary:linear-gradient(135deg, #06c4f9, #1e90ff);

            --azul-marinho: #0a2463;
            --azul-real: #1e6fba;
            --azul-turquesa: #00ccff;
            --azul-ceu: #87ceeb;
            --azul-noite: #051e3e;
            --branco: #ffffff;
            --cinza-perola: #f8f9fa;
            --cinza-ardosia: #495057;
            --gradiente-oceano: linear-gradient(135deg, #0052d4 0%, #4364f7 50%, #6fb1fc 100%);
            --gradiente-profundo: linear-gradient(135deg, #051e3e 0%, #1e3a8a 50%, #3b82f6 100%);
            --sombra-suave: 0 15px 35px rgba(0, 82, 212, 0.1);
            --sombra-destaque: 0 25px 50px rgba(0, 204, 255, 0.2);
            --vidro-bg: rgba(255, 255, 255, 0.08);
            --vidro-borda: rgba(255, 255, 255, 0.15);

    /* That´s a new type */
    --gray-light: #f8fafc;

  
}


/* Global Colors */
:root {
  /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
  --background-color: #ffffff;

  /* Default Color - This is the default color used for the majority of the text content. */
  --default-color: #444444;

  /* Heading Color - This color is used for titles, headings and secondary elements. */
  --heading-color: #37423b;

  /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
  --accent-color: #5fb1cf;
  /* --accent-color: #5fcf80; */

  /* Contrast Color - This is a color used for text when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors. */
  --contrast-color: #ffffff;

 --body-color: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Baloo 2", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--body-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--white);
}

a:hover {
  color: var(--white);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baloo 2", sans-serif;
}



/*--------------------------------------------------------------
#   GERAL ANIMATED START
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#   Header Animated 
--------------------------------------------------------------*/
/*  */
  .animate-bounce { animation: bounce 1.8s infinite; }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
/*--------------------------------------------------------------
#   Header Animated
--------------------------------------------------------------*/
/*  */


/*--------------------------------------------------------------
# Partículas Animadas
--------------------------------------------------------------*/
/*  */
#particles-js {
position: absolute; 
top: 0; 
left: 0; 
width: 100%;
 height: 100%; 
 z-index: 0;
}
/*--------------------------------------------------------------
# Partículas Animadas
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

  /* ===== LOADING INICIAL ===== */
  .initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:linear-gradient(90deg, #005b96, #003f5c);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
  }
  
  .loader-content {
    text-align: center;
  }
  
  .loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #f8f9fa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  
  .loader-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    background: #f8f9fa;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Esconder loader quando página carregada */
  .loaded .initial-loader {
    opacity: 0;
    pointer-events: none;
  }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Back to top button // Scroll-ball
--------------------------------------------------------------*/


.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0079C6, #00AEEF);
  border-radius: 30%;
  box-shadow: 0 8px 20px rgba(0, 121, 198, 0.4),
              0 0 15px rgba(0, 174, 239, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;
  cursor: pointer;
  pointer-events: auto;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(.2,.9,.3,1);
}

/* Ícone dentro do botão */
.back-to-top i {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover: efeito moderno */
.back-to-top:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 14px 34px rgba(0, 121, 198, 0.5),
              0 0 25px rgba(0, 174, 239, 0.4);
  background: linear-gradient(135deg, #00AEEF, #0079C6);
}

/* Botão visível */
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: float 2.5s ease-in-out infinite;
}

/* Animação flutuante contínua */
@keyframes float {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-6px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

/* ================================================================
  --------------RESPONSIVIDADE DO BOTÃO BACK TO TOP ---------------
 ================================================================== */

/* Monitores grandes (acima de 1025px) */
@media (min-width: 1025px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
    font-size: 22px;
  }
}

/* Telas até 1024px (notebooks e tablets em paisagem) */
@media (max-width: 1024px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    right: 18px;
    bottom: 18px;
    font-size: 20px;
  }
}

/* Tablets e dispositivos médios (até 767px) */
@media (max-width: 767px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    right: 16px;
    bottom: 16px;
    font-size: 19px;
    box-shadow: 0 6px 14px rgba(0, 121, 198, 0.35);
  }
}

/* Smartphones padrão (até 480px) */
@media (max-width: 480px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 14px;
    font-size: 18px;
    border-radius: 35%;
    box-shadow: 0 5px 12px rgba(0, 121, 198, 0.3);
  }

  .back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
  }
}

/* Smartphones modernos (até 390px) */
@media (max-width: 390px) {
  .back-to-top {
    width: 38px;
    height: 38px;
    right: 13px;
    bottom: 13px;
    font-size: 17.5px;
    border-radius: 38%;
    box-shadow: 0 4px 10px rgba(0, 121, 198, 0.28);
  }

  .back-to-top:hover {
    transform: translateY(-3px) scale(1.06);
  }
}

/* Smartphones pequenos (até 360px) */
@media (max-width: 360px) {
  .back-to-top {
    width: 36px;
    height: 36px;
    right: 12px;
    bottom: 12px;
    font-size: 17px;
    border-radius: 40%;
  }

  .back-to-top.active {
    animation: float 3s ease-in-out infinite;
  }
}


/*--------------------------------------------------------------
# Back to top button / Scroll-ball ends
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Cursor Animated Section Start
--------------------------------------------------------------*/
.cursor-1{
  position: absolute;
  top:0; left:0;
  height:1rem; width:1rem;
  background: var(--four-color);
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
}

.cursor-1.active{
  height:7rem;
  width:7rem;
  opacity: .3;
}

.cursor-2{
  position: absolute;
  top:0; left:0;
  height:4rem; width:4rem;
  border:.1rem solid var(--four-color);
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10000;
  transition: .3s linear;
}

.cursor-2.active{
  display: none;
}


/* ================================================================
  --------------RESPONSIVIDADE DOS CURSORES -----------------------
 ================================================================== */

/* Telas grandes (acima de 1025px) */
@media (min-width: 1025px) {
  .cursor-1 {
    height: 1rem;
    width: 1rem;
  }

  .cursor-1.active {
    height: 7rem;
    width: 7rem;
  }

  .cursor-2 {
    height: 4rem;
    width: 4rem;
  }
}

/* Telas até 1024px (notebooks e tablets paisagem) */
@media (max-width: 1024px) {
  .cursor-1 {
    height: 0.9rem;
    width: 0.9rem;
  }

  .cursor-1.active {
    height: 6rem;
    width: 6rem;
  }

  .cursor-2 {
    height: 3.6rem;
    width: 3.6rem;
  }
}

/* Tablets e médios (até 767px) */
@media (max-width: 767px) {
  .cursor-1 {
    height: 0.8rem;
    width: 0.8rem;
  }

  .cursor-1.active {
    height: 5rem;
    width: 5rem;
  }

  .cursor-2 {
    height: 3rem;
    width: 3rem;
  }
}

/* Smartphones padrão (até 480px) */
@media (max-width: 480px) {
  .cursor-1 {
    height: 0.7rem;
    width: 0.7rem;
  }

  .cursor-1.active {
    height: 4rem;
    width: 4rem;
  }

  .cursor-2 {
    height: 2.5rem;
    width: 2.5rem;
  }
}

/* Smartphones modernos (até 390px) */
@media (max-width: 390px) {
  .cursor-1 {
    height: 0.65rem;
    width: 0.65rem;
  }

  .cursor-1.active {
    height: 3.6rem;
    width: 3.6rem;
  }

  .cursor-2 {
    height: 2.2rem;
    width: 2.2rem;
  }
}

/* Smartphones pequenos (até 360px) */
@media (max-width: 360px) {
  .cursor-1 {
    height: 0.6rem;
    width: 0.6rem;
  }

  .cursor-1.active {
    height: 3.2rem;
    width: 3.2rem;
  }

  .cursor-2 {
    height: 2rem;
    width: 2rem;
  }
}

/*--------------------------------------------------------------
# Cursor Animated Section End
--------------------------------------------------------------*/



/*--------------------------------------------------------------
#   GERAL ANIMATED END
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# TOP BAR START
--------------------------------------------------------------*/
#topbar {
  background: #003d6b;
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: #fff;
  min-height: 60px;
}

#topbar .contact-info a {
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #859fae;
}

#topbar .contact-info i {
  color: #ffffff;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #368e99;
}

/* Animação Fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


#topbar .contact-info p {
  margin-bottom: 0;
  margin-left: 5px; /* Espaço entre ícone e texto */
}

/* ================================================================
  --------------RESPONSIVIDADE DO TOPO (#topbar) -----------------
 ================================================================== */

/* Telas grandes (acima de 1025px) */
@media (min-width: 1025px) {
  #topbar {
    font-size: 15px;
    height: 60px;
    padding: 0 40px;
  }

  #topbar .contact-info i {
    margin-right: 6px;
  }

  #topbar .social-links a {
    padding: 4px 12px;
  }
}

/* Telas até 1024px (notebooks e tablets em paisagem) */
@media (max-width: 1024px) {
  #topbar {
    font-size: 14px;
    height: 55px;
    padding: 0 25px;
  }

  #topbar .social-links a {
    padding: 3px 10px;
  }
}

/* ===== Tablets e dispositivos médios (até 767px) ===== */
@media (max-width: 767px) {
  #topbar {
    font-size: 13.5px;
    height: auto;
    padding: 8px 20px;
    text-align: center;
  }

  #topbar .contact-info {
    display: block;
    margin-bottom: 5px;
  }

  #topbar .contact-info .phone-icon {
    margin-left: 10px;
  }

  #topbar .social-links {
    display: block;
  }

  #topbar .social-links a {
    padding: 4px 8px;
  }
}

/* ===== 580px ===== */
@media (max-width: 580px) {
  #topbar {
    font-size: 13px;
    padding: 6px 16px;
  }

  #topbar .contact-info {
    margin-bottom: 4px;
  }

  #topbar .social-links a {
    padding: 3px 6px;
    font-size: 13px;
  }
}

/* ===== 560px ===== */
@media (max-width: 560px) {
  #topbar {
    font-size: 12.8px;
    padding: 6px 14px;
  }

  #topbar .social-links a {
    padding: 3px 6px;
    font-size: 12.8px;
  }
}

/* ===== 520px ===== */
@media (max-width: 520px) {
  #topbar {
    font-size: 12.5px;
    padding: 5px 12px;
  }

  #topbar .contact-info .phone-icon {
    margin-left: 8px;
  }

  #topbar .social-links a {
    padding: 3px 5px;
    font-size: 12.5px;
  }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
  #topbar {
    font-size: 13px;
    height: 35px;
    min-height: 45px;
    padding: 0 10px;
  }

  #topbar .contact-info i {
    margin-right: 3px;
  }

  #topbar .contact-info .phone-icon {
    margin-left: 8px;
  }

  #topbar .social-links a {
    padding: 2px 8px;
    font-size: 13px;
  }

  #topbar .contact-info p {
    margin-left: 3px;
  }
}

/* ===== 450px ===== */
@media (max-width: 450px) {
  #topbar {
    font-size: 12px;
    height: 33px;
    min-height: 42px;
    padding: 0 8px;
  }

  #topbar .social-links a {
    padding: 2px 6px;
    font-size: 12.5px;
  }
}

/* ===== 440px ===== */
@media (max-width: 440px) {
  #topbar {
    font-size: 11px;
    height: 33px;
    min-height: 40px;
    padding: 0 8px;
  }

  #topbar .contact-info i {
    margin-right: 2.5px;
  }

  #topbar .social-links a {
    padding: 2px 6px;
    font-size: 12px;
  }
}

/* ===== 400px ===== */
@media (max-width: 400px) {
  #topbar {
    font-size: 11px;
    height: 32px;
    min-height: 40px;
    padding: 0 7px;
  }

  #topbar .contact-info i {
    margin-right: 2px;
  }

  #topbar .contact-info .phone-icon {
    margin-left: 9px;
  }

  #topbar .social-links a {
    padding: 2px 5px;
    font-size: 12px;
  }

  #topbar .contact-info p {
    margin-left: 2px;
  }
}

/* ===== 390px ===== */
@media (max-width: 390px) {
  #topbar {
    font-size: 10px;
    height: 32px;
    min-height: 40px;
    padding: 0 8px;
  }

  #topbar .contact-info i {
    margin-right: 2px;
  }

  #topbar .contact-info .phone-icon {
    margin-left: 10px;
  }

  #topbar .social-links a {
    padding: 2px 6px;
    font-size: 12px;
  }

  #topbar .contact-info p {
    margin-left: 2px;
  }
}

/* ===== 360px ===== */
@media (max-width: 360px) {
  #topbar {
    font-size: 10px;
    height: 30px;
    min-height: 38px;
    padding: 0 6px;
  }

  #topbar .contact-info i {
    margin-right: 1.5px;
  }

  #topbar .contact-info .phone-icon {
    margin-left: 8px;
  }

  #topbar .social-links a {
    padding: 1px 4px;
    font-size: 10px;
  }

  #topbar .contact-info p {
    margin-left: 1.5px;
  }
}

/* ===== 320px ===== */
@media (max-width: 320px) {
  #topbar {
    font-size: 9px;
    height: 28px;
    min-height: 36px;
    padding: 0 5px;
  }

  #topbar .contact-info i {
    margin-right: 1px;
  }

  #topbar .contact-info .phone-icon {
    margin-left: 6px;
  }

  #topbar .social-links a {
    padding: 1px 3px;
    font-size: 9px;
  }

  #topbar .contact-info p {
    margin-left: 1px;
  }
}


/*--------------------------------------------------------------
# TOP BAR ENDS
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Container Start all contant Sart
--------------------------------------------------------------*/

.container {
  max-width: 1000px; /* Ou outra largura */
  margin: 0 auto;    /* Centraliza no meio */
  padding: 0 20px;   /* Respiro nas laterais */

}
/*--------------------------------------------------------------
#  Container Start all contant Ends
--------------------------------------------------------------*/





/* --------------------------------------------------------------
   # Header Start
-------------------------------------------------------------- */

#header {
  background: linear-gradient(90deg, #005b96, #003f5c);
  transition: all 0.3s ease;
  z-index: 997;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#header .logo {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

#header .logo img {
  max-height: 50px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.scrolled-offset {
  margin-top: 70px;
}

/* Indicador de scroll */
header .scroll-indicator {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 61px;
  background: var(--gradient-primary);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 2s infinite;
}


/* ================================================================
  --------------RESPONSIVIDADE DO SCROLL INDICATOR-----------------
 ================================================================== */




/* --------------------------------------------------------------
   # Navigation Menu (Desktop)
-------------------------------------------------------------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 4px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.navbar .getstarted {
  color: #fff;
  padding: 10px 20px;
  margin-left: 20px;
  border-radius: 4px;
  border: 2px solid #fff;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar .getstarted:hover {
  background: #ffffff;
  color: #006894;
}

/* Dropdown Desktop */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  margin: 0;
  padding: 10px 0;
  background: #006894;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

/* Sub-dropdown */
.navbar .dropdown .dropdown ul {
  top: 0;
  left: 100%;
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  left: 100%;
}


/* Botão WhatsApp - Desktop */
.btn-whatsapp {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  text-decoration: none;
  color: #f9f9f9;
  white-space: nowrap;
  margin-left: 5rem;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* --------------------------------------------------------------
   # Mobile Navigation
-------------------------------------------------------------- */
.mobile-nav-toggle,
.mobile-nav-toggle-close {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: color 0.3s ease;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  header .icons {
    display: none;
  }

  .navbar-mobile {
    display: block;
  }

  .navbar-mobile .mobile-nav-toggle-close {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 350px;
  height: 100%;
  background: #005b96;
  transition: transform 0.3s ease;
  transform: translateX(100%);
  z-index: 999;
  overflow-y: auto; /* Scroll interno */
}

.navbar-mobile.show {
  transform: translateX(0);
}

.navbar-mobile .mobile-nav-toggle-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
}

.navbar-mobile ul {
  margin: 70px 0 20px;
  padding: 0;
  list-style: none;
}

.navbar-mobile a {
  padding: 12px 20px;
  font-size: 16px;
  color: #fff;
  display: block;
  text-decoration: none;
  transition: background 0.3s ease;
}

.navbar-mobile a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Mobile */
.navbar-mobile .dropdown ul {
  display: none;
  padding: 0;
  margin-top: -0.9rem;
  list-style: none;
}

.navbar-mobile .dropdown.active > ul {
  display: block;
}

/* --------------------------------------------------------------
   # Responsividade Extra
-------------------------------------------------------------- */

/* Tablets */
@media (max-width: 767px) {
  #header {
    height: 60px;
    padding: 0 15px;
  }

  .navbar a {
    font-size: 15px;
    padding: 8px 14px;
  }

  .btn-whatsapp {
    margin: 1.5rem auto;
  }
}

/* Smartphones */
@media (max-width: 480px) {
  #header {
    height: 55px;
    padding: 0 10px;
  }

  #header .logo img {
    max-height: 36px;
  }

  .navbar-mobile {
    width: 100%; /* ocupa a tela inteira em celulares */
    max-width: none;
  }

  .navbar-mobile ul {
    margin-top: 60px;
  }

  .navbar-mobile a {
    font-size: 15px;
    padding: 14px;
  }
}




/* Ordem padrão (desktop) */
.logo {
  order: 1;
}
#navbar {
  order: 2;
}
.btn-whatsapp {
  order: 3;
}
.mobile-nav-toggle {
  order: 4;
}

/* ================================================================
  ----------------------RESPONSIVIDADE ----------------------------
 ================================================================== */

/* Ajustes para telas menores */
@media (max-width: 991px) {
  /* Logo continua à esquerda */
  .logo {
    order: 1;
  }

  /* Botão WhatsApp vem antes do hambúrguer */
  .btn-whatsapp {
    order: 2;
    position: relative;
    right: 18.8rem;
    padding: 0.4rem;
    font-size: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }

  .btn-whatsapp svg, .btn-whatsapp i {
    font-size: 18px; /* tamanho do ícone */
    position: relative;
    left: 2px;
    color: #fff;
  }

  /* Ícone hambúrguer no fim (direita) */
  .mobile-nav-toggle {
    order: 3;
    position: relative;
    left: 1rem;
    font-size: 2.5rem;
  }

  /* Esconde o menu desktop */
  #navbar ul {
    display: none;
  }
}


/* ===== Ajuste: Centralizar botão WhatsApp no scroll-indicator (apenas telas menores) ===== */
@media (max-width: 767px) {
  header {
    position: relative;
  }

  #header .container {
    justify-content: flex-start;
    gap: 0.6rem;
    padding: 0 18px;
  }

  .logo img {
    max-height: 42px;
  }


  .btn-whatsapp {
    position: absolute !important;
    left: 45%;
    transform: translateX(-45%);
    bottom: 5px; /* distância acima do scroll-indicator */
    right: auto !important;
  }

  .btn-whatsapp svg, .btn-whatsapp i {
    font-size: 20px;
    left: 2px;
  }

  header .scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 42%;
    transform: translateX(-42%);
  }


  .mobile-nav-toggle {
    font-size: 2rem;
    margin-left: auto;
  }

}


/* ===== 560px ===== */
@media (max-width: 560px) {
  .btn-whatsapp {
    width: 38px;
    height: 38px;
    right: 14.2rem;
  }

  .logo img {
    max-height: 36px;
  }

  .btn-whatsapp {
    bottom: -8px;
    width: 40px;
    height: 40px;
    left: 46.5%;
  }

  header .scroll-indicator {
    left: 44.7%;
    bottom: 2px;
  }

  .mobile-nav-toggle {
    font-size: 1.8rem;
    left: 0rem;
  }
  
}

/* ===== 520px ===== */
@media (max-width: 520px) {
  #header .container {
    justify-content: flex-start;
    gap: 0.3rem;
    padding: 0 10px;
  }

  .logo img {
    max-height: 32px;
  }


  .btn-whatsapp {
    bottom: -8px;
    width: 40px;
    height: 40px;
    left: 46%;
  }

  header .scroll-indicator {
    left: 44.2%;
    bottom: 2px;
  }

  .btn-whatsapp svg, .btn-whatsapp i {
    font-size: 18px;
  }

  .mobile-nav-toggle {
    font-size: 1.8rem;
    left: 0rem;
  }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
  #header .container {
    justify-content: flex-start;
    gap: 0.3rem;
    padding: 0 10px;
  }

  .logo img {
    max-height: 32px;
  }


  .btn-whatsapp {
    bottom: -8px;
    width: 40px;
    height: 40px;
    left: 45%;
  }

  header .scroll-indicator {
    left: 43%;
    bottom: 2px;
  }

  .btn-whatsapp svg, .btn-whatsapp i {
    font-size: 18px;
  }

  .mobile-nav-toggle {
    font-size: 1.8rem;
    left: 0rem;
  }
}

/* ===== 450px ===== */
@media (max-width: 450px) {

  .btn-whatsapp {
    bottom: -8px;
    width: 40px;
    height: 40px;
    left: 43%;
  }

  header .scroll-indicator {
    left: 41%;
    bottom: 2px;
  }

  .logo img {
    max-height: 31px;
  }

  .mobile-nav-toggle {
    font-size: 1.8rem;
    left: -1rem;
  }
}
/* ===== 420px ===== */
@media (max-width: 420px) {

  .btn-whatsapp {
    bottom: -8px;
    width: 38px;
    height: 38px;
    left: 42%;
  }

  header .scroll-indicator {
    left: 40%;
    bottom: 2px;
  }

  .logo img {
    max-height: 31px;
  }

  .mobile-nav-toggle {
    font-size: 1.8rem;
    left: -2rem;
  }
}

/* ===== 400px ===== */
@media (max-width: 400px) {

  .btn-whatsapp {
    bottom: -8px;
    width: 36px;
    height: 36px;
    left: 41.5%;
  }

  header .scroll-indicator {
    left: 39%;
    bottom: 2px;
  }

  .logo img {
    max-height: 31px;
  }

  .mobile-nav-toggle {
    font-size: 1.8rem;
    left: -1.9rem;
  }
}

/* ===== 390px ===== */
@media (max-width: 390px) {
  .logo img {
    max-height: 28px;
  }

  .btn-whatsapp {
    bottom: -8px;
    width: 34px;
    height: 34px;
    left: 45%;
  }

  header .scroll-indicator {
    left: 42%;
    bottom: 2px;
  }

  .btn-whatsapp svg, .btn-whatsapp i {
    font-size: 16px;
  }

  .mobile-nav-toggle {
    font-size: 1.6rem;
    left: -0.8rem;
  }
}

/* ===== 360px ===== */
@media (max-width: 360px) {
  #header .container {
    gap: 0.2rem;
  }

  .logo img {
    max-height: 28px;
  }

  .btn-whatsapp {
    width: 30px;
    height: 30px;
    left: 43%;
  }

    header .scroll-indicator {
    left: 40%;
    bottom: 2px;
  }

  .btn-whatsapp svg, .btn-whatsapp i {
    font-size: 15px;
  }
}

/* ===== 320px ===== */
@media (max-width: 320px) {
  #header .container {
    gap: 0.15rem;
    padding: 0 6px;
  }

  .logo img {
    max-height: 25px;
  }

  .btn-whatsapp {
    width: 28px;
    height: 28px;
    right: 8rem;
    padding: 0.25rem;
  }

  .btn-whatsapp svg, .btn-whatsapp i {
    font-size: 14px;
  }

  .mobile-nav-toggle {
    font-size: 1.4rem;
  }
}



/* --------------------------------------------------------------
   # Header End
-------------------------------------------------------------- */






/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-carousel {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;

}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(160deg, var( --azul-marinho) 55%, var(--accent) 100%);
    opacity: 0.6;
    z-index: 1;
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    z-index: 2;
}

.content-box {
    max-width: 600px;
    color: white;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.slide.active .content-box {
    transform: translateY(0);
    opacity: 1;
}

.slide-number {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* background: linear-gradient(135deg, var(--accent) 0%, #003366 100%); */
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-banner,
.btn-secondary {
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-banner {
    background: linear-gradient(135deg, #06c4f9, #1e90ff);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

/* Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Progress Indicators */
.progress-indicators {
    position: absolute;
    bottom: 3rem;
    left: 5%;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.indicator-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #005b96 0%, var(--azul-turquesa) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.indicator.active .indicator-progress {
    width: 100%;
    animation: progressFill 6s linear;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.current-slide {
    font-size: 1.3rem;
}

.divider {
    margin: 0 8px;
    opacity: 0.6;
}

.total-slides {
    opacity: 0.8;
}


/* Loading Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide.slide-in {
    animation: slideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Effects */
.slide:hover::before {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Focus States */
.nav-btn:focus,
.indicator:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        padding: 0 4%;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .content-box {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 1.5rem;
        justify-content: center;
        text-align: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
    
    .slide-actions {
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .progress-indicators {
        left: 50%;
        transform: translateX(-50%);
        bottom: 2rem;
    }
    
    .slide-counter {
        right: 50%;
        transform: translateX(50%);
        bottom: 6rem;
    }
}


@media (max-width: 480px) {
  .hero-carousel {
    height: 55vh;
  }

  .slide-content {
    padding: 0 1.5rem;
    justify-content: center;
    text-align: center;
  }

  .content-box {
    max-width: 90%;
  }

  .slide-number {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 1rem;
  }

  .slide-title {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .slide-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .btn-primary-banner,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
  }

  .carousel-nav {
    padding: 0 1rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  .progress-indicators {
    bottom: 2rem;
    gap: 0.6rem;
  }

  .indicator {
    width: 45px;
  }

  .slide-counter {
    bottom: 2rem;
    right: 1.5rem;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 20px;
  }

  .current-slide {
    font-size: 1.1rem;
  }
}

@media (max-width: 390px) {
  .hero-carousel {
    height: 50vh;
  }

  .slide-content {
    padding: 0 1rem;
  }

  .content-box {
    max-width: 95%;
  }

  .slide-number {
    font-size: 0.7rem;
    padding: 5px 10px;
    margin-bottom: 0.8rem;
  }

  .slide-title {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .slide-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }

  .btn-primary-banner,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 4px;
  }

  .carousel-nav {
    padding: 0 0.8rem;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
  }

  .progress-indicators {
    bottom: 1.5rem;
    gap: 0.5rem;
  }

  .indicator {
    width: 35px;
  }

  .slide-counter {
    bottom: 1.5rem;
    right: 3rem;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 18px;
  }

  .current-slide {
    font-size: 1rem;
  }
}

/* Smartphones muito pequenos (até 360px) */
@media (max-width: 360px) {
  .hero-carousel {
    height: 45vh;
  }

  .slide-content {
    padding: 0 0.8rem;
  }

  .content-box {
    max-width: 96%;
  }

  .slide-number {
    font-size: 0.65rem;
    padding: 4px 8px;
    margin-bottom: 0.6rem;
  }

  .slide-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    line-height: 1.15;
  }

  .slide-text {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .btn-primary-banner,
  .btn-secondary {
    padding: 7px 14px;
    font-size: 0.8rem;
    border-radius: 4px;
  }

  .carousel-nav {
    padding: 0 0.6rem;
  }

  .nav-btn {
    width: 30px;
    height: 30px;
  }

  .progress-indicators {
    bottom: 1.2rem;
    gap: 0.4rem;
  }

  .indicator {
    width: 30px;
  }

  .slide-counter {
    bottom: 1.2rem;
    right: 2.5rem;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 16px;
  }

  .current-slide {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Hero Section Ends
--------------------------------------------------------------*/



/*--------------------------------------------------------------
#  Destaque & Beneficios
--------------------------------------------------------------*/


.benefits-container {
        background: var(--gray-light);
        padding: 3rem;
        border-radius: 20px;
        margin-top: 3rem;
        }
        
.benefits-container .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    background: var(--body-color);
    border-radius: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-badge i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}



        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .benefits-container .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            /* border: 1px solid #e2e8f0; */
            border: 2px solid var(--light-blue);
        }
        
        .benefits-container  .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .benefits-container .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
        }
        
        .benefits-container .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .benefits-container .card-icon {
            width: 70px;
            height: 70px;
            /* background: linear-gradient(135deg, #2563eb, #3b82f6); */
            background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */

            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .benefits-container .benefit-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }
        
        .benefits-container .card-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .benefits-container  .card-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--azul-turquesa);
            margin-bottom: 1rem;
        }
        
        .benefits-container .card-content p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
       .benefits-container  .learn-more {
            display: inline-flex;
            align-items: center;
            color: var(--accent);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
       .benefits-container  .learn-more:hover {
            color: #1d4ed8;
            transform: translateX(5px);
        }
        
       .benefits-container  .learn-more i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .benefits-container .learn-more:hover i {
            transform: translateX(3px);
        }
        
        .benefits-container .dylande-logo {
            position: absolute;
            top: 2rem;
            left: 2rem;
            font-size: 1.5rem;
            font-weight: 700;
            color: #2563eb;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .benefits-container .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        @media (max-width: 768px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .benefit-card {
                padding: 2rem 1.5rem;
            }
        }

 
@media (max-width: 480px) {

   .benefits-container {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

  .benefits-grid {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .benefits-container .benefit-card {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }

  .benefits-container .card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }

  .benefits-container .card-icon i {
    font-size: 1.6rem;
  }

  .benefits-container .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }

  .benefits-container .card-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .benefits-container .learn-more {
    font-size: 0.9rem;
  }

  .benefits-container .dylande-logo {
    top: 1rem;
    left: 1rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 390px) {

    .benefits-container {
        padding: 1.3rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 0.9rem;
        max-width: 95%;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        gap: 6px;
    }

  .benefits-grid {
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .benefits-container .benefit-card {
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
  }

  .benefits-container .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
  }

  .benefits-container .card-icon i {
    font-size: 1.4rem;
  }

  .benefits-container .card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .benefits-container .card-content p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .benefits-container .learn-more {
    font-size: 0.85rem;
  }

  .benefits-container .dylande-logo {
    top: 0.8rem;
    left: 0.8rem;
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
#  Destaque & Soluções
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Sections Home-Middle Start
--------------------------------------------------------------*/

        .home-middle-section{
        background: var(--gray-light);
        padding: 3rem;
        border-radius: 20px;
        margin-top: 3rem;
        }

        .container-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--container-padding);          
        }

.home-middle {
  display: flex;
  align-items: center; /* Alinha verticalmente ao centro */
  justify-content: center; /* Centraliza horizontalmente */
  flex-wrap: wrap;
  border-radius: 20px 20px 20px 20px;
  gap: 0.5rem; /* Menor gap */
  padding: 5rem 2rem; /* Diminui o padding geral */
  background: #06c4f9;
  position: relative;
  min-height: 60vh; /* Garante que ocupe a altura total da tela */
}

.home-middle .content,
.home-middle .image {
  flex: 1 1 30%; /* Reduz tamanho dos blocos */
  margin-left: 10%; /* Move os elementos mais para a direita */
}

.home-middle .content {
  background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */
  padding: 1.5rem;
  border-radius: 1rem; /* Bordas arredondadas menores */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
  color: white;
  text-align: left; /* Alinha o texto à esquerda */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave */
}

.home-middle .content:hover {
  transform: translateY(-10px); /* Levanta a div ao hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Sombra mais forte ao hover */
}

.home-middle .content h3 {
  font-size: 2.2rem; /* Texto menor */
  font-weight: 700;
  letter-spacing: 0.05em; /* Maior espaçamento entre letras */
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out; /* Animação de fade in */
}

.home-middle .content p {
  font-size: 1.2rem;
  line-height: 1.6; /* Menor espaçamento */
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9); /* Texto mais suave */
  animation: fadeIn 1.2s ease-out; /* Animação de fade in */
}

.home-middle .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem; /* Botão mais compacto */
  background: #fff;
  color: #06c4f9;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Sombra no botão */
}

.home-middle .btn:hover {
  background: #1e90ff; /* Cor de fundo muda no hover */
  color: #fff; /* Texto branco ao hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra mais intensa */
}

.home-middle .image {
  flex: 1 1 30%; /* Reduz tamanho da imagem */
}

.home-middle .image img {
  width: 70%;
  border-radius: 1rem; /* Bordas arredondadas na imagem */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Sombra suave na imagem */
}

/* Melhorias na animação da nuvem */
.home-middle .cloud {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 14rem; /* Altura reduzida */
  background-size: 180rem 14rem; /* Tamanho da imagem ajustado */
  background: url(/assets/img/cloud.png) repeat-x;
  animation: cloud 20s linear infinite; /* Animação mais longa e suave */
}

@keyframes cloud {
  0% {
    background-position-x: 0rem;
  }
  100% {
    background-position-x: -180rem; /* Movimentação ajustada */
  }
}

.home-middle .cloud-1 {
  opacity: 0.4; /* Nuvem mais transparente */
  height: 16rem; /* Altura menor */
  background-size: 180rem 16rem;
  animation-direction: reverse;
  animation-duration: 25s; /* Animação mais lenta */
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .home-middle {
    flex-direction: column; /* Empilha os elementos em telas menores */
    padding: 2rem; /* Reduz padding em telas menores */
  }

  .home-middle .content, 
  .home-middle .image {
    flex: 1 1 100%; /* Elementos ocupam 100% da largura */
    margin-left: 0; /* Remove a margem à esquerda */
    margin-bottom: 2rem; /* Espaço entre os blocos */
  }
}


@media (max-width: 480px) {
  .home-middle-section {
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 15px;
  }

  .home-middle {
    flex-direction: column;
    padding: 2rem 1rem;
    min-height: 50vh;
    gap: 1rem;
  }

  .home-middle .content,
  .home-middle .image {
    flex: 1 1 100%;
    margin-left: 0;
  }

  .home-middle .content {
    padding: 1rem;
    border-radius: 0.8rem;
  }

  .home-middle .content h3 {
    font-size: 1.6rem;
  }

  .home-middle .content p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .home-middle .btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 1rem;
  }

  .home-middle .image img {
    width: 85%;
    border-radius: 0.8rem;
  }

  .home-middle .cloud {
    height: 10rem;
    background-size: 120rem 10rem;
    animation-duration: 25s;
  }

  .home-middle .cloud-1 {
    height: 12rem;
    background-size: 120rem 12rem;
    animation-duration: 30s;
  }
}

@media (max-width: 390px) {
  .home-middle-section {
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 12px;
  }

  .home-middle {
    flex-direction: column;
    padding: 1.5rem 0.8rem;
    min-height: 45vh;
    gap: 0.8rem;
  }

  .home-middle .content,
  .home-middle .image {
    flex: 1 1 100%;
    margin-left: 0;
  }

  .home-middle .content {
    padding: 0.8rem;
    border-radius: 0.6rem;
  }

  .home-middle .content h3 {
    font-size: 1.4rem;
  }

  .home-middle .content p {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .home-middle .btn {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
  }

  .home-middle .image img {
    width: 100%;
    border-radius: 0.6rem;
  }

  .home-middle .cloud {
    height: 8rem;
    background-size: 100rem 8rem;
    animation-duration: 28s;
  }

  .home-middle .cloud-1 {
    height: 10rem;
    background-size: 100rem 10rem;
    animation-duration: 32s;
  }
}


/*--------------------------------------------------------------
# Sections Home-Middle End
--------------------------------------------------------------*/





/*--------------------------------------------------------------
#  Nossos Serviços / Soluções
--------------------------------------------------------------*/

   

          .servi-solution-section{
            background: var(--gray-light);
            padding: 3rem;
            border-radius: 20px;
            margin-top: 3rem;            
          }
        .services-container .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .services-container .service-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
            border-radius: 24px;
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 2px solid var(--light-blue);
        }
        
        .services-container .service-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 8px;
          background: var(--gradient-primary);
          transform: scaleX(0);
          transform-origin: left;
          transition: transform 0.3s ease;
        }
        .services-container .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .services-container .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(37, 99, 235, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.8);
        }
        


        .services-container .service-card:hover::before {
            transform: scaleX(1);
        }       
        .services-container .service-card:hover::after {
            left: 100%;
        }
        
        .services-container .service-card:hover .service-icon {
            transform: translateY(-5px) scale(1.1) rotate(5deg);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
        }
        
        .services-container .service-icon-wrapper {
            position: relative;
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
        }
        
        .services-container .service-icon {
            width: 70%;
            height: 70%;
            background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
        }
        
        .services-container .service-icon i {
            font-size: 2.5rem;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .services-container .service-icon-bg {
            position: absolute;
            top: 8px;
            left: 8px;
            width: 70%;
            height: 70%;
            background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */

            border-radius: 22px;
            opacity: 0.3;
            filter: blur(8px);
            transform: translateZ(0);
            transition: all 0.3s ease;
        }
        
        .services-container .service-card:hover .service-icon-bg {
            transform: translate(4px, 4px);
        }
        
        .services-container .service-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .services-container .service-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .services-container .service-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 6px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
         
        .services-container .service-card:hover .service-title::after {
            width: 80px;
        } 
        
        .services-container .service-description {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1rem;
        }
        
       .services-container  .service-features {
            text-align: left;
            margin-bottom: 2.5rem;
        }
        
        .services-container .feature-item {
            color: #475569;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .services-container .feature-item:hover {
            background: rgba(37, 99, 235, 0.05);
            transform: translateX(5px);
        }
        
        .services-container .feature-item::before {
            content: '✓';
            color: #003366;
            font-weight: bold;
            margin-right: 0.8rem;
            width: 24px;
            height: 24px;
            background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
.services-container        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
  background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
.services-container        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
.services-container        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */

        }
        
.services-container        .cta-button:hover::before {
            left: 100%;
        }
        
.services-container        .cta-button i {
            margin-left: 0.8rem;
            transition: transform 0.3s ease;
        }
        
.services-container        .cta-button:hover i {
            transform: translateX(5px);
        }
        
        .services-container .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .services-container .particle {
            position: absolute;
            background: var(--azul-turquesa); 

            border-radius: 50%;
            opacity: 0.1;
            animation: floatParticle 6s ease-in-out infinite;
        }

      .services-container .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes floatParticle {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        @media (max-width: 1024px) {
            .services-container .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 2rem;
            }
            
            .services-container .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            
            .services-container .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-container .section-title {
                font-size: 2rem;
            }
            
            .services-container .section-subtitle {
                font-size: 1.1rem;
            }
            
           .services-container  .service-card {
                padding: 2.5rem 2rem;
            }
            
            .services-container .service-icon-wrapper {
                width: 80px;
                height: 80px;
            }
            
            .services-container .service-icon i {
                font-size: 2.2rem;
            }
        }
        

@media (max-width: 480px) {
  .services-container .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .services-container .service-card {
    padding: 1.2rem 1rem;
    border-radius: 14px;
  }

  .services-container .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .services-container .service-icon i {
    font-size: 1.8rem;
  }

  .services-container .service-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .services-container .service-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .services-container .service-features {
    margin-bottom: 1rem;
  }

  .services-container .feature-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.4rem;
    margin-bottom: 0.5rem;
  }

  .services-container .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 35px;
  }

  .services-container .cta-button i {
    margin-left: 0.4rem;
  }
}


@media (max-width: 390px) {
  .services-container .services-grid {
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .services-container .service-card {
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
  }

  .services-container .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .services-container .service-icon i {
    font-size: 1.7rem;
  }

  .services-container .service-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .services-container .service-description {
    /* font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem; */
    display: none;
  }

  .services-container .service-features {
    margin-bottom: 1rem;
  }

  .services-container .feature-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.4rem;
    margin-bottom: 0.5rem;
  }

  .services-container .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 30px;
  }

  .services-container .cta-button i {
    margin-left: 0.4rem;
  }
}






        
        .services-container .stats-bar {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.02));
            border: 1px solid rgba(37, 99, 235, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin-top: 4rem;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        
        .services-container .stats-title {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .services-container .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
       .services-container  .stat-item {
            text-align: center;
        }
        
        .services-container .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .services-container .stat-label {
            color: #64748b;
            font-size: 0.9rem;
            font-weight: 500;
        }

@media (max-width: 768px) {
  .services-container .stats-bar {
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 10px;
  }

  .services-container .stats-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .services-container .stats-grid {
    gap: 0.6rem;
  }

  .services-container .stat-number {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
  }

  .services-container .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .services-container .stats-bar {
    padding: 0.8rem;
    margin-top: 1.5rem;
    border-radius: 8px;
  }

  .services-container .stats-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .services-container .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .services-container .stat-number {
    font-size: 1.3rem;
    margin-bottom: 0.15rem;
  }

  .services-container .stat-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  .services-container .stats-bar {
    padding: 0.6rem;
    margin-top: 0.5rem;
    border-radius: 6px;
  }


  .services-container .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .services-container .stat-number {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
  }

  .services-container .stat-label {
    font-size: 0.68rem;
  }
}



/*--------------------------------------------------------------
#  Nossos Serviços / Soluções
--------------------------------------------------------------*/




/*--------------------------------------------------------------
#  Sobre Dylande
--------------------------------------------------------------*/

        .about-section {
        background: var(--gray-light);
        padding: 3rem;
        border-radius: 20px;
        margin-top: 3rem;          
        }        
        .about-container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 2;
            padding: 3rem 2rem;
        }
        
        .dylande-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .dylande-logo {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            display: inline-block;
            position: relative;
        }
        
        .dylande-logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .dylande-logo:hover::after {
            transform: scaleX(1);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
            border-radius: 20px;
            padding: 4rem;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .about-text {
            padding-right: 2rem;
        }
        
.about-section  .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            position: relative;
        }
        
.about-section         .section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 95px;
            height: 8px;
            background: var(--azul-turquesa);
            border-radius: 2px;
        }
        
        .about-description {
            font-size: 1.2rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .about-description::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -15px;
            font-weight: bold;
        }
        
        .highlight-text {
            background: var(--accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button i {
            margin-left: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(5px);
        }
        
        .about-image {
            position: relative;
            perspective: 1000px;
        }
        
        .image-wrapper {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: rotate3d(0.1, 0.1, 0, 5deg);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .image-wrapper:hover {
            transform: rotate3d(0, 0, 0, 0deg) translateY(-5px);
            box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
        }
        
        .image-wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .image-wrapper:hover img {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .image-wrapper:hover .image-overlay {
            opacity: 1;
        }
        
        .floating-elements {
            position: absolute;
            top: -20px;
            right: -20px;
            z-index: 2;
        }
        
        .floating-element {
            width: 60px;
            height: 60px;
            background: var(--azul-turquesa);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            animation: floatElement 3s ease-in-out infinite;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }
        
        .floating-element:nth-child(2) {
            position: absolute;
            top: 70px;
            right: -30px;
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            animation-delay: 1s;
        }
        
        @keyframes floatElement {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(10deg); }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            background: rgba(37, 99, 235, 0.05);
            transform: translateY(-5px);
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.3rem;
        }
        
        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #64748b;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
@media (max-width: 768px) {
  .about-section {
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 15px;
  }

  .about-container {
    padding: 2rem 1.5rem;
  }

  .dylande-header {
    margin-bottom: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .about-text {
    padding-right: 0;
  }

  .about-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .about-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  .image-wrapper img {
    height: 300px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 1.2rem;
    margin-top: 1.5rem;
    border-radius: 12px;
  }

  .about-container {
    padding: 1.5rem 1rem;
  }

  .dylande-logo {
    font-size: 1.5rem;
  }

  .about-content {
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .about-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .about-description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .cta-button {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }

  .image-wrapper img {
    height: 230px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .stat-item {
    padding: 0.8rem;
  }

  .stat-number {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .about-section {
    padding: 0.9rem;
    margin-top: 1rem;
    border-radius: 10px;
  }

  .about-container {
    padding: 1rem 0.8rem;
  }

  .dylande-logo {
    font-size: 1.3rem;
  }

  .about-content {
    gap: 1rem;
    padding: 1rem;
  }

  .about-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .about-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }

  .image-wrapper img {
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.6rem;
  }

  .stat-item {
    padding: 0.6rem;
  }

  .stat-number {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}

        
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.1;
            animation: floatParticle 6s ease-in-out infinite;
        }
        
        @keyframes floatParticle {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }


/*--------------------------------------------------------------
#  Sobre Dylande
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  background: var(--gradient-primary);
        padding: 3rem;
        border-radius: 20px;
        margin-top: 3rem;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .row {
  display: flex;
  justify-content: center;
}


.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}


.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#0880e8 50%, rgba(8, 128, 232, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(8, 128, 232, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #0880e8;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .why-us {
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 15px;
  }

  .why-us .content {
    padding: 40px 50px 0 50px;
  }

  .why-us .video-box {
    min-height: 300px;
  }

  .why-us .play-btn {
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
  }

  .why-us .play-btn::before {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }

  .why-us .play-btn::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
  }
}

@media (max-width: 480px) {
  .why-us {
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
  }

  .why-us .content {
    padding: 30px 30px 0 30px;
  }

  .why-us .video-box {
    min-height: 250px;
  }

  .why-us .play-btn {
    width: 65px;
    height: 65px;
    left: calc(50% - 32.5px);
    top: calc(50% - 32.5px);
  }

  .why-us .play-btn::before {
    width: 85px;
    height: 85px;
    border-width: 3px;
  }

  .why-us .play-btn::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #fff;
  }
}

@media (max-width: 390px) {
  .why-us {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }

  .why-us .content {
    padding: 20px 20px 0 20px;
  }

  .why-us .video-box {
    min-height: 200px;
  }

  .why-us .play-btn {
    width: 55px;
    height: 55px;
    left: calc(50% - 27.5px);
    top: calc(50% - 27.5px);
  }

  .why-us .play-btn::before {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }

  .why-us .play-btn::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #003366;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}


/*--------------------------------------------------------------
# Sections General End
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Frequently Start
--------------------------------------------------------------*/

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.faq {
  padding: 40px 0;
  background: linear-gradient(135deg, #06c4f9, #1e90ff); /* Gradiente moderno */
  border-radius: 20px;
  padding: 2rem 3rem;
}


.faq .section-title h2 {
  font-size: 2rem;
  /* color: #1e3a8a; */
  color: #f0f0f0;
}

.faq .faq-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 3rem 1.5rem;
  background: transparent;
}

/* Caixa translúcida com efeito suave */
.faq .faq-questions {
  flex: 1;
  max-width: 600px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.faq .faq-questions:hover {
  box-shadow: 0 10px 35px rgba(0, 121, 198, 0.25);
  border-color: rgba(0, 121, 198, 0.3);
}

/* Perguntas */
.faq .faq-questions li {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 121, 198, 0.15);
  position: relative;
  overflow: hidden;
}

.faq .faq-questions li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg width='1200' height='120' viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C300,20 900,100 1200,60 L1200,0 L0,0 Z' fill='%230079C6' opacity='0.15'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 14px 14px 0 0;
}

.faq .faq-questions li:hover {
  transform: translateY(-3px);
  background: rgba(240, 250, 255, 1);
  border-color: rgba(0, 121, 198, 0.4);
  box-shadow: 0 8px 22px rgba(0, 121, 198, 0.25);
}

.faq .faq-questions a {
  color: #0079c6;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.08rem;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

.faq .faq-questions .icon-help {
  color: #00aeef;
  font-size: 22px;
  margin-right: 10px;
}

.faq .faq-questions .icon-show,
.faq .faq-questions .icon-close {
  color: #1e3a8a;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq .faq-questions a:hover .icon-show,
.faq .faq-questions a:hover .icon-close {
  color: #00aeef;
  transform: rotate(90deg);
}

.faq .faq-questions p {
  margin-top: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  text-align: justify;
  padding: 0 0.3rem;
  position: relative;
  z-index: 2;
}

/* 🔹 Imagem lateral ajustada para alinhar com a 2ª pergunta */
.faq .faq-image {
  flex: 1;
  max-width: 420px;
  text-align: center;
  position: relative;
  top: 5rem; /* desloca a imagem para baixo */
}

.faq .faq-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 121, 198, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq .faq-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 50px rgba(0, 121, 198, 0.35);
}


/* ====== 767px (tablets e smartphones grandes) ====== */
@media (max-width: 767px) {
  .faq .faq-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 1rem;
  }

  .faq .faq-questions {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .faq .faq-image {
    max-width: 400px;
    top: 0;
    margin-top: 1.5rem;
  }

  .faq .faq-image img {
    border-radius: 18px;
  }
}

/* ====== 580px ====== */
@media (max-width: 580px) {
  .faq {
    padding: 2rem 1.5rem;
  }

  .faq .faq-container {
    gap: 2rem;
    padding: 2rem 0.8rem;
  }

  .faq .faq-questions {
    padding: 1.8rem 1.2rem;
    border-radius: 18px;
  }

  .faq .faq-questions li {
    padding: 1rem 1.1rem;
    border-radius: 12px;
  }

  .faq .faq-questions a {
    font-size: 1rem;
  }

  .faq .faq-questions p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .faq .faq-image {
    width: 360px;
  }
}

/* ====== 560px ====== */
@media (max-width: 560px) {
  .faq .faq-container {
    gap: 1.8rem;
    padding: 2rem 0.6rem;
  }

  .faq .faq-questions {
    padding: 1.6rem 1rem;
  }

  .faq .faq-questions a {
    font-size: 0.98rem;
  }

  .faq .faq-image {
    width: 340px;
  }
}

/* ====== 520px ====== */
@media (max-width: 520px) {
  .faq .faq-container {
    gap: 1.6rem;
    padding: 1.8rem 0.5rem;
  }

  .faq .faq-questions li {
    padding: 0.95rem 1rem;
    right: 1rem;
  }

  .faq .faq-questions a {
    font-size: 0.96rem;
  }

  .faq .faq-questions p {
    font-size: 0.9rem;
  }

  .faq .faq-image {
    width: 320px;
  }
}

/* ====== 480px ====== */
@media (max-width: 480px) {
  .faq .faq-container {
    padding: 2rem 0.4rem;
    gap: 1.6rem;
  }

  .faq .faq-questions {
    width: 100%;
    padding: 1.6rem 1.1rem;
    border-radius: 16px;
  }

  .faq .faq-questions li {
    padding: 1rem 1.1rem;
    border-radius: 12px;
    right: 1rem;
  }

  .faq .faq-questions a {
    font-size: 0.94rem;
  }

  .faq .faq-questions p {
    font-size: 0.86rem;
  }

  .faq .faq-image {
    width: 300px;
  }
}

/* ====== 440px ====== */
@media (max-width: 440px) {
  .faq .faq-container {
    gap: 1.5rem;
  }

  .faq .faq-questions {
    padding: 1.5rem 1rem;
  }

  .faq .faq-questions li {
    padding: 0.9rem 1rem;
    right: 1rem;
  }

  .faq .faq-questions a {
    font-size: 0.93rem;
  }

  .faq .faq-questions p {
    font-size: 0.84rem;
  }

  .faq .faq-image {
    width: 280px;
  }
}

/* ====== 400px ====== */
@media (max-width: 400px) {
  .faq .faq-container {
    padding: 1.6rem 0.3rem;
    gap: 1.4rem;
  }

  .faq .faq-questions {
    padding: 1.4rem 0.9rem;
  }

  .faq .faq-questions li {
    padding: 0.9rem 1rem;
    right: 1rem;
  }

  .faq .faq-questions a {
    font-size: 0.9rem;
  }

  .faq .faq-questions p {
    font-size: 0.82rem;
  }

  .faq .faq-image {
      width: 260px;
  }
}

/* ====== 390px ====== */
@media (max-width: 390px) {
  .faq .faq-container {
    padding: 1.5rem 0.2rem;
    gap: 1.3rem;
  }

  .faq .faq-questions {
    padding: 1.3rem 0.8rem;
  }

  .faq .faq-questions li {
    padding: 0.85rem 0.9rem;
    right: 1rem;
    margin: 0.5rem -0.79rem;
  }

  .faq .faq-questions a {
    font-size: 0.88rem;
  }

  .faq .faq-questions p {
    font-size: 0.8rem;
  }

  .faq .faq-image {
    width: 200px;
    margin-top: -0.8rem;
  }
}

/* ====== 360px ====== */
@media (max-width: 360px) {
  .faq .faq-container {
    padding: 1.4rem 0.2rem;
    gap: 1.2rem;
  }

  .faq .faq-questions {
    padding: 1.2rem 0.8rem;
  }

  .faq .faq-questions li {
    padding: 0.8rem 0.9rem;
    right: 1rem;
  }

  .faq .faq-questions a {
    font-size: 0.86rem;
  }

  .faq .faq-questions p {
    font-size: 0.78rem;
  }

  .faq .faq-image {
    max-width: 220px;
  }
}

/* ====== 320px ====== */
@media (max-width: 320px) {
  .faq {
    padding: 1.5rem 1rem;
  }

  .faq .faq-container {
    padding: 1.2rem 0.2rem;
    gap: 1rem;
  }

  .faq .faq-questions {
    padding: 1rem 0.7rem;
    border-radius: 10px;
  }

  .faq .faq-questions li {
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
  }

  .faq .faq-questions a {
    font-size: 0.84rem;
  }

  .faq .faq-questions p {
    font-size: 0.75rem;
  }

  .faq .faq-image {
    max-width: 200px;
  }
}



/*--------------------------------------------------------------
# Frequently End
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# PATROCINADORES Start
--------------------------------------------------------------*/
.patrocinadores-section {

        background: var(--gray-light);
        padding: 3rem;
        border-radius: 20px;
        margin-top: 3rem;
}

.container-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.patrocinadores-container {
  background-color: #f9f9f9;
  border-radius: 10px;
  text-align: center;
  padding: 2rem  3rem;
}


.heading-tecnologia {
  font-size: 2.5rem; /* Tamanho da fonte */
  color: #222; /* Cor do texto */
  font-weight: 700; /* Peso da fonte */
  text-transform: uppercase; /* Maiúsculas */
  text-align: center; /* Centraliza o texto */
  margin: 40px 0; /* Espaçamento vertical */
  position: relative; /* Necessário para o pseudo-elemento */
  background: var(--azul-turquesa); /* Gradiente de cor de fundo */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Preenchimento de texto transparente para mostrar o gradiente */
}


.heading-tecnologia::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px; 
  width: 60%;
  height: 2px; 
  background: var(--gradient-primary); 
  /* background: rgba(21, 69, 189, 0.6);  */
  transform: translateX(-50%); 
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); 
  transition: background 0.3s ease, box-shadow 0.3s ease; 
}


/* Estilização do swiper */
.swiper.patrocinadores-slider {
  width: 100%;
  height: auto;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.swiper-slide img {
  width: 250px; /* Tamanho fixo para as imagens dos patrocinadores */
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.1); /* Efeito de zoom no hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra no hover */
}

/* Paginação do swiper */
.swiper-pagination {
  bottom: 10px;
}

.swiper-pagination-bullet {
  background: #007bff; /* Cor da bolha de paginação */
  opacity: 0.8;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #0056b3; /* Cor da bolha ativa */
  opacity: 1;
}

/* Botões de navegação do swiper */
.swiper-button-next,
.swiper-button-prev {
  color: #007bff; /* Cor dos botões */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #007bff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #005084; /* Cor de fundo dos botões no hover */
  color: #fff; /* Cor do ícone dos botões no hover */
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .patrocinadores-section {
    padding: 2rem;
    margin-top: 2rem;
  }

  .patrocinadores-container {
    padding: 1.5rem 2rem;
  }

  .heading-tecnologia {
    font-size: 2rem;
    margin: 30px 0;
  }

  .swiper-slide img {
    width: 200px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .patrocinadores-section {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .patrocinadores-container {
    padding: 1rem 1.5rem;
  }

  .heading-tecnologia {
    font-size: 1.6rem;
    margin: 25px 0;
  }

  .swiper-slide {
    padding: 15px;
  }

  .swiper-slide img {
    width: 160px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 390px) {
  .patrocinadores-section {
    padding: 1rem;
    border-radius: 12px;
  }

  .patrocinadores-container {
    padding: 0.8rem 1rem;
  }

  .heading-tecnologia {
    font-size: 1.3rem;
    margin: 20px 0;
  }

  .swiper-slide {
    padding: 10px;
  }

  .swiper-slide img {
    width: 130px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 26px;
    height: 26px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}


/*--------------------------------------------------------------
# PATROCINADORES
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# nhanced CTA Footer Start
--------------------------------------------------------------*/

        .cta-footer {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 8rem;
            text-align: center;
            margin-top: 6rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C300,0 900,120 1200,60 L1200,0 L0,0 Z" fill="%23f8fafc"/></svg>');
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-footer h3 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
        }

        .cta-footer p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }


        .download-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            backdrop-filter: blur(10px);
            z-index: 3;
            position: relative;
        }

        .download-btn:hover {
            background: white;
            color: var(--azul-turquesa);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .pdf-viewer {
            width: 100%;
            height: calc(100% - 80px);
            border: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
 
/* ================================================================
  --------------RESPONSIVIDADE DA CTA FOOTER----------------------
 ==================================================================*/

/* ====== 767px (tablets e smartphones grandes) ====== */
@media (max-width: 767px) {
  .cta-footer {
    padding: 6rem 3rem;
    margin-top: 5rem;
    border-radius: 18px;
  }

  .cta-footer h3 {
    font-size: 2.5rem;
  }

  .cta-footer p {
    font-size: 1.15rem;
    max-width: 500px;
  }

  .download-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* ====== 580px ====== */
@media (max-width: 580px) {
  .cta-footer {
    padding: 5rem 2.5rem;
    margin-top: 4rem;
  }

  .cta-footer h3 {
    font-size: 2.2rem;
  }

  .cta-footer p {
    font-size: 1.1rem;
    max-width: 460px;
  }

  .download-btn {
    padding: 0.85rem 1.6rem;
    border-radius: 20px;
    font-size: 0.94rem;
  }
}

/* ====== 560px ====== */
@media (max-width: 560px) {
  .cta-footer {
    padding: 4.5rem 2rem;
  }

  .cta-footer h3 {
    font-size: 2rem;
  }

  .cta-footer p {
    font-size: 1.05rem;
  }
}

/* ====== 520px ====== */
@media (max-width: 520px) {
  .cta-footer {
    padding: 4rem 2rem;
    border-radius: 16px;
  }

  .cta-footer h3 {
    font-size: 1.9rem;
  }

  .cta-footer p {
    font-size: 1rem;
    max-width: 420px;
  }

  .download-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.92rem;
  }
}

/* ====== 480px ====== */
@media (max-width: 480px) {
  .cta-footer {
    padding: 3.5rem 1.8rem;
    margin-top: 3.5rem;
  }

  .cta-footer h3 {
    font-size: 1.8rem;
  }

  .cta-footer p {
    font-size: 0.98rem;
    max-width: 380px;
  }

  .download-btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* ====== 440px ====== */
@media (max-width: 440px) {
  .cta-footer {
    padding: 3rem 1.5rem;
  }

  .cta-footer h3 {
    font-size: 1.7rem;
  }

  .cta-footer p {
    font-size: 0.95rem;
    max-width: 340px;
  }

  .download-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.88rem;
  }
}

/* ====== 400px ====== */
@media (max-width: 400px) {
  .cta-footer {
    padding: 2.8rem 1.4rem;
  }

  .cta-footer h3 {
    font-size: 1.6rem;
  }

  .cta-footer p {
    font-size: 0.9rem;
  }

  .download-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.86rem;
  }
}

/* ====== 390px ====== */
@media (max-width: 390px) {
  .cta-footer {
    padding: 2.6rem 1.3rem;
  }

  .cta-footer h3 {
    font-size: 1.55rem;
  }

  .cta-footer p {
    font-size: 0.88rem;
  }

  .download-btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.84rem;
  }
}

/* ====== 360px ====== */
@media (max-width: 360px) {
  .cta-footer {
    padding: 2.4rem 1.2rem;
    margin-top: 2.8rem;
    border-radius: 14px;
  }

  .cta-footer h3 {
    font-size: 1.5rem;
  }

  .cta-footer p {
    font-size: 0.86rem;
    max-width: 300px;
  }

  .download-btn {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }
}

/* ====== 320px ====== */
@media (max-width: 320px) {
  .cta-footer {
    padding: 2rem 1rem;
    margin-top: 2.5rem;
  }

  .cta-footer h3 {
    font-size: 1.4rem;
  }

  .cta-footer p {
    font-size: 0.8rem;
    max-width: 280px;
  }

  .download-btn {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 18px;
  }
}

/*--------------------------------------------------------------
# nhanced CTA Footer End
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Footer Start
--------------------------------------------------------------*/

#footer {

   background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  padding: 50px 0;
  color: #fff; /* Texto branco */
  font-size: 15px;
  position: relative;
  border-top: 3px solid #61dafb; /* Barra superior com cor de destaque */
}


#footer .footer-newsletter {
  padding: 40px 0;
  text-align: center;
  background: #282c34; /* Cor de fundo ligeiramente diferente para o newsletter */
  border-radius: 8px;
}

#footer .footer-newsletter h4 {
  font-size: 22px;
  color: #61dafb; /* Cor do título em azul claro */
  margin-bottom: 20px;
  font-weight: 700;
}

#footer .footer-newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#footer .footer-newsletter form input[type=email] {
  width: 70%;
  padding: 12px;
  border: 2px solid #61dafb;
  border-radius: 30px 0 0 30px; /* Bordas arredondadas */
  background: #fff;
  font-size: 15px;
  color: #333;
}

#footer .footer-newsletter form input[type=submit] {
  background: #61dafb;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background 0.3s;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #5cb8e3; /* Cor do botão muda no hover */
}

#footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
  background: linear-gradient(135deg, var(--glass-dark), rgba(15, 23, 42, 0.95));

}

#footer .footer-top .footer-contact {
  flex: 1;
  text-align: center;
}

#footer .footer-top .footer-contact h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #61dafb;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

#footer .footer-top .footer-links {
  flex: 1;
  text-align: center;
}

#footer .footer-top .footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
}

#footer .footer-top .footer-links ul li {
  margin: 10px 0;
}

#footer .footer-top .footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

#footer .footer-top .footer-links ul li a:hover {
  color: #61dafb;
}

#footer .footer-top .social-links {
  text-align: center;
  margin-top: 46px;
}

#footer .footer-top .social-links a {
  background: #61dafb;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  text-align: center;
  border-radius: 50%;
}

  #footer .footer-top .footer-contact img {
    max-width: 50px; /* logo um pouco maior */
    max-height: 50px;
  }

#footer .footer-top .social-links a:hover {
  background: #5cb8e3;
}

#footer .copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  background: #181a1f; /* Fundo mais escuro para separar a área de copyright */
  color: #777;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ================= Responsividade Ajustada ================= */

@media (max-width: 1024px) {
  #footer {
    padding: 35px 0;
    font-size: 14px;
  }

  #footer .footer-top {
    gap: 25px;
    padding: 25px 0;
  }

  #footer .footer-newsletter {
    padding: 30px 15px;
  }

  #footer .footer-newsletter h4 {
    font-size: 19px;
    margin-bottom: 15px;
  }

  #footer .footer-top .footer-contact img {
    max-width: 50px; /* logo um pouco maior */
    max-height: 50px;
  }

}

@media (max-width: 768px) {
  #footer {
    padding: 30px 0;
  }

  #footer .footer-newsletter {
    padding: 25px 10px;
  }

  #footer .footer-newsletter form {
    flex-direction: column;
    gap: 8px;
  }

  #footer .footer-newsletter form input[type=email],
  #footer .footer-newsletter form input[type=submit] {
    width: 100%;
    border-radius: 25px;
    font-size: 14px;
    padding: 10px;
  }

  #footer .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  #footer .footer-top .footer-contact img {
    max-width: 50px; /* logo um pouco maior */
    max-height: 50px;
  }

  #footer .footer-top h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #footer .footer-top .social-links a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
  }
}

/* Smartphones modernos (até 480px) */
@media (max-width: 480px) {
  #footer {
    padding: 24px 0;
    font-size: 13px;
  }

  #footer .footer-newsletter h4 {
    font-size: 16px;
  }

  #footer .footer-newsletter form input[type=email] {
    font-size: 13px;
    padding: 7px;
  }

  #footer .footer-top h4 {
    font-size: 15px;
  }

  #footer .footer-top .footer-contact img {
    max-width: 50px; /* logo um pouco maior */
    max-height: 50px;
  }

  #footer .footer-top .footer-links ul li {
    margin: 5px 0;
  }

  #footer .footer-top .social-links a {
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin: 2px 3px;
    margin-top: 32px;
  }

  #footer .copyright {
    font-size: 12px;
    padding: 12px 0;
  }
}

@media (max-width: 360px) {
  #footer {
    padding: 20px 0;
    font-size: 12px;
  }

  #footer .footer-newsletter h4 {
    font-size: 15px;
  }

  #footer .footer-newsletter form input[type=email] {
    font-size: 12px;
    padding: 6px;
  }

  #footer .footer-top h4 {
    font-size: 14px;
  }

  #footer .footer-top .footer-contact img {
    max-width: 45px; /* logo reduzido para telas pequenas */
    max-height: 45px;
  }

  #footer .footer-top .footer-links ul li {
    margin: 4px 0;
  }

  #footer .footer-top .social-links a {
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin: 1px 2px;
    margin-top: 30px;
  }

  #footer .copyright {
    font-size: 11px;
    padding: 10px 0;
  }
}


/*--------------------------------------------------------------
# Footer End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Heading Start
--------------------------------------------------------------*/


.heading{
  text-align: center;
  padding-bottom: 3rem;
  font-size: 4rem;
  color:var(--black);
}

.heading span{
  color:var(--main-color);
  border-radius: .5rem;
  background: #06c4f9;
  padding:0 1.5rem;
}
/*--------------------------------------------------------------
# Heading End
--------------------------------------------------------------*/

/* Esconder as setas por padrão */
.hero-carousel .carousel-nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Mostrar as setas ao passar o mouse no carousel */
.hero-carousel:hover .carousel-nav {
    opacity: 1;
    pointer-events: auto;
}



