@charset "UTF-8";
/* CSS Document */
/* ------------------------------------------------
 * Project Name: Tagget – Página Oficial de Lançamento
 * Project Description: Tagget – sua identidade em um toque. Uma plataforma premium de apresentação pessoal com cartões NFC e bio links personalizados.
 * Tags: tagget, identidade digital, link personalizado, cartão nfc, bio link, apresentação pessoal, branding, presença online, tecnologia, landing page, coming soon, html5, css3
 * Version: 1.0.0
 * Build Date: Maio 2025
 * Last Update: Maio 2025
 * Este projeto é desenvolvido exclusivamente para a marca Tagget
 * Author: Wendel Vieira
 * Author URI: https://tagget.me
 * File name: main.css
 * ------------------------------------------------
 *
 * ------------------------------------------------
 * Table of Contents
 * ------------------------------------------------
 *  1. Template Backgrounds
 *  2. Fonts
 *  3. Base CSS Styles
 *  4. Loading Animation
 *  5. Typography
 *  6. Buttons & Controls
 *  7. Forms and Forms Reply Groups
 *  8. Animated Headline
 *  9. Animated Backgrounds
 *  10. Header
 *  11. Main Section
 *  12. Menu
 *  13. Socials
 *  14. Countdown
 *  15. Swiper Slider
 *  16. Popup Dialogs
 *  17. Inner Sections
 *  18. Skillbars
 *  19. Features
 *  10. Contact Data
 *  21. Google Map
 *  22. Gallery
 * ------------------------------------------------
 * Table of Contents End
 * ------------------------------------------------ */

/* ===================================================================================
   VARIÁVEIS GLOBAIS CSS – START
   =================================================================================== */

/* ================================================================================
🎨 CORES BASE
================================================================================ */
:root {
  --black-color: #0c0c0c;
  --black-color-light: #212121;
  --white-color: #ffffff;
  --white-color-light: #ebebeb;
  --gray-color: #757575;
  --gray-color-light: #d3d3d3;

  --light-theme-color-01: #68a3d0; /* Azul chá */
  --light-theme-color-02: #85c964; /* Verde chá */
  --light-theme-color-03: #f1c235; /* Amarelo chá */
  --light-theme-color-04: #c17ff0; /* purple */
  --light-theme-color-05: #df73a5; /* pink */
  --light-theme-color-06: #ef9f44; /* orange */
  --light-theme-color-07: #abcc21; /* green */

  --color-theme-01: #6436f8; /* Roxo */
  --color-theme-02: #00ffc3; /* Verde Água */
  --color-theme-03: #00f0ff; /* Azul Neon */
  --color-theme-04: #6a00ff; /* Roxo Intenso */
  --color-theme-05: #ff00cc; /* Rosa Neon */
  --color-theme-06: #ff9900; /* Laranja Neon */
  --color-theme-07: #0071e3; /* Azul solido */
  --color-theme-08: #0090f7; /* Azul hover*/

  --gradient-ai-01: #0090f7;
  --gradient-ai-02: #ba62fc;
  --gradient-ai-03: #f2416b;
  --gradient-ai-04: #f55600;

  /* ================================================================================
  📌 GRADIENTES PADRÃO (Sistema Escalável)
  ================================================================================ */

  --gradient-theme-tea-01: linear-gradient(
    to right,
    var(--light-theme-color-03),
    var(--light-theme-color-07) 100%
  );

  --gradient-theme-tea-02: linear-gradient(
    90deg,
    var(--light-theme-color-01),
    var(--light-theme-color-02) 100%
  );

  --gradient-theme-tea-03: linear-gradient(
    90deg,
    var(--light-theme-color-01),
    var(--light-theme-color-03) 100%
  );

  --gradient-theme-clean: linear-gradient(
    90deg,
    var(--light-theme-color-01),
    var(--light-theme-color-02) 50%,
    var(--light-theme-color-03) 100%
  );

  --shared-gradient-end: linear-gradient(
    to right,
    var(--light-theme-color-04),
    var(--light-theme-color-05) 61%,
    var(--light-theme-color-06) 100%
  );

  --shared-gradient-bar: linear-gradient(
    to right,
    var(--light-theme-color-04) 10%,
    var(--light-theme-color-05) 19%,
    var(--light-theme-color-06) 30%,
    var(--light-theme-color-03) 42%,
    var(--light-theme-color-07) 89%
  );

  --shared-light-theme-color-04: linear-gradient(
    to right,
    var(--light-theme-color-04),
    var(--light-theme-color-05) 100%
  );

  /* Tema Principal */
  --gradient-theme-vertical: linear-gradient(
    180deg,
    var(--color-theme-02) 0%,
    var(--color-theme-01) 100%
  );
  --gradient-theme-horizontal: linear-gradient(
    90deg,
    var(--color-theme-02) 0%,
    var(--color-theme-01) 100%
  );

  /* Gradiente Escuro */
  --gradient-dark-diagonal: linear-gradient(
    135deg,
    var(--black-color) 0%,
    var(--black-color-light) 100%
  );

  /* Gradiente Colorido Fixo */
  --gradient-theme-color: linear-gradient(
    to right,
    var(--color-theme-03) 0%,
    var(--color-theme-04) 100%
  );

  --gradient-theme-color-01: linear-gradient(
    to right,
    var(--color-theme-02) 0%,
    var(--color-theme-06) 100%
  );

  /* Gradiente Animado (Multicolorido) */
  --gradient-colorflow: linear-gradient(
    90deg,
    var(--gradient-ai-01),
    var(--gradient-ai-02),
    var(--gradient-ai-03),
    var(--gradient-ai-04)
  );
  /* --gradient-colorflow: linear-gradient(90deg, #00f0ff, #6a00ff, #ff00cc, #00ffc3, #ff9900); */

  /* Black Glass Effect */
  --glass-black-00: rgba(0, 0, 0, 0);
  --glass-black-01: rgba(0, 0, 0, 0.1);
  --glass-black-02: rgba(0, 0, 0, 0.2);
  --glass-black-03: rgba(0, 0, 0, 0.3);
  --glass-black-04: rgba(0, 0, 0, 0.4);
  --glass-black-05: rgba(0, 0, 0, 0.5);
  --glass-black-06: rgba(0, 0, 0, 0.6);
  --glass-black-07: rgba(0, 0, 0, 0.7);
  --glass-black-08: rgba(0, 0, 0, 0.8);
  --glass-black-09: rgba(0, 0, 0, 0.9);

  /* White Glass Effect */
  --glass-white-00: rgba(255, 255, 255, 0);
  --glass-white-01: rgba(255, 255, 255, 0.15);
  --glass-white-02: rgba(255, 255, 255, 0.2);
  --glass-white-03: rgba(255, 255, 255, 0.3);
  --glass-white-04: rgba(255, 255, 255, 0.4);
  --glass-white-06: rgba(255, 255, 255, 0.6);
  --glass-white-07: rgba(255, 255, 255, 0.7);

  /* Error color */
  --error-color: #ff8989;
  --glass-color-error-01: rgba(255, 137, 137, 0.1);
  --glass-color-error-02: rgba(255, 68, 68, 0.2);
  --glass-color-error-03: rgba(255, 68, 68, 0.3);

  /* Color of success */
  --success-color: #00cc66;
  --glass-color-success-01: rgba(0, 204, 102, 0.1);
  --glass-color-success-02: rgba(0, 204, 102, 0.2);
  --glass-color-success-03: rgba(0, 204, 102, 0.3);
  --glass-color-success-04: rgba(0, 204, 102, 0.4);
  --glass-color-success-05: rgba(0, 204, 102, 0.5);

  /* ===============================================================
   Variáveis CSS - Font Families do Projeto
   =============================================================== */
  /* Fontes principais */
  --font-gotham: "Gotham", sans-serif;
  --font-gotham-narrow: "Gotham Narrow", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;

  /* Exemplo de uso de peso (para fácil referência futura) */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* ===================================================================================
   VARIÁVEIS GLOBAIS CSS – FIM
   =================================================================================== */

/* ################################################################################### */
/* ################################################################################### */
/* ################################################################################### */

/* ===============================================================
   Fonts Start
   =============================================================== */

/* ===============================================================
   Fontes Gotham - Estrutura Font-Face Profissional
   =============================================================== */

/* Gotham Book (Regular - Peso 400) */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham/Gotham-Book.woff2") format("woff2"),
    url("../fonts/Gotham/Gotham-Book.woff") format("woff"),
    url("../fonts/Gotham/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* Gotham Medium (Peso 500) */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham/Gotham-Medium.woff2") format("woff2"),
    url("../fonts/Gotham/Gotham-Medium.woff") format("woff"),
    url("../fonts/Gotham/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* Gotham Bold (Peso 700) */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham/Gotham-Bold.woff2") format("woff2"),
    url("../fonts/Gotham/Gotham-Bold.woff") format("woff"),
    url("../fonts/Gotham/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* Gotham Narrow Medium (Peso 500) */
@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/Gotham/Narrow/GothamNarrow-Medium.woff2") format("woff2"),
    url("../fonts/Gotham/Narrow/GothamNarrow-Medium.woff") format("woff"),
    url("../fonts/Gotham/Narrow/GothamNarrow-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* ===============================================================
   Fontes Montserrat - Estrutura Font-Face para Web
   =============================================================== */

/* Montserrat Regular (Peso 400) */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/woff2/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat/woff/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat/ttf/Montserrat-Regular.ttf") format("truetype"),
    url("../fonts/Montserrat/eot/Montserrat-Regular.eot");
  font-weight: 400;
  font-style: normal;
}

/* Montserrat Medium (Peso 500) */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/woff2/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat/woff/Montserrat-Medium.woff") format("woff"),
    url("../fonts/Montserrat/ttf/Montserrat-Medium.ttf") format("truetype"),
    url("../fonts/Montserrat/eot/Montserrat-Medium.eot");
  font-weight: 500;
  font-style: normal;
}

/* Montserrat Bold (Peso 700) */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/woff2/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat/woff/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat/ttf/Montserrat-Bold.ttf") format("truetype"),
    url("../fonts/Montserrat/eot/Montserrat-Bold.eot");
  font-weight: 700;
  font-style: normal;
}

