@font-face {
    font-family: 'Conthrax';
    src: url('assets/fonts/conthrax.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ASTERA';
    src: url('assets/fonts/astera.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Nasalization';
    src: url('assets/fonts/nasalization.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #ffda0a;
    --secondary: #ffffff;
    --dark: #2f2f2f;
    --darker: #1f1f1f;
    --accent: #0a9396;
    --text-light: #e0e0e0;
    --font-primary: 'ASTERA', sans-serif;
    --font-secondary: 'Nasalization', sans-serif;
    --font-terciary: 'Conthrax', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--secondary);
    background-color: var(--dark);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* Títulos com Conthrax/ASTERA */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-terciary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo {
    font-family: var(--font-primary);
}

.section-header h2 {
    font-family: var(--font-terciary);
    font-size: 5rem;
}

.rotating-word {
    font-family: var(--font-secondary);
}

.container {
    max-width: 70%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 150px;
}

.logo-menu {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-menu:hover {
    transform: scale(1.05);
}

/* Menu Flutuante */
.nav-menu-floating {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
    background: rgba(47, 47, 47, 0.7);
    backdrop-filter: blur(15px);
    padding: 1rem 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 218, 10, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-menu-floating:hover {
    background: rgba(47, 47, 47, 0.85);
    border-color: rgba(255, 218, 10, 0.4);
    box-shadow: 0 12px 40px rgba(255, 218, 10, 0.15);
}

.nav-menu-floating a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu-floating a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu-floating a:hover {
    color: var(--primary);
}

.nav-menu-floating a:hover::before {
    width: 100%;
}

.btn-header {
    padding: 15px !important;
    font-size: 1rem;
    white-space: nowrap;
    background-color: var(--primary);
    color: var(--dark);
    border: 1px solid var(--primary) !important;
    transition: all 0.3s ease;
    border-radius: 20px !important;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-terciary);
}

.btn-header:hover {
    background-color: var(--dark) !important;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 218, 10, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 3rem !important;
    cursor: pointer;
}

/* Botões Gerais */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 218, 10, 0.3);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .container-header {
        padding: 0 1rem;
        gap: 1rem;
    }



    .header-button-mobile{
        display: none;
    }

    .logo {
        min-width: 150px;
    }

    .logo-menu {
        height: 40px !important;
    }

    .nav-menu-floating {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(47, 47, 47, 0.95);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 218, 10, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu-floating.active {
        display: flex;
    }

    .nav-menu-floating:hover {
        background: rgba(47, 47, 47, 0.95);
        border-color: rgba(255, 218, 10, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-menu-floating a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 218, 10, 0.1);
        white-space: normal;
        font-size: 0.9rem;
    }

    .nav-menu-floating a:last-child {
        border-bottom: none;
    }

    .nav-menu-floating a::before {
        display: none;
    }

    .nav-menu-floating a:hover {
        color: var(--primary);
        background: rgba(255, 218, 10, 0.05);
        padding-left: 2rem;
    }

    .nav-menu-floating a:hover::before {
        width: 0;
    }

    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: block;
        transition: transform 0.3s ease;
    }

    .menu-toggle.active {
        transform: rotate(90deg);
    }

    .cogita-banner::before {
        left: 0;
        background: none !important;
    }

    .cogita-banner::after {
        right: 0;
        background: none !important;
    }

    .hero-content{
        width: 100%;
    }

    .hero-font-button{
        font-size: 1rem !important;
    }

    .hero-text h1{
        width: 100% !important;
        font-size: 1.8rem !important;
    }

    .hero-text p{
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .cogita-banner-primeiro::before {
        left: 0;
        background: none !important;
    }

    .cogita-banner-primeiro::after {
        right: 0;
        background: none !important;
    }

    .modal-video {
        min-height: 100% !important;
    }

}

@media (max-width: 480px) {
    .container-header {
        padding: 0 0.75rem;
    }

    .logo {
        min-width: 80px;
    }

    .logo-menu {
        height: 35px;
    }

    .menu-toggle {
        font-size: 1.25rem;
    }

    .nav-menu-floating a {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .nav-menu-floating a:hover {
        padding-left: 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(8px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.5) 0%, rgba(31, 31, 31, 0.6) 100%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-top: 10vh;
}

.titulo-servico {
    font-family: var(--font-terciary) !important;
}

.gradient-text {
    color: #ffd700;
    -webkit-background-clip: text;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.texto-segundo-hero {
    font-family: var(--font-inter) !important;
    font-size: 1.8rem !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
    color: var(--secondary);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-subtitle {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-family: var(--font-inter) !important;
    font-size:  1.8rem !important;
}

.rotating-word {
    font-weight: 500;
    color: var(--primary);
    position: relative;
    display: inline-block;
    min-width: 0;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    white-space: nowrap;
    text-align: left;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 15vh;
    border-radius: 20px !important;
}

.hero-font-button {
    font-family: var(--font-inter) !important;
}

@keyframes rotateWord {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    15% {
        opacity: 1;
        transform: translateY(0);
    }
    20% {
        opacity: 0;
        transform: translateY(-20px);
    }
    21% {
        opacity: 0;
        transform: translateY(20px);
    }
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
        transform: translateY(0);
    }
    45% {
        opacity: 0;
        transform: translateY(-20px);
    }
    46% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    65% {
        opacity: 1;
        transform: translateY(0);
    }
    70% {
        opacity: 0;
        transform: translateY(-20px);
    }
    71% {
        opacity: 0;
        transform: translateY(20px);
    }
    75% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    95% {
        opacity: 0;
        transform: translateY(-20px);
    }
    96% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1;
    color: var(--primary);
}




.cogita-banner {
  overflow: hidden;
  background: #1f1f1f;
  padding: 24px 0;
  height: 150px;
  display: flex;
  align-items: center;
}

/* fade nas laterais (efeito premium) */
.cogita-banner::before,
.cogita-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cogita-banner::before {
  left: 0;
  background: linear-gradient(to right, #2f2f2f, transparent);
}

.cogita-banner::after {
  right: 0;
  background: linear-gradient(to left, #2f2f2f, transparent);
}

.cogita-banner-primeiro {
  overflow: hidden;
  background: #1f1f1f;
  padding: 24px 0;
  height: 150px;
  display: flex;
  align-items: center;
}

/* fade nas laterais (efeito premium) */
.cogita-banner-primeiro::before,
.cogita-banner-primeiro::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cogita-banner-primeiro::before {
  left: 0;
  background: linear-gradient(to right, #1f1f1f, transparent);
}

.cogita-banner-primeiro::after {
  right: 0;
  background: linear-gradient(to left, #1f1f1f, transparent);
}

.banner-track {
  display: flex;
  width: max-content;
  /* ESSA ANIMAÇÃO É A CHAVE */
  animation: scrollBanner 20s linear infinite;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}

/* ITEM (ícone + texto) */
.item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ÍCONE */
.item img {
  height: 40px;
}

/* TEXTO */
.text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* LATIM */
.title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}

/* TRADUÇÃO */
.subtitle {
  font-size: 1rem !important;
  color: #ffda0a;
  opacity: 0.8;
  font-weight: 500;
  font-family: var(--font-inter);
}

/* TEXTO */
.banner-content span {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;

  /* glow leve amarelo */
  transition: all 0.3s ease;
}

/* destaque ao passar */
.banner-content span:hover {
  color: #ffda0a;
}

/* LOGO */
.banner-content img {
  height: 40px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.banner-content img:hover {
  opacity: 1;
}

.item::after {
  content: "|";
  margin-left: 40px;
  color: #ffffff;
  opacity: 1;
}

/* animação correta */
@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* Seção Por que Escolher */
.por-que-escolher {
    position: relative;
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.por-que-escolher::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1f1f1fc9 85%, #ffda0a 100%);
    z-index: -1;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.section-header p {
    font-size: 1.5rem;
    color: var(--text-light);
}

.section-header-servicos {
    margin-bottom: 4rem;
}

.section-header-servicos h2 {
    font-size: 3.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.section-header-servicos p {
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Grid de Cards */
.escolher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card Individual */
.escolher-card {
    background: linear-gradient(135deg, rgba(12, 12, 12, 1) 0%, rgb(0, 0, 0, 1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 500px;
    justify-content: center;
    align-items: center;
}

.escolher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}


.escolher-card > * {
    position: relative;
    z-index: 1;
}

.escolher-card:hover::before {
    left: 0;
}


/* Número do Card */
.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 218, 10, 0.4);
    font-family: var(--font-terciary);
}

/* Ícone */
.card-icon-escolher {
    font-size: 3.5rem;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}


/* Título */
.escolher-card h3 {
    font-size: 1.7rem;
    color: var(--primary);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin-top: 4vh;
}

/* Descrição */
.escolher-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: var(--font-inter);
}

/* Features */
.card-feature {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.card-feature span {
    background: rgba(255, 218, 10, 0.4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 218, 10, 0.3);
    transition: all 0.3s ease;
    font-family: var(--font-inter);
}

.section-header-contato h2{
    font-size: 3rem !important;
    font-family: var(--font-terciary);
    line-height: 60px;
    color: #ffda0a !important;
}

.section-header-contato p{
    font-size: 1.5rem;
    font-family: var(--font-inter);
}

.escolher-card:hover .card-feature span {
    background: rgba(255, 218, 10, 0.6);
    border-color: var(--primary);
}


/* Seção Sobre */
.sobre {
    padding: 6rem 0;
    background: #1f1f1f;
    position: relative;
    overflow: hidden;
}




.destaque {
    color: #ffda0a;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.sobre-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center !important;
    align-items: center !important;
}

.btn-sobre-cogita{
    margin-top: auto !important;
    width: 50%;
}

.sobre-card {
    background: #2f2f2f;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 60%;
}

.sobre-card img{
    width: 50px;
    height: 50px;
}

.sobre-div-titulo{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 1rem;
}

.sobre-div-titulo-prin h3{
    color: white !important;
    font-family: var(--font-terciary);
    font-size: 2rem !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 30px !important;
}

.sobre-div-titulo-prin p{
    color: white !important;
    font-family: var(--font-inter) !important;
    text-align: start;
    
}

.sobre-div-titulo-prin{
    display: flex;
    flex-direction: column;
}

.sobre-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}


.sobre-card h3 {
    margin-bottom: 0.5rem;
}

.sobre-card p {
    margin-bottom: 1rem;
}

.sobre-card span{
    font-family: var(--font-inter) !important;
    font-size: 1rem !important;
}

.sobre-card .card-desc {
    display: block;
    font-size: 0.9rem;
    color: white;
    line-height: 1.5;
}

.sobre-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 218, 10, 0.15);
}

.sobre-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Background image na esquerda */
.sobre::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('assets/images/fundosobre.jpg') center/cover no-repeat;
    z-index: 1;
    opacity: 0.1;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}


.card-icon{
    font-size: 3rem;
    transition: transform 0.3s ease;
    width: 80px;
    height: 80px;
    object-fit: contain;
}



.sobre-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary);
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.sobre-content{
    display: flex;
    flex-direction: column;
}

.titulo-metadologia{
    padding-top: 1vw;
}

.sobre-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sobre-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    font-family: var(--font-inter);
}

.sobre-content h3{
    font-size: 2rem;
    color: white;
}

@media (max-width: 768px) {

    .sobre{
        width: 100% !important;
        padding-left: 5vw !important;
        padding-right: 5vw !important;

    }

    .sobre::before {
        width: 100% !important;
    }

    .container-sobre{
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .sobre-content h2 {
        font-size: 2rem !important;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .sobre-content h3 {
        font-size: 1.5rem !important;
    }

    .titulo-metadologia{
        margin-bottom: 10px !important;
    }

    .sobre-content p {
        font-size: 1.2rem !important;
    }

    .sobre-card {
        width: 100%;
    }

    .btn-sobre-cogita {
        width: 100%;
    }


    /* porque escolher */

    .container-porque-escolher{
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        padding-left: 5vw !important;
        padding-right: 5vw !important;
    }

    .section-header h2{
        font-size: 1.8rem !important;
        margin-top: 70vw !important;
    }

    .section-header-servicos{
        font-size: 1.8rem !important;
        padding-top: 20vw !important;
    }

    .section-header-servicos h2{
        font-size: 2rem !important;
    }

    .section-header-servicos p{
        font-size: 1.2rem !important;
    }

    .servicos-grid{
        grid-template-columns: repeat(1, 1fr) !important;
        margin-bottom: 30vw !important;
    }

    .escolher-grid{
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 30vw !important;
    }

    .servicos{
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
        gap: 0;
    }

    .portfolio{
        margin: 0;
        padding: 0;
    }

    .modal-content{
        width: 100% !important;
        min-width: none;
        max-width: 100% !important;
    }

    .container-titulo-servico h2{
        font-size: 1.5rem !important;
        text-align: center;
    }

    .container-titulo-servico{
        padding: 0 !important;
        margin: 0 !important;
        padding-top: 15vw !important;
        padding-bottom: 10vw !important;
    }

    .container-titulo-servico{
        justify-content: center !important;
        align-items: center !important;
    }

    .modal-body{
        flex-direction: column !important;
        padding: 5vw !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .modal-info p{
        font-size: 1.2rem !important;
    }

    .modal-info{
        justify-content: center !important;
        align-items: center !important;
        width: 95% !important;
    }

    .modal-tipo{
        justify-self: center !important;
    }

    .container-botao-servico{
        justify-content: center !important;
        padding-bottom: 0 !important;
    }

    .titulo-servico{
        justify-self: center !important;
        align-self: center !important;
    }

    .contato-grid{
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .section-header-contato h2{
        font-size: 2rem !important;
        line-height: 40px;
        text-align: center;
    }

    .section-header-contato p{
        font-size: 1.2rem !important;
    }

    .btn-whatsapp{
        font-size: 1rem !important;
    }

}


/* Grid de Cards - 3 colunas */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.servicos {
    position: relative;
    padding-top: 3vw;
    padding-bottom: 3vw;
}

#servicos {
    background-image: url('assets/images/fundoportfolio.jpg');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f1f1fc9;
    z-index: 1;
}

#servicos .container {
    position: relative;
    z-index: 2;
}


#portfolio {
    background-image: url('assets/images/backgroundservicos.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

#portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1f1f1fc9;
    z-index: 1;
}

#portfolio .container {
    position: relative;
    z-index: 2;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2f2f2f 57%, #ffda0a 100%);
    z-index: -1;
}

/* Card Pequeno */
.servico-card-pequeno {
    border: 2px solid rgba(68, 58, 0, 0.473);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: #1f1f1f;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    gap: s10px
}

/* Background animado no hover */
.servico-card-pequeno::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffda0a 100%, #1f1f1f 50%);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

/* Imagens posicionadas */
.servico-card-pequeno .card-icon,
.servico-card-pequeno .card-icon-escuro {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.servico-card-pequeno .card-icon {
    opacity: 1;
}

.servico-card-pequeno .card-icon-escuro {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* Textos */
.servico-card-pequeno h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.6s ease;
}

.servico-card-pequeno h2 {
    font-family: var(--font-inter);
    font-size: 2rem;
    color: #1f1f1f !important;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.6s ease;
}

/* Estados do Hover */
.servico-card-pequeno:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(255, 218, 10, 0.25);
    transform: translateY(-8px);
}

.servico-card-pequeno:hover::before {
    left: 0;
}

.servico-card-pequeno:hover .card-icon {
    opacity: 0;
}

.servico-card-pequeno:hover .card-icon-escuro {
    opacity: 1;
}

.servico-card-pequeno:hover h3 {
    color: #1f1f1f;
}

.servico-card-pequeno:hover h2 {
    color: #1f1f1f;
}



/* ===== MODAL SERVIÇOS ===== */
.servico-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.servico-modal.active {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    border-radius: 16px;
    width: 100% !important;
    max-width: 70vw;
    max-height: 95vh;
    z-index: 1001;
    overflow-y: auto;
    box-sizing: border-box;
    animation: slideUp 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    border: none;
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

/* Body do Modal */
.modal-body {
    display: flex;
    gap: 3rem;
    padding: 3rem;
}

.container-titulo-servico{
    width: 100%;
    padding-top: 50px;
    padding-left: 3rem;
    display: flex;
    justify-content: start;
    align-items: start;
    background-color: #1f1f1f;
    padding-bottom: 10px;
}

.contato-grid{
    align-items: start !important;
    justify-content: start !important;
}

.container-botao-servico{
    width: 100%;
    padding-bottom: 50px;
    display: flex;
    justify-content: start;
    align-items: start !important;
    }

.titulo-servico{
    font-size: 2rem !important;
    color: #ffda0a !important;
    font-family: var(--font-secondary) !important;
}

/* Lado Esquerdo: Informações */
.modal-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 80% ;
    align-items: start ;
}

#modalTitulo {
    font-family: var(--font-terciary);
    font-size: 2rem;
    color: var(--secondary);
    margin: 0;
    font-weight: 700;
}

.modal-resumo {
    color: white;
    font-size: 1.8rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-inter);
}

/* Botões de Tipo no Modal */
.modal-tipo {
    display: flex;
}

.modal-tipo .tipo-btn {
    padding: 0.7rem 1.4rem;
    border: 2px solid rgba(255, 218, 10, 0.3);
    background: #1f1f1f;
    color: var(--text-light);
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.modal-tipo .tipo-btn:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.modal-tipo .tipo-btn:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.modal-tipo .tipo-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.modal-tipo .tipo-btn.ativo {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    font-weight: 600;
}

/* Conteúdo Modal */
#modalConteudo {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal-explicacao {
    color: var(--text-light);
    font-size: 1.0rem;
    line-height: 1.7;
    margin: 0;
    padding: 1.2rem;
    background: #1f1f1f;
    border-left: 4px solid var(--primary);
    border-radius: 6px;
    font-family: var(--font-inter);
}

/* Skills no Modal */
.modal-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.modal-skills .skill-tag {
    background: rgba(255, 218, 10, 0.2);
    border-color: var(--primary) !important;
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem !important;
    border: 1px solid;
    transition: all 0.3s ease;
    font-family: var(--font-inter);
    font-size: 1.2rem;
}

.modal-skills .skill-tag:hover {
    background: rgba(255, 218, 10, 0.2);
    border-color: var(--primary);
}

/* Botão de Ação */
.btn-modal-acao {
    align-self: flex-start;
    margin-top: auto;
}

/* Lado Direito: Vídeo */
.modal-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    min-height: 400px;
    display: flex;
    border: 2px solid;
    border-color: white;
}

.modal-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scrollbar do Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 218, 10, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}



/* Seção Portfolio */
.portfolio {
    padding: 6rem 0;
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2f2f2f 92%, #fcd80a34 100%);
    z-index: -1;
}



.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 187, 48, 0.37);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 500;
    font-size: 2rem;
    color: var(--dark);
    font-family: var(--font-inter) !important;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 218, 10, 0.3);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Modal Portfolio */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1999;
}

