/* ===========================================
   VARIÁVEIS CSS - Cores do tema
   =========================================== */
:root {
  --color-dark: #0a1628;
  --color-blue: #1a2d4a;
  --color-orange: #e85d04;
  --color-orange-hover: #f97316;
  --color-light: #f8fafc;
}

/* ===========================================
   RESET E BASE
   =========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-blue) 100%);
  min-height: 100vh;
}

/* ===========================================
   HEADER BACKGROUND
   =========================================== */
.header-bg {
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(232, 93, 4, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 93, 4, 0.03) 0%, transparent 50%);
}

/* ===========================================
   LOGO
   =========================================== */
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--color-orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

a.group:hover .logo-icon {
  transform: scale(1.05);
}

/* ===========================================
   NAV LINKS - Desktop
   =========================================== */
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width 0.3s ease;
}

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

/* ===========================================
   DROPDOWN - Desktop
   =========================================== */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dropdown-item:hover {
  color: var(--color-orange);
  background: rgba(10, 22, 40, 0.5);
}

/* ===========================================
   BOTÃO CTA
   =========================================== */
.cta-btn {
  position: relative;
  overflow: hidden;
  background: var(--color-orange);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.3);
}

.cta-btn:hover {
  background: var(--color-orange-hover);
  box-shadow: 0 15px 40px rgba(232, 93, 4, 0.5);
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ===========================================
   CONTATO TOP BAR
   =========================================== */
.contact-item {
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: var(--color-orange);
}

.social-icon {
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: var(--color-orange);
}

/* ===========================================
   HAMBURGER MENU
   =========================================== */
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   SIDEBAR - Menu Mobile
   =========================================== */
.sidebar {
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.open {
  transform: translateX(0);
}

/* ===========================================
   OVERLAY
   =========================================== */
.overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* ===========================================
   MOBILE LINKS
   =========================================== */
.mobile-link {
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.mobile-link:hover,
.mobile-link.active {
  transform: translateX(10px);
  color: var(--color-orange);
}

.mobile-link.active {
  border-left-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-link:hover {
  border-left-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.05);
}

/* Submenu items */
.submenu a {
  transition: color 0.2s ease;
}

.submenu a:hover {
  color: var(--color-orange);
}

/* ===========================================
   CLOSE BUTTON
   =========================================== */
.close-btn {
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: white;
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (max-width:769px){
	#hero {height:600px;}
}

/* Background imagem */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../img/predio.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Overlay escuro sobre a imagem */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: linear-gradient(90deg, rgba(10, 22, 40, 0.95) 0%, rgb(26 45 74 / 52%) 50%, rgb(10 22 40 / 0%) 100%);
  z-index: 2;
}

/* Decoração lateral direita */
.hero-bg-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(232, 93, 4, 0.08) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Conteúdo - ALINHADO À ESQUERDA */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 600px;
}

/* Badge */
.hero-badge {
  animation: fadeInDown 0.6s ease forwards;
}

/* Título com animação */
.hero-title {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

/* Texto com animação */
.hero-text {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* Botões com animação */
.hero-buttons {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* ===========================================
   BOTÃO SECUNDÁRIO (Outline)
   =========================================== */
.cta-btn-secondary {
  background: transparent;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-orange);
  color: var(--color-orange);
}

/* ===========================================
   KEYFRAMES - Animações
   =========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================================
   RESPONSIVO - Hero
   =========================================== */
@media (max-width:769px) {
	.hero-overlay {
		background: linear-gradient(180deg, rgb(10 22 40 / 61%) 0%, rgba(10, 22, 40, 0.85) 100%)!important;
	}
	.como-grid {padding:0 15px!important;}
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-overlay {
    background: linear-gradient(180deg, 
      rgba(10, 22, 40, 0.95) 0%, 
      rgba(10, 22, 40, 0.85) 100%
    );
  }
  
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}


/* ===========================================
   SEÇÃO DE NÚMEROS (STATS)
   =========================================== */
.numeros-section {
  background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-dark) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(232, 93, 4, 0.05);
}

/* Animação de entrada */
.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay para cada item */
.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }
.stat-item:nth-child(4) { transition-delay: 0.4s; }
.stat-item:nth-child(5) { transition-delay: 0.5s; }

/* Responsivo */
@media (max-width: 768px) {
  .stat-item {
    padding: 15px;
  }
  
  .stat-item span {
    font-size: 2rem;
  }
}


/* ===========================================
   SEÇÃO DE SOLUÇÕES (SERVIÇOS)
   =========================================== */
.solucoes-section {
  background: #f8fafc;
  position: relative;
}

/* Título área */
.solucao-titulo {
  padding-right: 20px;
}

/* Card de solução */
.solucao-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.solucao-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-orange);
}