/* ===============================================================
   Fonts End
   =============================================================== */

/* ################################################################################### */
/* ################################################################################### */
/* ################################################################################### */

/* ===============================================================
   EXEMPLOS DE USO DAS FONTES DO PROJETO
   ===============================================================

   Esta seção serve como guia prático para utilização das fontes
   declaradas nas variáveis do :root.

   ---------------------------------------------------------------
   Font Families disponíveis:
   ---------------------------------------------------------------
   - var(--font-gotham)          → Para títulos e elementos de destaque
   - var(--font-gotham-narrow)   → Para menus, botões e textos compactos
   - var(--font-montserrat)      → Para textos corridos, parágrafos e conteúdo geral

   ---------------------------------------------------------------
   Font Weights disponíveis (personalizáveis se quiser):
   ---------------------------------------------------------------
   - var(--font-weight-regular)  → Peso 400 (normal)
   - var(--font-weight-medium)   → Peso 500 (médio)
   - var(--font-weight-bold)     → Peso 700 (bold)

   =============================================================== */

/* ===============================================================
   Exemplo 1: Títulos principais (Ex: H1, H2, H3)
   =============================================================== */
h1,
h2,
h3 {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-bold);
}

/* ===============================================================
   Exemplo 2: Títulos secundários, menus, links de navegação (Ex: H4, H5, H6, nav links)
   =============================================================== */
h4,
h5,
h6,
.menu,
.nav-link {
  font-family: var(--font-gotham-narrow);
  font-weight: var(--font-weight-medium);
}

/* ===============================================================
   Exemplo 3: Texto corrido, parágrafos, conteúdo de leitura (Ex: p, .text, .paragraph)
   =============================================================== */
p,
.text,
.paragraph,
.content {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
}

/* ===============================================================
   Exemplo 4: Caso queira usar Montserrat em um título secundário
   =============================================================== */
/* .section-title {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-bold);
} */

/* ===============================================================
   TYPOGRAPHY - NOVO PADRÃO DE FONTES
   ===============================================================
   Todas as fontes foram atualizadas para usar as variáveis CSS 
   do projeto. As antigas (Oswald e Roboto) foram removidas.

   Fontes agora usadas:
   - Gotham → Títulos principais e de destaque
   - Gotham Narrow → Navegação e elementos compactos
   - Montserrat → Texto corrido, parágrafos e conteúdos gerais
   =============================================================== */

/* ------------------------------------------------
   TITLES - H1, H2, H3 - TÍTULOS PRINCIPAIS
------------------------------------------------ */
h1,
h2,
h3 {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--white-color);
}

/* Estilo específico para H1 */
h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h1.large {
  font-size: 3.7rem;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 5.4rem;
  }
  h1.large {
    font-size: 6rem;
  }
}
@media only screen and (min-width: 992px) {
  h1.large {
    font-size: 8rem;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 7rem;
  }
  h1.large {
    font-size: 8rem;
  }
}

/* Estilo específico para H2 */
h2 {
  font-weight: var(--font-weight-medium);
  font-size: 4rem;
  line-height: 1.1;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 4.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 6rem;
  }
}

/* Estilo específico para H3 */
h3 {
  font-weight: var(--font-weight-medium);
  font-size: 2.6rem;
  line-height: 1.2;
  color: var(--black-color-light);
}
h3 small {
  display: block;
  font-weight: var(--font-weight-medium);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--gray-color);
}

/* ------------------------------------------------
   TITLES SECUNDÁRIOS - H4, H5, H6 - MENU E LINKS
------------------------------------------------ */
h4,
h5,
h6,
.menu,
.nav-link,
.navigation__item .link {
  font-family: var(--font-gotham-narrow);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  color: var(--white-color);
}

h4 {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1400px) {
  h4 {
    font-size: 2.2rem;
  }
}

h5 {
  font-size: 1.6rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1400px) {
  h5 {
    font-size: 1.8rem;
  }
}

/* Exemplo para links de navegação */
.navigation__item .link {
  font-size: 4.6rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .navigation__item .link {
    font-size: 5.4rem;
  }
}
@media only screen and (min-width: 1400px) {
  .navigation__item .link {
    font-size: 7rem;
  }
}

/* ------------------------------------------------
   TEXTOS CORRIDOS - PARÁGRAFOS, DESCRIÇÕES
------------------------------------------------ */
p,
.text,
.paragraph,
.content,
.popup-title__text {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--glass-white-07);
}
@media only screen and (min-width: 1400px) {
  p {
    font-size: 1.6rem;
  }
}

p span {
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
}

p.headline__text {
  color: var(--white-color);
  max-width: 360px;
}
@media only screen and (min-width: 1400px) {
  p.headline__text {
    max-width: 440px;
  }
}

p.section-text {
  padding-left: 2px;
  margin-top: 3.6rem;
}

/* ------------------------------------------------
   TEXTOS EM ELEMENTOS SECUNDÁRIOS (ex: .subtitle)
------------------------------------------------ */
.subtitle,
.popup-title__subtitle,
.navigation__item .subtitle {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding-left: 2px;
  color: var(--white-color);
}

/* ------------------------------------------------
   COPYRIGHT E TEXTOS PEQUENOS
------------------------------------------------ */
.media__copyright p,
.side-copyright p {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.1rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--white-color);
}

/* ------------------------------------------------
   FINAL DA SEÇÃO DE TIPOGRAFIA
------------------------------------------------ */

/* ------------------------------------------------*/
/* Template Backgrounds Start */
/* ------------------------------------------------*/

.fullscreen-bg-1 {
  background-image: url("../img/backgrounds/poster.jpg");
}

.about-image {
  background-image: url("../img/about/about-me.jpg");
}

.contact-image {
  background-image: url("../img/contact/contact.jpg");
}

.menu-image-1 {
  background-image: url("../img/menu/menu-01.jpg");
}

.menu-image-2 {
  background-image: url("../img/menu/menu-02.jpg");
}

.menu-image-3 {
  background-image: url("../img/menu/menu-03.jpg");
}

.menu-image-4 {
  background-image: url("../img/menu/menu-04.jpg");
}

.menu-image-5 {
  background-image: url("../img/menu/menu-05.jpg");
}

.menu-image-6 {
  background-image: url("../img/menu/menu-06.jpg");
}

/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/

/* ------------------------------------------------
   Base CSS Styles Start
------------------------------------------------ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0 !important;
}

::-moz-selection {
  background-color: var(--light-theme-color-01);
  color: var(--black-color-light);
  text-shadow: none;
}

::selection {
  background-color: var(--light-theme-color-01);
  color: var(--black-color-light);
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 5px;
  background: var(--black-color);
}

@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: var(--black-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-colorflow);
  border-radius: 10px;
}

html {
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden !important;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: var(--black-color); /* Cor de fundo da página */
}

/* ------------------------------------------------
   /Base CSS Styles Start
------------------------------------------------ */

/* ===============================================================
   Estilos Gerais - Backgrounds, Layouts e Efeitos Visuais
   =============================================================== */

/* ------------------------------------------------
   Camadas de Fundo do Body (Ruído e Cor Base)
------------------------------------------------ */
body::before,
body::after {
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 10%;
}

body::before {
  background: var(--black-color);
  filter: url(#noiseFilter); /* Efeito de ruído */
}

/* ===============================================================
   Efeitos de Fundo - Blurs e Círculos Decorativos
   =============================================================== */
.circle {
  height: 150px;
  width: 150px;
  position: absolute;
  background-color: var(--black-color);
  filter: blur(150px);
  border-radius: 150px;
}

.one {
  left: -5%;
  top: -5%;
}

.two {
  bottom: 0;
  right: 0;
}

/* ===============================================================
   Estrutura de Seções
   =============================================================== */
section {
  position: relative;
  min-width: 320px;
}

/* ===============================================================
   Links - Estilo Base para âncoras
   =============================================================== */
a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: var(--glass-black-00);
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
}

/* ===============================================================
   Imagens - Comportamento Responsivo
   =============================================================== */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===============================================================
   Controle de Overflow
   =============================================================== */
.overflow-hidden {
  overflow: hidden !important;
}

/* ===============================================================
   Controle de Altura - Layout Responsivo
   =============================================================== */
.fullheight {
  position: static;
  height: auto;
}

@media only screen and (min-width: 1200px) {
  .fullheight {
    position: relative;
    height: 100%;
  }
}

.fullheight-mobile {
  position: relative;
  height: 100%;
  min-height: 568px;
}

/* ===============================================================
   Background Fullscreen
   =============================================================== */
.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -moz-background-size: cover;
}

/* ===============================================================
   Camadas de Cor e Gradiente
   =============================================================== */
.color-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.color-layer-medium {
  background-color: var(--glass-black-05);
  mix-blend-mode: hard-light;
}

.color-layer-dark {
  background-color: var(--glass-black-08);
}