.modal .modal-content {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 218, 10, 0.2);
    z-index: 2000;
    animation: slideUp 0.3s ease;
}

.modal .modal-video {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal .modal-video video {
    width: 100%;
    height: auto;
    display: block;
}

.modal .modal-info h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.modal-details {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    background-color: rgba(255, 218, 10, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.detail-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.detail-item span {
    color: var(--text-light);
}

.modal .modal-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.2rem;
}

.modal .modal-info strong {
    color: var(--primary);
}

.strong-font{
    font-family: var(--font-inter) !important;
    font-size: 1.5rem !important;
}

.modal .modal-info a {
    display: inline-block;
    margin-top: 1rem;
}

.close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 218, 10, 0.1);
    z-index: 2001;
}

.close:hover {
    color: var(--secondary);
    background-color: rgba(255, 218, 10, 0.2);
    transform: rotate(90deg);
}

/* Seção Benefícios */
.beneficios {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.beneficio-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 218, 10, 0.05) 0%, rgba(10, 147, 150, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 218, 10, 0.15);
}

.beneficio-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.beneficio-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.beneficio-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contato {
    padding: 5rem 0;
    background: #1f1f1f;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info{
    align-self: center;
}

.btn-form {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.contato-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contato-info > p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contato-cta {
    margin-top: 3rem;
}

.contato-cta h3 {
    font-size: 1.8rem;
    color: #ffda0a;
    margin-bottom: 1rem;
}

.contato-cta p {
    color: #aaa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #17833e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    justify-content: center !important;
    font-family: var(--font-inter);
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    background: #01a73b;
    color: white;
    transform: translateY(0px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Formulário */
.contato-form-wrapper {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 218, 10, 0.1);
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--font-terciary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0f0f0f;
    border: 1px solid rgba(255, 218, 10, 0.2);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    color: #fff;
    font-family: var(--font-inter);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffda0a;
    box-shadow: 0 0 0 3px rgba(255, 218, 10, 0.1);
    background: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-large {
    padding: 1.1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.divisor {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}


.contato-opcoes h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contato-opcoes > p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.divisor::before,
.divisor::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 218, 10, 0.2);
}

.divisor span {
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 218, 10, 0.1);
    padding: 4rem 0 2rem;
    color: #aaa;
    padding-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Logo e Descrição */
.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #999;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 218, 10, 0.1);
    border: 1px solid rgba(255, 218, 10, 0.2);
    border-radius: 50%;
    color: #ffda0a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffda0a;
    color: #0f0f0f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 218, 10, 0.3);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffda0a;
    padding-left: 0.5rem;
}

/* Contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.contact-item i {
    color: #ffda0a;
    width: 20px;
}

.contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffda0a;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 218, 10, 0.2), transparent);
    margin-bottom: 2rem;
}

/* Bottom Footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffda0a;
}




/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        max-width: 200px;
        margin-bottom: 10px;
    }

    .footer-desc {
        font-size: 14px;
        max-width: 300px;
    }

    .footer-social {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 10px;
    }

    .social-link {
        font-size: 18px;
    }

    .footer-links {
        padding: 0;
    }

    .footer-links li {
        margin: 8px 0;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact {
        width: 100%;
        max-width: 300px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 8px 0;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .contact-item i {
        font-size: 16px;
    }

    .footer-divider {
        margin: 30px 0;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer-bottom-links a {
        font-size: 13px;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-links a,
    .footer-bottom-links a {
        font-size: 12px;
    }
}





/* Scrollbar Customizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* FadeIn Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