/* Ícone */
.solucao-icon {
  color: var(--color-orange);
  transition: transform 0.3s ease;
}

.solucao-card:hover .solucao-icon {
  transform: scale(1.1);
}

/* Link Saiba mais */
.solucao-link {
  transition: gap 0.3s ease;
}

.solucao-link:hover {
  gap: 8px;
}

/* Botão Ver Todos */
.cta-btn-solucoes {
  transition: gap 0.3s ease;
}

.cta-btn-solucoes:hover {
  gap: 12px;
}

/* Animação de entrada */
.solucao-card,
.solucao-titulo {
  opacity: 0;
  transform: translateY(20px);
}

.solucao-titulo.animate,
.solucao-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay para cada item */
.solucao-titulo { transition-delay: 0s; }
.solucao-card:nth-child(2) { transition-delay: 0.1s; }
.solucao-card:nth-child(3) { transition-delay: 0.2s; }
.solucao-card:nth-child(4) { transition-delay: 0.3s; }
.solucao-card:nth-child(5) { transition-delay: 0.4s; }

/* Responsivo */
@media (max-width: 1024px) {
  .solucao-titulo {
    text-align: center;
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .solucao-card {
    padding: 20px;
  }
}

/* ===========================================
   SEÇÃO DE OBRAS (CARROSSEL)
   =========================================== */
.obras-section {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-blue) 100%);
  position: relative;
}