.color-layer-black {
  background-color: var(--glass-black-04);
}

.gradient-layer-dark {
  background: var(--gradient-dark-diagonal);
  opacity: 0.6;
}

.gradient-layer-dark-08 {
  background: var(--black-color);
  opacity: 0.7;
}

.gradient-layer-bottom-low {
  background: var(--gradient-dark-diagonal);
}

/* ===============================================================
   Backgrounds de Cor Direta
   =============================================================== */
.bg-light {
  background-color: var(--white-color);
}

.bg-medium {
  background-color: var(--gray-color-light);
}

.bg-dark {
  background-color: var(--black-color);
}

/* ------------------------------------------------
   Base CSS Styles End
------------------------------------------------ */

/* ------------------------------------------------
   Loading Animation Start
------------------------------------------------ */

/* ------------------------------------------------
   Animação de Entrada da Header
------------------------------------------------ */
body .header {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

body .header .menu-button,
body .side-copyright,
body .socials-desktop {
  opacity: 0;
  transition: opacity 0.8s 0.8s ease-in-out;
  -webkit-transition: opacity 0.8s 0.8s ease-in-out;
  -moz-transition: opacity 0.8s 0.8s ease-in-out;
  -o-transition: opacity 0.8s 0.8s ease-in-out;
}

body.loaded .header,
body.fullscreen.loaded .header {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
}

body.loaded .header .menu-button,
body.loaded .socials-desktop,
body.fullscreen.loaded .header .menu-button,
body.fullscreen.loaded .side-copyright {
  opacity: 1;
}

body.fullscreen.loaded .header .menu-button,
body.fullscreen.loaded .side-copyright {
  transition: opacity 0.8s 0.3s ease-in-out;
  -webkit-transition: opacity 0.8s 0.3s ease-in-out;
  -moz-transition: opacity 0.8s 0.3s ease-in-out;
  -o-transition: opacity 0.8s 0.3s ease-in-out;
}

/* ------------------------------------------------
   Animação de Entrada da Intro e Socials
------------------------------------------------ */
.main .intro__content,
.main .main__content .socials-absolute,
.main .main__content .socials-mobile,
.main .main__content .main__media .media__content {
  opacity: 0;
}

.main .main__content .socials-absolute,
.main .main__content .socials-mobile {
  transition: opacity 0.8s 0.8s ease-in-out;
  -webkit-transition: opacity 0.8s 0.8s ease-in-out;
  -moz-transition: opacity 0.8s 0.8s ease-in-out;
  -o-transition: opacity 0.8s 0.8s ease-in-out;
}

.main.animate-in .intro__content {
  animation: 0.8s ease-in-out 0.8s 1 both fadeIn;
  -webkit-animation: 0.8s ease-in-out 0.8s 1 both fadeIn;
  -moz-animation: 0.8s ease-in-out 0.8s 1 both fadeIn;
}

.main.animate-in .socials-absolute,
.main.animate-in .socials-mobile {
  opacity: 1;
}

.main.animate-in .main__media .main__darkscreen {
  z-index: 2;
  animation: 1s ease-in-out 0s 1 both blockMove;
  -webkit-animation: 1s ease-in-out 0s 1 both blockMove;
  -moz-animation: 1s ease-in-out 0s 1 both blockMove;
}

.main.animate-in .main__media .media__content {
  z-index: 1;
  animation: 1s ease-in-out 0s 1 both itemsOpacityReverse;
  -webkit-animation: 1s ease-in-out 0s 1 both itemsOpacityReverse;
  -moz-animation: 1s ease-in-out 0s 1 both itemsOpacityReverse;
}

.main.fullscreen.animate-in .intro__content {
  animation: 0.8s ease-in-out 0.3s 1 both fadeIn;
  -webkit-animation: 0.8s ease-in-out 0.3s 1 both fadeIn;
  -moz-animation: 0.8s ease-in-out 0.3s 1 both fadeIn;
}

/* ------------------------------------------------
   Keyframes - Animações Personalizadas
------------------------------------------------ */

/* Animação de movimento vertical tipo block */
@-webkit-keyframes blockMove {
  0% {
    -webkit-transform: translateY(102%);
    transform: translateY(102%);
  }
  35%,
  55% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }
}
@-moz-keyframes blockMove {
  0% {
    -moz-transform: translateY(102%);
    transform: translateY(102%);
  }
  35%,
  55% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -moz-transform: translateY(-102%);
    transform: translateY(-102%);
  }
}
@keyframes blockMove {
  0% {
    transform: translateY(102%);
  }
  35%,
  55% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-102%);
  }
}

/* Animação de opacidade reversa para conteúdos */
@-webkit-keyframes itemsOpacityReverse {
  0%,
  35% {
    opacity: 0;
  }
  60%,
  100% {
    opacity: 1;
  }
}
@-moz-keyframes itemsOpacityReverse {
  0%,
  35% {
    opacity: 0;
  }
  60%,
  100% {
    opacity: 1;
  }
}
@keyframes itemsOpacityReverse {
  0%,
  35% {
    opacity: 0;
  }
  60%,
  100% {
    opacity: 1;
  }
}

/* ------------------------------------------------
   Loading Animation End
------------------------------------------------ */

/* ------------------------------------------------
   Typography Start
------------------------------------------------ */

/* ===============================================================
   Estilo para H1 com Texto em Gradiente Animado
   =============================================================== */
h1 span.gradient-text {
  background: var(--gradient-colorflow);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: textShine 5s ease infinite;
  display: inline-block;
}

/* Animação de Movimento do Gradiente */
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===============================================================
   Links no Copyright - Com Transição de Cor
   =============================================================== */
.media__copyright a,
.side-copyright a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.no-touch .media__copyright a:hover,
.no-touch .side-copyright a:hover {
  color: var(--color-theme-08);
}

/* ===============================================================
   Texto do Copyright - Estilo Geral
   =============================================================== */
.side-copyright p {
  color: var(--glass-white-06);
}

/* ===============================================================
   Popup Titles - Ajustado para Nova Tipografia
   =============================================================== */
.popup-title__subtitle {
  display: block;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--white-color);
  padding-left: 2px;
}

.popup-title__title {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
  font-size: 3.6rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white-color);
}

@media only screen and (min-width: 576px) {
  .popup-title__title {
    font-size: 3.8rem; /* Tablets pequenos (Ex: iPhone Plus, Galaxy S8+) */
  }
}

@media only screen and (min-width: 768px) {
  .popup-title__title {
    font-size: 4.2rem; /* Tablets médios (iPad Mini, etc) */
  }
}

@media only screen and (min-width: 1200px) {
  .popup-title__title {
    font-size: 4.6rem; /* Desktop padrão */
  }
}

@media only screen and (min-width: 1400px) {
  .popup-title__title {
    font-size: 5rem; /* Telas grandes (Monitores wide) */
  }
}

.popup-title__text {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  color: var(--glass-white-07);
  margin-top: 3.6rem;
}

/* ------------------------------------------------
   Typography End
------------------------------------------------ */

/* ------------------------------------------------
   Buttons & Controls Start
------------------------------------------------ */

/* Botão Menu Trigger (Hamburger) */
.menu-trigger {
  display: block;
  position: relative;
  width: 34px;
  height: 34px;
}

.menu-trigger::before,
.menu-trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  width: 34px;
  height: 2px;
  background-color: var(--white-color);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.menu-trigger::before {
  transform: translateY(-4px) rotate(0deg);
  -webkit-transform: translateY(-4px) rotate(0deg);
  -moz-transform: translateY(-4px) rotate(0deg);
  -ms-transform: translateY(-4px) rotate(0deg);
}

.menu-trigger::after {
  transform: translateY(4px) rotate(0deg);
  -webkit-transform: translateY(4px) rotate(0deg);
  -moz-transform: translateY(4px) rotate(0deg);
  -ms-transform: translateY(4px) rotate(0deg);
}

.menu-trigger.menu-opened::before {
  transform: translateY(0) rotate(45deg);
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
}

.menu-trigger.menu-opened::after {
  transform: translateY(0) rotate(-45deg);
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
}

@media only screen and (min-width: 1200px) {
  .no-touch .menu-trigger:hover::before,
  .no-touch .menu-trigger:hover::after {
    transform: translateY(0) rotate(0deg);
    -webkit-transform: translateY(0) rotate(0deg);
    -moz-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
  }
}

@media only screen and (min-width: 1400px) {
  .menu-trigger::before,
  .menu-trigger::after {
    width: 40px;
  }
}

/* Botão Close Section */
.section-close {
  display: block;
  position: relative;
  width: 34px;
  height: 34px;
  transform: scale(0);
  transition: transform 0.5s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  -o-transition: transform 0.5s;
}

.section-close::before,
.section-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  width: 34px;
  height: 2px;
  background-color: var(--white-color);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.section-close::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.section-close::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.section-close.popup-opened {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
}

@media only screen and (min-width: 1200px) {
  .no-touch .section-close:hover::before,
  .no-touch .section-close:hover::after {
    transform: translateY(0) rotate(0deg);
    -webkit-transform: translateY(0) rotate(0deg);
    -moz-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
  }
}

/* Botão Genérico */
.btn {
  position: relative;
  display: block;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  text-align: center;
}

@media only screen and (min-width: 576px) {
  .btn {
    display: inline-block;
  }
}

/* Botões Grandes - Linha */
.btn-l {
  margin: 0 0 1rem 0;
}

.btn-l:last-of-type {
  margin: 0;
}

.btn-l .btn-caption {
  position: relative;
  display: block;
  height: 48px;
  padding: 0 4.2rem;
  font-family: var(--font-gotham-narrow);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 48px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--white-color);
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  -moz-transition: color 0.3s;
}

.btn-l .btn-border {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--white-color);
}

.btn-l .btn-hover {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 300%;
  background: var(--gradient-colorflow);
  transition: transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  -o-transition: transform 0.5s;
}

@media only screen and (min-width: 576px) {
  .btn-l {
    margin: 0 2rem 0 0;
  }
  .btn-l:last-of-type {
    margin: 0;
  }
}

/* Botão Estilo Gradient */
.btn-gradient .btn-hover {
  top: -100%;
  transform: translateY(0) rotate(0deg);
  -webkit-transform: translateY(0) rotate(0deg);
  -moz-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
}

.no-touch .btn-gradient:hover .btn-hover {
  transform: translateX(114%) rotate(25deg);
  -webkit-transform: translateX(114%) rotate(25deg);
  -moz-transform: translateX(114%) rotate(25deg);
  -ms-transform: translateX(114%) rotate(25deg);
}

/* Botão Estilo Outline */
.btn-outline .btn-hover {
  top: -150%;
  transform: translateX(-105%) rotate(25deg);
  -webkit-transform: translateX(-105%) rotate(25deg);
  -moz-transform: translateX(-105%) rotate(25deg);
  -ms-transform: translateX(-105%) rotate(25deg);
}

.no-touch .btn-outline:hover .btn-hover {
  transform: translateY(0) rotate(0deg);
  -webkit-transform: translateY(0) rotate(0deg);
  -moz-transform: translateY(0) rotate(0deg);
  -ms-transform: translateY(0) rotate(0deg);
}

/* ------------------------------------------------
   Buttons & Controls End
------------------------------------------------ */

/* ===============================================================
   Notify Form - Formulários Gerais | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Estrutura Base do Formulário
------------------------------------------------ */
.form-container {
  position: relative;
}

.form {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.form.is-hidden {
  opacity: 0;
}

form {
  position: relative;
  width: 100%;
}

form input,
form textarea {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 1.2rem 0.2rem;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.6;
  transition: border-bottom 0.6s;
}

form input {
  height: 4.2rem;
  margin: 0 0 2.4rem 0;
}

form textarea {
  height: 12rem;
  resize: none;
  margin: 0 0 0.8rem 0;
}

form .inputs-description {
  display: block;
  width: 100%;
  margin-bottom: 1.4rem;
  text-align: right;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.2rem;
  line-height: 1;
}

.notify-form input {
  margin: 0 0 0.8rem 0;
}

/* ------------------------------------------------
   2. Estilo Claro do Formulário (Form-Light)
------------------------------------------------ */
.form-light input,
.form-light textarea {
  font-weight: 300;
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
}

.form-light input:focus,
.form-light textarea:focus {
  border-bottom: 2px solid var(--color-theme-02);
}

.form-light .inputs-description {
  color: var(--glass-white-06);
}

/* Placeholder cross-browser */
.form-light ::-webkit-input-placeholder,
.form-light :-moz-placeholder,
.form-light ::-moz-placeholder,
.form-light :-ms-input-placeholder {
  color: var(--glass-white-06);
}

.form-light input:focus:required:invalid,
.form-light textarea:focus:required:invalid {
  color: var(--white-color);
}

.form-light input:required:valid,
.form-light textarea:required:valid {
  color: var(--white-color);
}

/* ------------------------------------------------
   3. Validação - Campos Inválidos
------------------------------------------------ */
.form-input.is-invalid {
  border-color: var(--error-color) !important;
  box-shadow: 0 0 0 2px var(--glass-color-error-02) !important;
}

.form-input:focus.is-invalid {
  border-color: var(--error-color) !important;
  box-shadow: 0 0 0 3px var(--glass-color-error-03) !important;
}

.error-message {
  color: var(--error-color);
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 0.8em;
  margin-top: 8px;
  margin-bottom: 15px;
  padding: 8px 12px;
  background-color: var(--glass-color-error-01);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--error-color);
  border-radius: 0.8rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
  animation: fadeIn 0.3s ease-in;
}

/* ------------------------------------------------
   4. Reply Groups - Mensagens de Sucesso/Erro Padrão
------------------------------------------------ */
.reply-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.reply-group.is-visible {
  opacity: 1;
}

.notify .reply-group {
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
}

.reply-group__icon {
  display: block;
  position: relative;
  font-size: 4.8rem;
  line-height: 1;
  color: var(--white-color);
}

.reply-group__icon::before {
  background: var(--white-color-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reply-group__title {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
  font-size: 2.4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--white-color);
  margin-top: 0.7rem;
}

.reply-group__text {
  display: block;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.6rem;
  color: var(--glass-white-06);
  margin-top: 0.4rem;
}

/* ------------------------------------------------
   5. Subscription Error (Mensagem fixa abaixo do form)
------------------------------------------------ */
.subscription-error.reply-group {
  position: static !important;
  transform: none !important;
  margin-top: 20px;
  padding: 2.2rem 2.4rem 2rem;
  background-color: var(--glass-color-error-01);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--glass-color-error-03);
  border-radius: 0.8rem;
  color: var(--error-color);
  text-align: left !important;
  display: none;
  opacity: 1 !important;
  clear: both;
}

.subscription-error.reply-group,
.subscription-ok.reply-group {
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.subscription-error.is-visible {
  display: block !important;
}

.subscription-error .reply-group__text {
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------
   6. Spinner - Estado de Loading do Botão
------------------------------------------------ */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid var(--glass-white-06);
  border-top-color: var(--white-color);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

/* ------------------------------------------------
   7. Error Countdown - Barra Circular de Progresso
------------------------------------------------ */
.error-countdown {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.error-countdown svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.error-countdown circle {
  fill: none;
  stroke: var(--error-color);
  stroke-width: 3;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: countdownStroke 5s linear forwards;
}

/* ------------------------------------------------
   8. Animações Gerais
------------------------------------------------ */
@keyframes countdownStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

/* ------------------------------------------------
   9. Subscription OK - Mensagem de Sucesso (Verde)
------------------------------------------------ */
.subscription-ok.reply-group {
  position: static !important;
  transform: none !important;
  margin-top: 20px;
  padding: 2.2rem 2.4rem 2rem;
  background-color: rgba(
    0,
    128,
    0,
    0.15
  ); /* SUGESTÃO: criar var(--glass-color-success-01) */
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(0, 128, 0, 0.3); /* SUGESTÃO: criar var(--success-color-border) */
  border-radius: 0.8rem;
  color: var(--success-color);
  text-align: left !important;
  display: none;
  opacity: 1 !important;
  clear: both;
}

.subscription-ok.is-visible {
  display: block !important;
}

.subscription-ok .reply-group__text,
.subscription-ok .reply-group__title,
.subscription-ok .reply-group__icon {
  margin: 0;
  padding: 0;
  color: var(--success-color);
}

/* ------------------------------------------------
   10. Success Countdown - Circular Progress Verde
------------------------------------------------ */
.success-countdown {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.success-countdown svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.success-countdown circle {
  fill: none;
  stroke: var(--success-color);
  stroke-width: 3;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: countdownStrokeSuccess 5s linear forwards;
}

@keyframes countdownStrokeSuccess {
  to {
    stroke-dashoffset: 0;
  }
}

/* ------------------------------------------------
   11. Responsividade - Ajustes Mobile
------------------------------------------------ */
@media screen and (max-width: 480px) {
  .reply-group__title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 0.5rem;
  }

  .reply-group__text {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .subscription-error.reply-group,
  .subscription-ok.reply-group {
    padding: 12px;
    margin-top: 15px;
    border-radius: 4px;
  }

  .error-countdown,
  .success-countdown {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  .spinner {
    width: 12px;
    height: 12px;
    margin-left: 6px;
  }

  .notify-form input,
  .notify-form textarea {
    margin-bottom: 1.2rem;
  }
}



/* ===============================================================
X. Consentimento LGPD - Notify Form (Quadrado, Bordas Leves, Check Verde)
================================================================ */

/* Bloco geral */
.form-checkbox.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 20px 0;
  font-size: 1.3rem;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Caixa do checkbox - Quadrada com leve arredondamento */
.form-checkbox.consent-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  background-color: transparent;
  margin-top: 2px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Estado checked - Fundo branco com check verde claro */
.form-checkbox.consent-group input[type="checkbox"]:checked {
  background-color: #ffffff;
}

.form-checkbox.consent-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 8px;
  height: 14px;
  border: solid #000000; /* ou Verde claro bonito */
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Texto ao lado */
.form-checkbox.consent-group span {
  flex: 1;
  color: #f0f0f0;
}

/* Link dentro do texto */
.form-checkbox.consent-group a {
  color: #f0f0f0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-checkbox.consent-group a:hover {
  color: #cccccc;
}

/* ===============================================================
X. Botão Fechar nas Mensagens de Sucesso/Erro
================================================================ */

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ffffff;
}





/* ===============================================================
   Notify Form - Fim
=============================================================== */

/* ------------------------------------------------
   Animated Headline Start
------------------------------------------------ */

/* Cursor Animado do Texto Digitado */
.typed-cursor {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--glass-white-00);
}

.typed-cursor::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  left: 4px;
  width: 24px;
  height: 4px;
  background: var(--white-color);
}

@media only screen and (min-width: 768px) {
  .typed-cursor::before {
    bottom: 6px;
    width: 25px;
    height: 4px;
  }
}

@media only screen and (min-width: 1400px) {
  .typed-cursor::before {
    bottom: 7px;
    width: 30px;
    height: 5px;
  }
}

@media only screen and (min-width: 992px) {
  .large .typed-cursor::before {
    bottom: 7px;
    width: 30px;
    height: 9px;
  }
}

@media only screen and (min-width: 1400px) {
  .large .typed-cursor::before {
    bottom: 11px;
    width: 36px;
    height: 11px;
  }
}

/* Cursor Branco (variação para fundo escuro) */
.white-cursor .typed-cursor::before {
  background: var(--glass-white-06);
}

/* ------------------------------------------------
   Mobile Break (Quebra de Linha em Mobile)
------------------------------------------------ */
.mobile-break {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobile-break {
    display: inline;
  }
}

/* ------------------------------------------------
   Animated Headline End
------------------------------------------------ */

/* ------------------------------------------------
   Animated Backgrounds Start
------------------------------------------------ */

/* Fallback Background Image */
.video-background {
  background-image: url("../img/backgrounds/poster.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Esconde o vídeo em telas pequenas */
@media (max-width: 768px) {
  .video-background video {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .video-background {
    background-image: none !important;
    background-color: #000 !important;
  }

  .video-background video {
    display: none !important;
  }
}


/* Wrapper do Vídeo */
#video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
}

/* Elemento Principal do Vídeo */
#main-video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center center;
  background-size: contain;
  -moz-background-size: contain;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Kenburns Effect - Background Animado */
#bgndKenburns,
#bgndKenburnsFull {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: transparent;
}

/* Partículas e Efeitos JS (Particles.js / Triangles.js / Space.js) */
#particles-js,
#triangles-js,
#space-js {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-color: transparent;
  z-index: 5;
}

/* ------------------------------------------------
   Animated Backgrounds End
------------------------------------------------ */

/* ===============================================================
   Header - Estrutura Base | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Header Base - Mobile (Topo Fixo)
------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  width: 100%;
  height: 80px;
  z-index: 10;
  border-bottom: 1px solid var(--glass-white-02);
}

.header.transparent {
  background-color: var(--black-color);
}

/* ------------------------------------------------
   2. Layout Desktop - Barra Lateral Fixa
------------------------------------------------ */
@media only screen and (min-width: 1200px) {
  .header {
    width: 80px;
    height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--glass-white-02);
  }

  .header.transparent {
    background-color: transparent;
  }
}

@media only screen and (min-width: 1400px) {
  .header {
    width: 100px;
  }
}

/* ------------------------------------------------
   3. Logo - Alinhada ao Topo
------------------------------------------------ */
.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  width: 40px; /* Ajuste o tamanho conforme desejar */
  height: auto;
  display: block;
}