/* Card de obra */
.obra-card {
  background: rgba(26, 45, 74, 0.4);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.obra-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 93, 4, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Imagem */
.obra-imagem {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.obra-card:hover .obra-imagem img {
  transform: scale(1.1);
}

/* Overlay */
.obra-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.obra-card:hover .obra-overlay {
  opacity: 1;
}

.obra-btn {
  background: var(--color-orange);
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.obra-btn:hover {
  background: var(--color-orange-hover);
  transform: scale(1.05);
}

/* Informações */
.obra-info {
  padding: 24px;
  background: #fcfcfc;
}

/* Dados - área e prazo */
.obra-dados {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.obra-dado {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Botões de navegação */
.swiper-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.2);
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-btn:hover {
  background: var(--color-orange);
  color: white;
}

.swiper-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Paginação */
.swiper-pagination-obras {
  display: flex;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--color-orange);
  width: 30px;
  border-radius: 5px;
}

/* Swiper slides */
.obras-swiper .swiper-slide {
  height: auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .obra-imagem {
    height: 180px;
  }
  
  .obra-info {
    padding: 20px;
  }
  
  .obra-dados {
    flex-direction: column;
    gap: 12px;
  }
  
  .swiper-btn {
    width: 40px;
    height: 40px;
  }
}


/* Como */

/* ===== RESET ===== */
    .como-section *, .como-section *::before, .como-section *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ===== SEÇÃO PRINCIPAL ===== */
    .como-section {
      padding-top: 30px;
      padding-bottom: 80px;
      background-color: #f8fafc;
    }

    .como-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .como-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }

    @media (min-width: 1024px) {
      .como-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }
    }

    /* ===== TÍTULOS ===== */
    .como-title {
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 40px;
    }

    .como-title--dark {
      color: #1a3a5c;
    }

    .como-title--light {
      color: #ffffff;
      text-align: center;
    }

    /* ===== COLUNA ESQUERDA: POR QUE ESCOLHER ===== */
    .porque-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 640px) {
      .porque-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
      }
    }

    .porque-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .porque-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e85d04;
    }

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

    .porque-text h4 {
      font-size: 13px;
      font-weight: 600;
      color: #1a3a5c;
      margin-bottom: 2px;
      text-transform: none;
    }

    .porque-text p {
      font-size: 12px;
      color: #888888;
      line-height: 1.4;
    }

    /* ===== COLUNA DIREITA: COMO TRABALHAMOS ===== */
    .como-wrapper {
      background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-blue) 100%);
      border-radius: 12px;
      padding: 40px 28px;
      border: 1px solid #1a2d4a;
    }

    @media (min-width: 640px) {
      .como-wrapper {
        padding: 48px 40px;
        min-height: 430px;
      }
    }

    .como-steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }

    @media (min-width: 640px) {
      .como-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 32px;
      }
    }

    .como-step {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .como-numero-wrap {
      flex-shrink: 0;
      position: relative;
    }

    .como-circulo {
      width: 48px;
      height: 48px;
      border: 2px solid #e85d04;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .como-circulo span {
      font-size: 13px;
      font-weight: 700;
      color: #e85d04;
    }

    .como-icone-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 20px;
      height: 20px;
      background-color: #0f1a2e;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .como-icone-badge svg {
      width: 12px;
      height: 12px;
      color: #e85d04;
    }

    .como-step-text {
      padding-top: 4px;
    }

    .como-step-text h4 {
      font-size: 13px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .como-step-text p {
      font-size: 12px;
      color: #a0aec0;
      line-height: 1.4;
    }
   
    .prq {margin-top: 50px;}


   /* ===========================================
   ANIMAÇÃO DE ENTRADA - SEÇÃO POR QUE / COMO
   =========================================== */

/* Estado inicial - invisível */
.porque-item,
.como-step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Estado animado - visível */
.porque-item.animate,
.como-step.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado - POR QUE ITEM (8 itens) */
.porque-item:nth-child(1) { transition-delay: 0.1s; }
.porque-item:nth-child(2) { transition-delay: 0.15s; }
.porque-item:nth-child(3) { transition-delay: 0.2s; }
.porque-item:nth-child(4) { transition-delay: 0.25s; }
.porque-item:nth-child(5) { transition-delay: 0.3s; }
.porque-item:nth-child(6) { transition-delay: 0.35s; }
.porque-item:nth-child(7) { transition-delay: 0.4s; }
.porque-item:nth-child(8) { transition-delay: 0.45s; }

/* Delay escalonado - COMO STEP (6 itens) */
.como-step:nth-child(1) { transition-delay: 0.1s; }
.como-step:nth-child(2) { transition-delay: 0.2s; }
.como-step:nth-child(3) { transition-delay: 0.3s; }
.como-step:nth-child(4) { transition-delay: 0.4s; }
.como-step:nth-child(5) { transition-delay: 0.5s; }
.como-step:nth-child(6) { transition-delay: 0.6s; }

/* Efeito hover suave */
.porque-item:hover,
.como-step:hover {
  transform: translateX(8px);
}

    .text-black, .text-gray-800 {
      color:#1a3a5c!important;
    }
    .white{color:#f8fafc;}

/* carousel logo */
   .carousel-logos-container {
    overflow: hidden;
    background: #f8fafc;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08); */
    }


    .carousel-logos-track {
      display: flex;
      align-items: center;
      gap: 60px;
      animation: carousel-logos-scroll 30s linear infinite;
      width: max-content;
    }

    .carousel-logos-track:hover {
      animation-play-state: paused;
    }

    .carousel-logos-item {
      height: 60px;
      width: auto;
      filter: grayscale(100%);
      transition: all 0.4s ease;
      flex-shrink: 0;
    }

    .carousel-logos-item:hover {
      filter: grayscale(0%);
      transform: scale(1.08);
    }

    @keyframes carousel-logos-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .carousel-logos-item {
        height: 60px;
      }
      .carousel-logos-track {
        gap: 40px;
      }
    }


    /* ===========================================
   ANIMAÇÃO DE ENTRADA - CASES DE SUCESSO
   =========================================== */

/* Estado inicial - invisível */
#cases-section {background: #f8fafc;}

.case-card-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Estado animado - visível */
.case-card-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado */
.case-card-animate:nth-child(1) { transition-delay: 0.1s; }
.case-card-animate:nth-child(2) { transition-delay: 0.3s; }

/* Efeito hover nas imagens */
.case-card-animate img {
  transition: transform 0.4s ease;
}

.case-card-animate:hover img {
  transform: scale(1.05);
}

/* Cor laranja customizada #e85d04 */
.text-orange-custom {
  color: #e85d04;
}

.border-orange-custom {
  border-color: #e85d04;
}

.bg-orange-custom {
  background-color: #e85d04;
}

.hover\:bg-orange-custom:hover {
  background-color: #e85d04;
}

.hover\:text-white:hover {
  color: white;
}


/* Seção Blog */

#secao-blog {
  background: #f8fafc;
} 
.secao-blog-int {
  padding-top: 60px;
  border-top: 1px solid #cccccc7d;
} 

/* ===========================================
   ANIMAÇÃO DE ENTRADA - SEÇÃO BLOG
   =========================================== */

/* Estado inicial - invisível */
.blog-card-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Estado animado - visível */
.blog-card-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado para os 4 cards */
.blog-card-animate:nth-child(1) { transition-delay: 0.1s; }
.blog-card-animate:nth-child(2) { transition-delay: 0.2s; }
.blog-card-animate:nth-child(3) { transition-delay: 0.3s; }
.blog-card-animate:nth-child(4) { transition-delay: 0.4s; }

/* Animação do banner lateral */
.blog-banner-animate {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.5s;
}

.blog-banner-animate.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Efeito hover nas imagens */
.blog-card-animate img {
  transition: transform 0.4s ease;
}

.blog-card-animate:hover img {
  transform: scale(1.08);
}

/* Linha laranja abaixo do título */
.line-orange {
  width: 50px;
  height: 3px;
  background-color: #e85d04;
}