@media only screen and (max-width: 1400px) {
  .header__logo {
    width: 100px;
    height: 100px;
  }

  .logo-container img {
    width: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .header__logo {
    width: 80px;
    height: 80px;
  }

  .logo-container img {
    width: 30px !important;
  }
}

/* ------------------------------------------------
   4. Botão do Menu (Menu Button)
------------------------------------------------ */

/* Mobile - canto superior direito */
.menu-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2.3rem;
}

/* Desktop - centralizado na barra lateral */
@media only screen and (min-width: 1200px) {
  .menu-button {
    top: 50%;
    left: 0;
    right: auto;
    transform: translateY(-50%);
    padding: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .menu-button {
    padding: 3rem;
  }
}

/* ===============================================================
   Header - Fim
=============================================================== */

/* ===============================================================
   Main Section - Estrutura Principal | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Área Principal (Container .main)
------------------------------------------------ */
.main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-top: 80px;
  background-color: var(--black-color);
}

.main.transparent {
  background-color: transparent;
}

.main.animate-out .main__intro,
.main.animate-out .main__media,
.main.notify-is-visible .main__media {
  opacity: 0;
  visibility: hidden;
}

.main.notify-is-visible .headline {
  opacity: 0;
}

.main.notify-is-visible .socials-absolute {
  opacity: 0;
}

@media only screen and (min-width: 1200px) {
  .main {
    padding-top: 0;
  }

  .main.notify-is-visible .main__media {
    opacity: 1;
    visibility: visible;
  }

  .main.notify-is-visible .headline {
    opacity: 0;
  }

  .main.notify-is-visible .socials-absolute {
    opacity: 1;
  }
}

/* ------------------------------------------------
   2. Conteúdo Interno (Main Content)
------------------------------------------------ */
.main__content.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1200px) {
  .main__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .main__content.absolute {
    left: auto;
    right: 0;
    top: 0;
    height: 100%;
  }
}

/* ------------------------------------------------
   3. Blocos de Intro e Mídia
------------------------------------------------ */
.main__intro,
.main__media {
  position: relative;
  transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
}

@media only screen and (min-width: 1200px) {
  .main__intro,
  .main__media {
    height: 100%;
    min-height: 600px;
  }
}

.main__media {
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* ------------------------------------------------
   4. Camada Escura sobre Imagem/Vídeo (Dark Screen)
------------------------------------------------ */
.main__darkscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--glass-black-07);
  transform: translateY(102%);
  -webkit-transform: translateY(102%);
  -moz-transform: translateY(102%);
  -ms-transform: translateY(102%);
}

/* ------------------------------------------------
   5. Conteúdo de Introdução (.intro__content)
------------------------------------------------ */
.intro__content {
  position: relative;
  padding: 100px 0;
}

.intro__content.fullheight-mobile {
  padding: 0;
}

@media only screen and (min-width: 1200px) {
  .intro__content {
    height: 100%;
    padding: 0 0 0 80px;
  }
}

@media only screen and (min-width: 1400px) {
  .intro__content {
    padding: 0 0 0 100px;
  }
}

/* ------------------------------------------------
   6. Área de Mídia (Imagem/Vídeo)
------------------------------------------------ */
.media__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.media__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -moz-background-size: cover;
}

/* ------------------------------------------------
   7. Copyright
------------------------------------------------ */
.media__copyright {
  position: absolute;
  bottom: 3.3rem;
  left: 0;
  width: 100%;
  padding: 0 3.3rem;
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .media__copyright {
    right: 3.3rem;
    bottom: 3.3rem;
    left: auto;
    width: auto;
    padding: 0;
    text-align: right;
  }
}

/* ------------------------------------------------
   8. Headline - Texto de Destaque
------------------------------------------------ */
.headline {
  position: relative;
  padding: 0 3.3rem;
  transition: all 0.8s ease-in-out;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
}

.headline.headline-bottom {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1.4rem;
}

@media only screen and (min-width: 1200px) {
  .headline {
    position: absolute;
    left: 80px;
    top: 50%;
    width: calc(100% - 80px);
    padding: 0 8rem;
    transform: translateY(-50%);
  }

  .headline.headline-bottom {
    left: 80px;
    width: calc(100% - 80px);
    top: auto;
    bottom: 64px;
    transform: none;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .headline {
    left: 100px;
    width: calc(100% - 100px);
    padding: 0 10rem;
  }

  .headline.headline-bottom {
    left: 100px;
    width: calc(100% - 100px);
    bottom: 74px;
  }
}

.headline__text {
  margin-top: 3.4rem;
}

.headline__btnholder {
  margin-top: 3.8rem;
}

/* ------------------------------------------------
   9. Side Copyright (Vertical)
------------------------------------------------ */
.side-copyright {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .side-copyright {
    display: block;
    position: fixed;
    left: 2.3rem;
    bottom: 3.3rem;
    text-align: left;
    padding-top: 0.2rem;
    padding-left: 0.4rem;
    transform-origin: bottom left;
    transform: rotate(-90deg) translateY(100%);
    -webkit-transform: rotate(-90deg) translateY(100%);
    -moz-transform: rotate(-90deg) translateY(100%);
    -ms-transform: rotate(-90deg) translateY(100%);
    z-index: 11;
  }
}

@media only screen and (min-width: 1400px) {
  .side-copyright {
    left: 3.3rem;
  }
}

/* ===============================================================
   Main Section - Fim
=============================================================== */

/* ===============================================================
   Menu Principal - Estrutura e Animações | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Estrutura Base do Menu
------------------------------------------------ */
.menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  background-color: var(--black-color);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  transition: all 0.6s ease-in-out;
}

.menu.transparent {
  background-color: transparent;
}

.menu.animate-in {
  opacity: 1;
  visibility: visible;
}

.menu.animate-out {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 1200px) {
  .menu {
    padding-top: 0;
    height: 100%;
    min-height: 600px;
  }
}

/* ------------------------------------------------
   2. Animação de Entrada - Media Objects
------------------------------------------------ */
.menu.animate-in .menu__media .media-object:nth-of-type(6),
.menu.animate-in .menu__media .media-object:nth-of-type(5),
.menu.animate-in .menu__media .media-object:nth-of-type(4),
.menu.animate-in .menu__media .media-object:nth-of-type(3),
.menu.animate-in .menu__media .media-object:nth-of-type(2),
.menu.animate-in .menu__media .media-object:nth-of-type(1) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s, opacity 0.6s;
}

/* Delays individuais para cada Media Object */
.menu.animate-in .menu__media .media-object:nth-of-type(6) {
  transition-delay: 0.1s;
}
.menu.animate-in .menu__media .media-object:nth-of-type(5) {
  transition-delay: 0.2s;
}
.menu.animate-in .menu__media .media-object:nth-of-type(4) {
  transition-delay: 0.3s;
}
.menu.animate-in .menu__media .media-object:nth-of-type(3) {
  transition-delay: 0.4s;
}
.menu.animate-in .menu__media .media-object:nth-of-type(2) {
  transition-delay: 0.5s;
}
.menu.animate-in .menu__media .media-object:nth-of-type(1) {
  transition-delay: 0.6s;
}

/* ------------------------------------------------
   3. Animação de Entrada - Itens de Navegação
------------------------------------------------ */
.menu.animate-in .navigation li:nth-of-type(1),
.menu.animate-in .navigation li:nth-of-type(2),
.menu.animate-in .navigation li:nth-of-type(3),
.menu.animate-in .navigation li:nth-of-type(4) {
  opacity: 1;
  transform: translateX(0);
}

.menu.animate-in .navigation li:nth-of-type(1) {
  transition-delay: 0.8s;
}
.menu.animate-in .navigation li:nth-of-type(2) {
  transition-delay: 0.9s;
}
.menu.animate-in .navigation li:nth-of-type(3) {
  transition-delay: 1s;
}
.menu.animate-in .navigation li:nth-of-type(4) {
  transition-delay: 1.1s;
}

/* ------------------------------------------------
   4. Navegação - Estrutura e Responsividade
------------------------------------------------ */
.menu__navigation,
.menu__media {
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .menu__navigation,
  .menu__media {
    height: 100%;
  }
}

.menu__navigation {
  height: auto;
}

.menu__navigation .navigation-container {
  position: relative;
  padding: 100px 0;
}

@media only screen and (min-width: 1200px) {
  .menu__navigation .navigation-container {
    height: 100%;
    padding: 0;
  }
}

/* ------------------------------------------------
   5. Media Section do Menu
------------------------------------------------ */
.menu__media {
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.menu__media .media-object {
  transform: translateY(100%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.menu-image {
  position: relative;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -moz-background-size: cover;
}

/* ------------------------------------------------
   6. Lista de Navegação (UL/LI)
------------------------------------------------ */
.navigation {
  position: relative;
  padding: 0 3.3rem;
}

.navigation li {
  display: block;
  position: relative;
  margin: 0 0 3.4rem 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s, transform 0.3s;
}

.navigation li:last-of-type {
  margin: 0;
}

@media only screen and (min-width: 1200px) {
  .navigation {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
    padding: 0 8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .navigation {
    left: 100px;
    width: calc(100% - 100px);
    padding: 0 10rem;
  }

  .navigation li {
    margin-bottom: 4rem;
  }
}

/* ------------------------------------------------
   7. Estilo dos Itens de Navegação (Link + Subtitle)
------------------------------------------------ */
.navigation__item {
  display: block;
  position: relative;
  padding: 0;
}

.navigation__item .subtitle {
  display: block;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding-left: 2px;
  color: var(--glass-white-06);
  transition: all 0.3s ease-in-out;
}

.navigation__item .link {
  display: inline-block;
  position: relative;
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
  font-size: 4.6rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--glass-white-07);
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) {
  .navigation__item .link {
    font-size: 5.4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .navigation__item .link {
    font-size: 7rem;
  }
}

/* Hover States */
.no-touch .navigation__item:hover .subtitle,
.no-touch .navigation__item:hover .link {
  color: var(--white-color);
}

/* Active Link Style */
.navigation__item.active-link .subtitle,
.no-touch .navigation__item.active-link:hover .subtitle {
  color: var(--white-color);
}

.navigation__item.active-link .link,
.no-touch .navigation__item.active-link:hover .link {
  overflow: visible;
  color: var(--white-color);
  background: var(--gradient-colorflow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================================================
   Menu Principal - Fim
=============================================================== */

/* ===============================================================
   Socials - Ícones de Redes Sociais | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Socials - Estrutura Base
------------------------------------------------ */
.socials ul {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 3.3rem;
  text-align: center;
}

.socials ul li {
  display: inline-block;
  line-height: 1;
  margin-right: 2.4rem;
}

.socials ul li:last-of-type {
  margin-right: 0;
}

.socials ul li a {
  font-size: 2rem;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 1200px) {
  .socials ul {
    padding: 0;
    text-align: center;
  }

  .socials ul li {
    display: block;
    margin-right: 0;
    margin-bottom: 2.4rem;
  }

  .socials ul li:last-of-type {
    margin-bottom: 0;
  }

  .no-touch .socials ul li:hover a {
    color: var(--color-theme-08);
  }
}

@media only screen and (min-width: 1400px) {
  .socials ul li {
    margin-bottom: 3.3rem;
  }

  .socials ul li a {
    font-size: 1.7rem;
  }
}

/* ------------------------------------------------
   2. Socials Mobile - Visível apenas no Mobile
------------------------------------------------ */
.socials-mobile {
  display: block;
  position: relative;
  width: 100%;
  padding: 3.3rem 0;
}

@media only screen and (min-width: 1200px) {
  .socials-mobile {
    display: none;
  }
}

/* ------------------------------------------------
   3. Socials Desktop - Fixo no Layout Desktop
------------------------------------------------ */
.socials-desktop {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .socials-desktop {
    display: block;
    position: fixed;
    bottom: 3.3rem;
    left: 0;
    width: 80px;
    margin-bottom: 0;
    z-index: 11;
  }
}

@media only screen and (min-width: 1400px) {
  .socials-desktop {
    width: 100px;
  }
}

/* ------------------------------------------------
   4. Socials Absolute - Layout Posição Absoluta
------------------------------------------------ */
.socials-absolute {
  position: absolute;
  bottom: 3.3rem;
  left: 0;
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) {
  .socials-absolute {
    width: auto;
    height: auto;
    position: fixed;
    top: 3.3rem;
    right: 3.3rem;
    bottom: auto;
    left: auto;
    padding: 0;
  }

  .socials-absolute ul li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 2.4rem;
  }

  .socials-absolute ul li:last-of-type {
    margin-right: 0;
  }
}

/* ===============================================================
   Socials - Fim
=============================================================== */

/* ===============================================================
   Countdown & Swiper Slider | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Countdown - Contagem Regressiva
------------------------------------------------ */
.countdown {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  z-index: 1;
  transition: opacity 1s ease-in-out;
}

.countdown #countdown {
  position: relative;
  color: var(--white-color);
}

.countdown .help-text {
  display: block;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.8rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--white-color);
  margin-top: 1rem;
}

.countdown.countdown-full #countdown-large {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
  font-size: 4.4rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--white-color);
}

.countdown.countdown-full .countdown-section {
  display: inline-block;
  margin-right: 2.4rem;
}

.countdown.countdown-full .countdown-section:last-of-type {
  margin-right: 0;
}

.countdown.countdown-full .countdown-amount {
  display: block;
  min-width: 45px;
}

.countdown.countdown-full .countdown-period {
  display: block;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--glass-white-06);
}

.countdown.countdown-full .help-text {
  margin: 0 0 2.4rem 0;
}

.countdown.countdown-days {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.countdown.countdown-days #countdown {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
  font-size: 10rem;
  line-height: 1.1;
  letter-spacing: -0.1;
}

.countdown.countdown-days .countdown-period {
  display: none;
}

@media only screen and (min-width: 768px) {
  .countdown .help-text {
    font-size: 2rem;
  }
  .countdown.countdown-days #countdown {
    font-size: 11rem;
  }
  .countdown.countdown-full .countdown-section {
    margin-right: 4rem;
  }
  .countdown.countdown-full .countdown-amount {
    min-width: 62px;
  }
  .countdown.countdown-full #countdown-large {
    font-size: 6rem;
  }
}

@media only screen and (min-width: 1400px) {
  .countdown .help-text {
    font-size: 2.4rem;
  }
  .countdown.countdown-days #countdown {
    font-size: 14rem;
  }
  .countdown.countdown-full .countdown-section {
    margin-right: 5rem;
  }
  .countdown.countdown-full .countdown-amount {
    min-width: 72px;
  }
  .countdown.countdown-full #countdown-large {
    font-size: 7rem;
  }
}

/* ------------------------------------------------
   2. Swiper Slider - Estrutura Base
------------------------------------------------ */
.swiper {
  height: 100%;
  background-color: var(--color-theme-01);
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.slide-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-theme-01);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
}

/* ------------------------------------------------
   3. Slide Caption - Textos sobre o Slide
------------------------------------------------ */
.slide-caption {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 6.8rem;
  padding: 0 3.3rem;
  color: var(--white-color);
}

.slide-caption span {
  display: block;
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--glass-white-07);
}

.slide-caption p {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
  font-size: 2.6rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white-color);
  margin: 0;
}

@media only screen and (min-width: 1200px) {
  .slide-caption {
    width: auto;
    left: auto;
    right: 0;
    bottom: 3.3rem;
    text-align: right;
  }
}

/* ------------------------------------------------
   4. Swiper Pagination - Personalização de Bullets
------------------------------------------------ */
.swiper-pagination.main-pagination {
  bottom: 3.3rem;
  right: auto;
  left: 3.3rem;
  width: auto;
  line-height: 1;
}

.swiper-pagination.main-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 2px;
  opacity: 1;
  background-color: var(--white-color);
  border-radius: 0;
  -moz-border-radius: 0;
  margin: 0 !important;
  transition: background-color 0.3s;
}

.swiper-pagination.main-pagination .swiper-pagination-bullet-active {
  height: 4px;
  background: var(--gradient-theme-color);
  margin-bottom: -1px !important;
}

/* ===============================================================
   Countdown & Swiper Slider - Fim
=============================================================== */