/* ===========================================
           ANIMAÇÃO DE ENTRADA - SEÇÃO NEWSLETTER
           =========================================== */
        
        /* Estado inicial - invisível */
        .newsletter-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* Estado animado - visível */
        .newsletter-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Delay escalonado para os elementos */
        .newsletter-animate:nth-child(1) { transition-delay: 0.1s; }
        .newsletter-animate:nth-child(2) { transition-delay: 0.2s; }
        .newsletter-animate:nth-child(3) { transition-delay: 0.3s; }
        .newsletter-animate:nth-child(4) { transition-delay: 0.4s; }

        /* Animação do ícone */
        .newsletter-icon-animate {
            opacity: 0;
            transform: scale(0.5) rotate(-20deg);
            transition: opacity 0.5s ease, transform 0.5s ease;
            transition-delay: 0.1s;
        }

        .newsletter-icon-animate.animate {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        /* Animação do texto */
        .newsletter-text-animate {
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            transition-delay: 0.2s;
        }

        .newsletter-text-animate.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Animação dos inputs */
        .newsletter-input-animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .newsletter-input-animate:nth-child(1) { transition-delay: 0.3s; }
        .newsletter-input-animate:nth-child(2) { transition-delay: 0.4s; }

        .newsletter-input-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animação do botão */
        .newsletter-btn-animate {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease;
            transition-delay: 0.5s;
        }

        .newsletter-btn-animate.animate {
            opacity: 1;
            transform: scale(1);
        }

        /* Efeito hover no botão */
        .newsletter-btn-animate:hover {
            background-color: #1e293b !important;
        }

        /* Efeito focus nos inputs */
        .newsletter-input:focus {
            outline: none;
            border-color: #fff;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
          }

          
        /* Estado inicial - invisível */
        .footer-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        /* Estado animado - visível */
        .footer-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Delay escalonado para as colunas */
        .footer-col-animate:nth-child(1) { transition-delay: 0.1s; }
        .footer-col-animate:nth-child(2) { transition-delay: 0.2s; }
        .footer-col-animate:nth-child(3) { transition-delay: 0.3s; }
        .footer-col-animate:nth-child(4) { transition-delay: 0.4s; }
        .footer-col-animate:nth-child(5) { transition-delay: 0.5s; }

        /* Animação do logo */
        .footer-logo-animate {
            opacity: 0;
            transform: scale(0.8) translateY(-20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
            transition-delay: 0.1s;
        }

        .footer-logo-animate.animate {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* Animação das colunas de links */
        .footer-col-animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .footer-col-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animação dos links individuais */
        .footer-link-animate {
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
        }

        .footer-col-animate.animate .footer-link-animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Delay escalonado para os links */
        .footer-col-animate.animate .footer-link-animate:nth-child(1) { transition-delay: 0.1s; }
        .footer-col-animate.animate .footer-link-animate:nth-child(2) { transition-delay: 0.15s; }
        .footer-col-animate.animate .footer-link-animate:nth-child(3) { transition-delay: 0.2s; }
        .footer-col-animate.animate .footer-link-animate:nth-child(4) { transition-delay: 0.25s; }
        .footer-col-animate.animate .footer-link-animate:nth-child(5) { transition-delay: 0.3s; }
        .footer-col-animate.animate .footer-link-animate:nth-child(6) { transition-delay: 0.35s; }

        /* Animação dos ícones sociais */
        .footer-social-animate {
            opacity: 0;
            transform: scale(0);
            transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
        }

        .footer-social-animate:nth-child(1) { transition-delay: 0.3s; }
        .footer-social-animate:nth-child(2) { transition-delay: 0.4s; }
        .footer-social-animate:nth-child(3) { transition-delay: 0.5s; }

        .footer-logo-animate.animate ~ .footer-social-animate,
        .footer-social-animate.animate {
            opacity: 1;
            transform: scale(1);
        }

        /* Animação do copyright */
        .footer-copyright-animate {
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            transition-delay: 0.6s;
        }

        .footer-copyright-animate.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Efeito hover nos links */
        .footer-link-animate:hover {
            color: #f97316 !important;
        }

        /* Efeito hover nos ícones sociais */
        .footer-social-animate:hover {
            color: #f97316 !important;
        }

        /* Linha laranja no topo */
        .footer-top-line {
            height: 4px;
            background-color: #f97316;
        }

        /* Gradient background */
        .footer-gradient {
            background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-dark) 100%);
        }


		.footer-link-animate {
			gap: 5px;
			display: inline-flex;
			align-items: center;
		}
		.footer-link-animate2 {
			gap: 5px;
			display: inline-flex;
			align-items: normal;
		}

.footer-link-animate2 svg {    margin-left: -4px;}

.mysimg {padding-bottom:40px!important;}

@media (max-width:769px){
	.mysimg {padding-bottom:0px!important;}
	.mysimg {margin-bottom: -60px;}
}