/* ===============================================================
   Popup Dialogs - Janelas Modais | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Estrutura Base do Popup
------------------------------------------------ */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  height: 100%;
  padding: 80px 0;
  overflow-y: auto;
  background-color: var(--black-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
}

.popup.transparent {
  background-color: transparent;
}

.popup.animate-out {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 1200px) {
  .popup {
    position: absolute;
    top: 0;
    left: 80px;
    width: calc(100% - 80px);
    padding: 0;
  }

  .popup.notify.transparent {
    width: calc(50% - 40px);
  }
}

@media only screen and (min-width: 1400px) {
  .popup {
    left: 100px;
    width: calc(100% - 100px);
  }

  .popup.notify.transparent {
    width: calc(50% - 50px);
  }
}

/* ------------------------------------------------
   2. Animações de Entrada - Notify
------------------------------------------------ */
.notify.animate-in,
.writealine.animate-in {
  opacity: 1;
  visibility: visible;
}

.notify.animate-out,
.writealine.animate-out {
  opacity: 0;
  visibility: hidden;
}

.notify.animate-in .popup__content .popup-title__subtitle,
.writealine.animate-in .popup__content .popup-title__subtitle,
.notify.animate-in .popup__content .popup-title__title,
.writealine.animate-in .popup__content .popup-title__title,
.notify.animate-in .popup__content .popup-title__text,
.writealine.animate-in .popup__content .popup-title__text,
.notify.animate-in .popup__content .form input,
.writealine.animate-in .popup__content .form .input-1,
.writealine.animate-in .popup__content .form .input-2,
.writealine.animate-in .popup__content .form textarea,
.notify.animate-in .popup__content .form .inputs-description,
.writealine.animate-in .popup__content .form .inputs-description,
.notify.animate-in .popup__content .form button,
.writealine.animate-in .popup__content .form button {
  opacity: 1;
  transform: translateY(0);
}

/* Transições específicas de cada elemento */
.popup__content .popup-title__subtitle,
.popup__content .popup-title__title,
.popup__content .popup-title__text,
.popup__content .form input,
.popup__content .form textarea,
.popup__content .form button,
.popup__content .form .inputs-description {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s, transform 0.3s;
}

/* ------------------------------------------------
   3. Controles do Popup (Botão Fechar)
------------------------------------------------ */
.popup__controls {
  position: relative;
  width: 100%;
  height: 100px;
}

.popup__controls .section-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3.3rem 2.3rem;
}

@media only screen and (min-width: 1200px) {
  .popup__controls {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: none;
  }

  .popup__controls .section-button {
    left: 80px;
    right: auto;
    padding: 2.3rem 0;
  }
}

@media only screen and (min-width: 1400px) {
  .popup__controls {
    height: 100px;
  }

  .popup__controls .section-button {
    left: 100px;
    padding: 3.3rem 0;
  }
}

/* ------------------------------------------------
   4. Conteúdo Interno do Popup
------------------------------------------------ */
.popup__content {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .popup__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
  }
}

.notify .popup__content {
  max-width: 680px;
}

/* ------------------------------------------------
   5. Títulos e Textos Internos (Usados nos Forms)
------------------------------------------------ */
/* Obs: As classes popup-title__subtitle, popup-title__title e popup-title__text já estão padronizadas nos blocos anteriores de Typography */

/* ===============================================================
   Popup Dialogs - Fim
=============================================================== */

/* ===============================================================
   Inner Sections - Áreas Internas de Conteúdo | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Estrutura Base da Inner Section
------------------------------------------------ */
.inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  background-color: var(--black-color);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
}

.inner.transparent {
  background-color: transparent;
}

.inner.animate-in {
  opacity: 1;
  visibility: visible;
}

.inner.animate-out .inner__content,
.inner.animate-out .inner__media,
.inner.popup-is-visible .inner__media {
  opacity: 0;
  visibility: hidden;
}

.inner.popup-is-visible .blocks-container {
  opacity: 0;
}

@media only screen and (min-width: 1200px) {
  .inner {
    padding-top: 0;
  }

  .inner.popup-is-visible .inner__media {
    opacity: 1;
    visibility: visible;
  }
}

/* ------------------------------------------------
   2. Containers Internos
------------------------------------------------ */
.inner__content,
.inner__media,
.blocks-container {
  position: relative;
  transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}

@media only screen and (min-width: 1200px) {
  .inner__content,
  .inner__media {
    height: 100%;
    min-height: 600px;
  }
}

.blocks-container {
  padding: 100px 0;
}

@media only screen and (min-width: 1200px) {
  .blocks-container {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
    padding: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .blocks-container {
    left: 100px;
    width: calc(100% - 100px);
  }
}

/* ------------------------------------------------
   3. Media Container
------------------------------------------------ */
.media-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}

@media only screen and (min-width: 1200px) {
  .media-container {
    height: 100%;
  }
}

.media-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--glass-black-01);
  transition: transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  z-index: 1;
}

.portfolio .media-container {
  height: auto;
}

@media only screen and (min-width: 768px) {
  .portfolio .media-container {
    height: auto;
  }
}

@media only screen and (min-width: 992px) {
  .portfolio .media-container {
    height: 100%;
  }
}

/* ------------------------------------------------
   4. Content Blocks
------------------------------------------------ */
.content-block {
  position: relative;
  width: 100%;
  padding: 0 3.3rem;
  margin-bottom: 4rem;
}

.content-block:last-of-type {
  margin-bottom: 0;
}

.content-block.grid-block {
  padding: 0 calc(3.3rem - 15px);
}

@media only screen and (min-width: 1200px) {
  .content-block {
    padding: 0 8rem;
  }

  .content-block.grid-block {
    padding: 0 calc(8rem - 15px);
  }
}

@media only screen and (min-width: 1400px) {
  .content-block {
    padding: 0 10rem;
  }

  .content-block.grid-block {
    padding: 0 calc(10rem - 15px);
  }
}

/* ------------------------------------------------
   5. Image Container
------------------------------------------------ */
.image {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -moz-background-size: cover;
}

@media only screen and (min-width: 1200px) {
  .image {
    height: 100%;
  }
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.4rem;
}

/* ------------------------------------------------
   6. Animações Internas (Keyframes)
------------------------------------------------ */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ===============================================================
   Inner Sections - Fim
=============================================================== */

/* ===============================================================
   Skillbars, About & Features | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Skillbars - Barras de Habilidades
------------------------------------------------ */
.show-skillbar {
  display: block;
  padding: 0;
  margin-bottom: 2.4rem;
}

.show-skillbar:last-of-type {
  margin-bottom: 0;
}

.skillbar {
  position: relative;
  width: 100%;
  height: 3.4rem;
  border-bottom: 2px solid var(--glass-white-02);
}

.skillbar-title {
  position: absolute;
  top: 0;
  left: 2px;
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-regular);
  font-size: 1.8rem;
  line-height: 3.4rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--white-color);
  height: 3.4rem;
}

.skillbar-bar {
  display: inline-block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0px;
  height: 2px;
  background: var(--gradient-colorflow);
}

.skill-bar-percent {
  display: block;
  position: absolute;
  top: 0;
  right: 2px;
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-regular);
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: var(--white-color);
  height: 3.4rem;
}

/* ------------------------------------------------
   2. About - Texto de Ênfase
------------------------------------------------ */
.text-emphasis {
  color: var(--gray-color-light);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.5;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  /* Obs: Fonte padrão herdada (Montserrat), ajustar se necessário */
}

/* ------------------------------------------------
   3. Features - Lista de Diferenciais
------------------------------------------------ */
.features__item {
  display: block;
  position: relative;
  min-height: 4.6rem;
  margin-bottom: 2.4rem;
}

.features__item:last-of-type {
  margin-bottom: 0;
}

.features__item img {
  display: block;
  position: absolute;
  top: 0;
  left: 15px;
  width: 4.6rem;
  height: auto;
}

.features__item h4 {
  display: block;
  margin-left: 6.2rem;
  padding-top: 0.2rem;
  /* Obs: Fonte do h4 pode ser ajustada via bloco Typography */
  color: var(--white-color-light);
}

.features__item p {
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .features__item:nth-of-type(3) {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .features__item {
    min-height: 5.4rem;
  }

  .features__item img {
    width: 5.4rem;
  }

  .features__item h4 {
    margin-left: 7rem;
    padding-top: 0;
  }
}

/* ===============================================================
   Skillbars, About & Features - Fim
=============================================================== */

/* ===============================================================
   Contact Data - Informações de Contato | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Estrutura Base
------------------------------------------------ */
.contact__data {
  position: relative;
  margin-bottom: 1.6rem;
}

.contact-data__item {
  margin-bottom: 2.4rem;
}

.contact-data__item i {
  font-size: 1.6rem;
  color: var(--white-color);
}

.contact-data__item p {
  font-size: 1.4rem;
  color: var(--glass-white-06);
  margin-top: 0.4rem;
}

.contact-data__item p a {
  position: relative;
  display: inline-block;
  color: var(--glass-white-06);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.no-touch .contact-data__item p a:hover {
  color: var(--color-theme-08);
}

/* ------------------------------------------------
   2. Lista de Contatos (E-mails, Telefones, etc)
------------------------------------------------ */
.contact-data__item ul {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 0.4rem;
}

.contact-data__item ul a {
  position: relative;
  display: inline-block;
  color: var(--glass-white-06);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.no-touch .contact-data__item ul li:hover a {
  color: var(--color-theme-08);
}

/* ===============================================================
   Contact Data - Fim
=============================================================== */

/* ===============================================================
   Gallery - Works Gallery + PhotoSwipe Customização | Projeto Tagget
   =============================================================== */

/* ------------------------------------------------
   1. Works Gallery - Grid de Imagens
------------------------------------------------ */
.works__gallery {
  position: relative;
}

.my-gallery__item {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

@media only screen and (min-width: 1200px) {
  .my-gallery__item {
    height: 50vh;
  }

  .my-gallery__item img {
    width: auto;
    height: 50vh;
  }

  .no-touch .my-gallery__item:hover .my-gallery__description {
    opacity: 1;
    transform: translateY(0);
  }
}

.my-gallery__link {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}

.my-gallery__link .picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -moz-background-size: cover;
  transition: background-position 0.5s;
}

.my-gallery__image {
  opacity: 1;
}

@media only screen and (min-width: 1200px) {
  .my-gallery__image {
    opacity: 0;
  }
}

/* ------------------------------------------------
   2. Descrição da Imagem (Hover Effect)
------------------------------------------------ */
.my-gallery__description {
  position: absolute;
  bottom: 3.3rem;
  left: 3.3rem;
  width: calc(100% - 6.6rem);
  padding: 2.2rem 2.4rem 2rem;
  background-color: var(--glass-white-01);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid var(--glass-white-03);
  border-radius: 0.8rem;
  z-index: 1;
}

.my-gallery__description h3 {
  display: block;
  color: var(--white-color);
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
}

.my-gallery__description h3 small {
  display: block;
  color: var(--gray-color-light);
}

.my-gallery__description p {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .my-gallery__description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s,
      transform 0.5s cubic-bezier(0.23, 0.65, 0.74, 1.09);
  }
}

/* ------------------------------------------------
   3. Animação Hover Extra para Desktop
------------------------------------------------ */
@media (min-width: 1200px) {
  .my-gallery__item:hover .my-gallery__description h3 {
    /* Personalize o hover se desejar */
  }
}

/* ------------------------------------------------
   4. PhotoSwipe Customização (Lightbox)
------------------------------------------------ */
.pswp__caption__center h3 {
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-medium);
  font-size: 2.4rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  color: var(--white-color);
  transform: translateY(0);
}

.pswp__caption__center small {
  display: block;
  font-family: var(--font-gotham);
  font-weight: var(--font-weight-regular);
  font-size: 1.4rem;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--color-theme-02);
}

.pswp__caption__center p {
  font-family: var(--font-montserrat);
  font-weight: var(--font-weight-regular);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--glass-white-06);
}

.pswp__counter {
  font-family: var(--font-montserrat);
}

.pswp__button--close {
  opacity: 1;
  position: relative;
  background-color: var(--glass-white-01);
}

.pswp__button--close:active {
  opacity: 1;
}

.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  width: 70px;
  height: 70px;
  color: var(--white-color) !important;
}

.pswp__button--arrow--left::before {
  left: 0;
  background-position: -132px -44px;
}

.pswp__button--arrow--right::before {
  right: 0;
  background-position: -88px -44px;
}

.pswp__caption__center h3 small {
  color: var(--glass-white-07);
}

.pswp__caption__center p {
  color: var(--glass-white-06);
}

.pswp__bg {
  background: var(--black-color);
}

.pswp__caption,
.pswp__top-bar {
  background-color: var(--black-color);
}

/* ------------------------------------------------
   5. Ajuste Adicional - Notify Form Glass Blur (Erro)
------------------------------------------------ */
.notify-form .error-message {
  backdrop-filter: blur(12px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
}

/* ===============================================================
   Gallery - Fim
=============================================================== */

/* ===============================================================
   PORTFOLIO
=============================================================== */

/*
 * Lógica de exibição do botão "Voltar ao início" no portfólio
 */

/* * Por padrão (mobile-first): mostramos o botão mobile e escondemos o de desktop.
 * O botão mobile está posicionado no final do HTML para telas pequenas.
*/
.botao-desktop {
  display: none; /* Escondido em telas pequenas */
}

.botao-mobile {
  display: block; /* Visível em telas pequenas */
  padding-bottom: 100px;
}

/* * Quando a tela for grande o suficiente (1200px ou mais, o breakpoint 'xl'),
 * invertemos a visibilidade.
*/
@media (min-width: 1200px) {
  .botao-desktop {
    display: block; /* Fica visível em telas grandes */
  }

  .botao-mobile {
    display: none; /* Fica escondido em telas grandes */
  }
}

/* ===============================================================
   /PORTFOLIO
=============================================================== */



/* ===============================================================
   Seção de Estilos Responsivos (Dispositivos Móveis)
   =============================================================== */

/* ===============================================================
   Correções para Layout Móvel - Seções "Sobre Nós" e "Contato"
   Tagget - Versão 1.0
   =============================================================== */

/* 
   Este arquivo contém as correções de CSS para resolver o problema
   de layout em dispositivos móveis nas seções "Sobre Nós" e "Contato".
   
   Problema: Em dispositivos móveis, a imagem de fundo aparece após o conteúdo
   textual, quando deveria aparecer primeiro, e não há sobreposição do texto
   sobre a imagem.
   
   Solução: Inverter a ordem dos elementos em dispositivos móveis e criar
   uma sobreposição com margem negativa para melhorar a experiência visual.
*/

/* Aplicar apenas em dispositivos móveis (até 1199px - antes do breakpoint xl do Bootstrap) */
@media only screen and (max-width: 1199px) {
  /* ------------------------------------------------
     1. Inversão da ordem dos elementos
     ------------------------------------------------ */

  /* Inverte a ordem dos elementos na seção "Sobre Nós" e "Contato" */
  .about .container-fluid .row,
  .contact .container-fluid .row {
    display: flex;
    flex-direction: column-reverse; /* Imagem aparece antes do conteúdo */
  }

  /* ------------------------------------------------
     2. Ajustes na imagem de fundo
     ------------------------------------------------ */

  /* Ajusta a altura da imagem para não ocupar toda a tela */
  .about .inner__media .media-container .image,
  .contact .inner__media .media-container .image {
    margin-top: 0;
    height: 60vh; /* Altura reduzida em mobile */
    min-height: 400px; /* Altura mínima para garantir visibilidade */
    position: relative;
    z-index: 1; /* Garante que a imagem fique em uma camada inferior */
  }

  /* ------------------------------------------------
     3. Sobreposição do conteúdo sobre a imagem
     ------------------------------------------------ */

  /* Cria espaço para sobreposição */
  .about .inner__media,
  .contact .inner__media {
    margin-bottom: -700px; /* Valor negativo para criar sobreposição */
  }

  /* Ajustes para o container do conteúdo */
  .about .inner__content,
  .contact .inner__content {
    position: relative;
    z-index: 2; /* Garante que o texto fique em uma camada superior */
  }

  /* Ajustes para o container de blocos de conteúdo */
  .about .blocks-container,
  .contact .blocks-container {
    padding-top: 10px; /* Reduz o padding superior para aproximar do topo da imagem */
    background: linear-gradient(
      to bottom,
      rgba(12, 12, 12, 0.75) 0%,
      var(--black-color) 150px
    );
    /* Cria um gradiente que vai de semi-transparente para a cor de fundo */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    /* Arredonda os cantos superiores para um efeito visual mais agradável */
  }
}

/* ------------------------------------------------
   4. Ajustes para dispositivos muito pequenos
   ------------------------------------------------ */
@media only screen and (max-width: 576px) {
  /* Reduz ainda mais a altura da imagem em smartphones */
  .about .inner__media .media-container .image,
  .contact .inner__media .media-container .image {
    height: 50vh;
    min-height: 300px;
  }

  /* Aumenta a sobreposição em telas muito pequenas */
  .about .inner__media,
  .contact .inner__media {
    margin-bottom: -500px;
  }

  /* Aumenta o padding para compensar a maior sobreposição */
  .about .blocks-container,
  .contact .blocks-container {
    padding-top: 0px;
  }

  /* Ajusta o raio de borda para telas menores */
  .about .blocks-container,
  .contact .blocks-container {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}


/* ===============================================================
   Ajustes para largura mínima de 320px (mobile-first)
   Garantem que a seção principal não quebre ou gere rolagem lateral
=============================================================== */
@media (max-width: 320px) {
  /* Remove padding lateral para evitar overflow */
  .headline,
  .headline.headline-bottom,
  .main__content,
  .intro__content,
  .content-block,
  .popup__content,
  .slide-caption,
  .media__copyright,
  .socials ul {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Garante que botões não estourem a largura */
  .btn-l .btn-caption {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    font-size: 1.2rem;
  }

  /* Ajusta tamanho do título para caber em telas pequenas */
  h1,
  h1.large,
  .headline__title {
    font-size: 2.2rem !important;
    word-break: break-word;
  }

  /* Ajusta espaçamento dos botões */
  .headline__btnholder {
    margin-top: 2rem;
    gap: 0.8rem;
  }

  /* Reduz tamanho dos ícones sociais */
  .socials ul li a {
    font-size: 1.4rem !important;
  }

  /* Ajusta espaçamento entre ícones sociais */
  .socials ul li {
    margin-right: 1rem;
  }
}

/* Esconde o Tawk.to em Mobiles */
@media only screen and (max-width: 768px) {
  #tawkchat-container,         /* id mais comum */
  #tawkchat-minified,          /* bolha minificada, se existir */
  iframe[src*="tawk.to"] {     /* fallback genérico */
    display: none !important;
  }
}
/* Esconde o Tawk.to em Mobiles */



/* ===============================================================
   Fim da Seção de Estilos Responsivos
   =============================================================== */



