/*
Theme Name: Tema da Grafica Interfill
Author: Caio
Version: 1.0
*/

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox-image {
    max-width: 92%;
    max-height: 92%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border-radius: 6px;
    transform-origin: center;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 2010;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    width: 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    z-index: 2010;
    border-radius: 6px;
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 600px) {
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 56px;
        font-size: 26px;
    }
    .lightbox-close {
        font-size: 28px;
    }
}

:root {
    --primary-color: #d81b60;
    --secondary-color: #9C27B0;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
}

#depoimentos {
  scroll-margin-top: 80px;
}

a {
    text-decoration: none;
    color: unset;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.desktop {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.botoes.mobile {
    display: none;
}


/* Header */
.header {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.logo-header {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .logo-header {
        height: 30px;
    }

    .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
}

.nav {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: #DDD;
    font-weight: 300;
}

@media (max-width: 758px) {
    .nav a:not(:last-child)::after {
        content: unset;
        position: unset;
        right: unset;
    }
}

.nav a:hover {
    color: var(--vinho);
}

.btn-orcamento-header {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    flex-shrink: 0;
}

.btn-orcamento-header:hover {
    background: #D81B60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

@media (max-width: 768px) {
    .btn-orcamento-header {
        padding: 10px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
}

.menu-mobile-btn {
    display: none;
    background: #1a1a1a;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--white);
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.menu-mobile-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-top {
    display: none;
}

.mobile-nav-close {
    display: none;
}

@media (max-width: 768px) {
    .menu-mobile-btn {
        display: flex;
    }

    .brands-section {
        padding: 50px 0;
    }

    .brands-grid {
        gap: 15px;
        scroll-snap-type: x mandatory;
    }

    .brand-logo {
        min-width: calc(50% - 7.5px);
        scroll-snap-align: center;
    }

    .brand-logo svg {
        width: 100% !important;
        height: auto !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #5b78bc 0%,#93a5cf 100%);
    padding: 50px 0px 10px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-bg-icon {
    position: absolute;
    top: -20%;
    right: -5%;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-bg-icon img {
    height: 80%;
    width: auto;
    object-fit: contain;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 5vw;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero-text {
    z-index: 10;
    opacity: 0;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.botoes {
    display: flex;
    gap: 10px;
}



.hero-text p {
    font-size: 22px;
    font-weight: 300!important;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-orcamento {
    background: var(--white);
    color: var(--dark);
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-size: 16px;
    width: fit-content;
}

.btn-orcamento:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-veja-como {
    background: transparent;
    color: #fff;
    border: 2px solid var(--white);
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    width: fit-content;
}

.btn-veja-como:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Hero Right Side */
.hero-right {
    position: relative;
}

.gradient-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(156, 39, 176, 0.2) 100%);
    border-radius: 50%;
    top: -50px;
    right: -100px;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@media (min-aspect-ratio: 21/9) {
  .hero-bg-icon {
        transform: translateX(20vw) translateY(1vw);
    }
}

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

.badge-icon {
    width: 24px;
    height: 24px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.badge-text {
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-dark);
}

.badge-text strong {
    font-weight: 700;
    color: var(--primary-color);
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--white);
}

/* Stats Card */
.stats-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(200, 200, 220, 0.3);
    border-radius: 16px;
    padding: 0px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    min-width: 250px;
    animation: slideIn 0.8s ease-out 0.8s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.stats-header {
    padding: 15px 20px 1px 20px;
    background: linear-gradient(135deg, #d3daed 0%, #a5b5d7 100%);
    border-radius: 16px 16px 0 0;
}

.stats-title {
    font-size: 19px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 18px 0;
    line-height: 1.4;
}

.stats-title .highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.destaque {
    font-size: 25px;
    margin-right: 5px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #E8E8E8;
    transition: background-color 0.4s ease;
    animation: item-highlight 4s ease-in-out infinite;
    animation-fill-mode: both;
}

.stat-item:last-child {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;

    color: #fff;                 
    background: var(--icon-bg);

    animation: ordered-glow 3s ease-in-out infinite;
    animation-fill-mode: both;
}

.icon-pink   { --icon-bg: #ec4899; }
.icon-no-bg   { --icon-bg: transparent; }
.icon-green  { --icon-bg: #22c55e; }
.icon-red    { --icon-bg: #ef4444; }
.icon-yellow { --icon-bg: #facc15; }

.categories-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Desktop: 6 colunas */
  gap: 20px;
  justify-content: left;
  padding: 20px;
  max-width: 1400px;      /* largura máxima do grid */
  margin: 0 auto;
  align-self: center;
}

.category-card {
  z-index: 2;
  min-width: 150px;
  color: white;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: center;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card h3 {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  margin-left: 20px;
  border-left: 2px solid #00ff99;
  padding-left: 15px;
  padding-bottom: 20px;
  text-align: left;
}

/* Container do carrossel precisa ser relative */
.categories-section {
  position: relative;
  z-index: 3;
}

.hero-image-container > .hero-highlights {
    max-width: 600px;
}

.hero-image-container > .hero-highlights > .hero-highlight {
    padding: 15px 15px;
}

/* Botões de navegação dentro do slider */
.brands-prev-hero,
.brands-next-hero {
  position: absolute;
  top: 60%;                  /* centraliza verticalmente */
  transform: translateY(100%);
  z-index: 10;               /* acima dos slides */
  background: var(--primary-color); /* opcional: fundo semi-transparente */
  border: none;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 601px) {
  .brands-prev-hero,
  .brands-next-hero {
    display: none;
  }
    
}

/* Botão esquerdo */
.brands-prev-hero {
  left: 2vh;
}

/* Botão direito */
.brands-next-hero {
  right: 2vh;
}

/* Ícone dentro do botão */
.brands-prev-hero svg,
.brands-next-hero svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* 4 colunas em telas grandes intermediárias */
@media (max-width: 1200px) {
  .categories-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3 colunas em tablets / telas médias */
@media (max-width: 900px) {
  .categories-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-card h3 {
    font-size: 15px;
  }
}

@media (max-width: 600px) {

  .categories-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 10px;
    justify-content: flex-start;

  }

    .categories-container > a {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
    }

  .categories-container::-webkit-scrollbar {
    display: none;
    }

  .category-card {
        width: 100%;
        min-width: 0;
        margin-top: 30vw;
  }

  /* Dots */
  .categories-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .categories-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
  }

  .categories-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
  }
}

/* Desktop não mostra dots */
@media (min-width: 601px) {
  .categories-dots {
    display: none;
  }
}
/* Mantém 2 colunas mesmo em telas muito pequenas */
@media (max-width: 350px) {
  .categories-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .category-card {
    min-width: 100px; /* reduz um pouco mais para caber */
  }
  .category-card h3 {
    font-size: 13px;
  }
}

/* CORES */
.category-card.blue h3 {
  border-left-color: #2dfff0;
}

.category-card.green h3 {
  border-left-color: #2dff80;
}

.category-card.purple h3 {
  border-left-color: #6c5ce7;
}

/* IMAGEM */
.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  height: 220px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes ordered-glow {
    0%, 20%, 100% {
        box-shadow: none;
        transform: scale(1);
    }
    30%, 50% {
        box-shadow:
            0 0 6px rgba(255,255,255,0.25),
            0 0 14px var(--icon-bg);
        transform: scale(1.05);
    }
}

.stat-item {
    animation: item-highlight 3s ease-in-out infinite;
    animation-fill-mode: both;
}

@keyframes item-highlight {
    0%, 20%, 100% {
        background-color: transparent;
    }
    30%, 50% {
        background-color: rgba(0, 0, 0, 0.02);
    }
}

.stat-item:nth-child(1),
.stat-item:nth-child(1) .stat-icon {
    animation-delay: 0s;
}

.stat-item:nth-child(2),
.stat-item:nth-child(2) .stat-icon {
    animation-delay: 0.75s;
}

.stat-item:nth-child(3),
.stat-item:nth-child(3) .stat-icon {
    animation-delay: 1.5s;
}

.stat-item:nth-child(4),
.stat-item:nth-child(4) .stat-icon {
    animation-delay: 2.25s;
}




.icon-pink {
    background: linear-gradient(135deg, #E91E63 0%, #D81B60 100%);
}

.icon-green {
    background: linear-gradient(135deg, #9ACD32 0%, #8BC34A 100%);
}

.icon-red {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.icon-yellow {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
}

.stat-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

.stat-text strong {
    font-weight: 700;
    color: var(--text-dark);
}

.stat-main {
    font-weight: 600;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

.stat-years {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 2px;
}

/* Seção de Marcas */
.brands-section {
    padding: 100px 20px;
}

.brands-title {
    color: #6d6d6d;
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px;
}

.brands-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.brands-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.brands-prev,
.brands-next {
    background: none;
    border: 1px solid #E0E0E0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.brands-prev:hover,
.brands-next:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.brands-prev:disabled,
.brands-next:disabled {
    cursor: not-allowed;
}

.brands-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    max-width: 1400px;
    scroll-behavior: smooth;
}

.brands-grid::-webkit-scrollbar {
    display: none;
}

.brand-logo {
    flex: 0 0 calc((100% - 150px) / 5); 
}

.brands-grid::-webkit-scrollbar {
    display: none;
}

.brand-logo {
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.brands-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E0E0E0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.brand-dot:hover {
    background-color: #D0D0D0;
    transform: scale(1.2);
}

.brand-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.4);
}

/* About Section */
.about-section {
    background-color: #3c2e48;
    background-image: url('assets/images/bg-pattern-about-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
}

.about-title {
    font-size: 32px;
    text-align: left;
    font-weight: 700;
    color: #afbcd8;
    margin-bottom: 60px;
    line-height: 1.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 120px;
    align-items: center;
}

.about-badge {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    background-color: #d1ff1d;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    width: fit-content;
    top: -30px;
    grid-column: 1 / -1;
}

.about-gallery {
    position: relative;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 30px 0px;
}

.hero-highlight {
    display: flex;
    border-radius: 12px;
    align-items: center;
    width: 100%;
    max-width: 35vw;
    padding: 14px 10px;
    gap: 20px;
    z-index: 2;
    transition: all 0.3s ease;
    background-color: #fff;
}

.hero-highlight .highlight-icon-circle {
    background-color: #ff045d;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
    box-sizing: border-box;
}

.hero-highlight .highlight-icon-circle img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.hero-bg-icon img {
    height: 80%;
    width: auto;
    object-fit: contain;
    opacity: 0.3;
}

.hero-highlight-title {
    font-size: 24px;
    color: #000;
}

.hero-highlight-subtitle {
    font-size: 16px;
    color: #666666;
}

.hero-highlight-subtitle {
    font-size: 17px;
    color: #000;
    transition: 0.3s ease;
}

.hero-highlight:hover { 
    color: #370064; 
    background-color: #ececec; 
}

.hero-highlight:hover .hero-highlight-title {
    color: #370064;
}

@media (max-width: 1100px) {
    .about-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 20px;
    }
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.about-highlight {
    border: 2px solid;
    border-radius: 12px;
    width: 400px;
    text-align: center!important;
    padding: 20px;
}

@media (max-width: 1100px) {
    .about-highlight {
        width: 90vw;
    }
    
}

.about-highlight > span {
    font-size: 18px;
    font-weight: 400;
}

.about-highlight.green {
    border-color: #9ACD32;
    color: #9ACD32;
}

.about-highlight.purple {
    border-color: #9294cd;
    /*color: #9294cd; Isso aqui estava dando erro de acessibilidade (contraste)*/
	color: #bdbff8;
}

.about-highlight.blue {
    border-color: #81ceff;
    color: #81ceff;
}

.about-highlight.mint-green {
    border-color: #bcfaef;
    color: #bcfaef;
}

.about-description {
    font-size: 18px;
    font-weight: 300;
    color: #c4c0c8;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.about-list svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #9ACD32;
}

@media (max-width: 950px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-description {
        font-size: 16px;
    }

    .hero-highlights {
        gap: 20px;
    }

    .about-list {
        gap: 12px;
    }

    .about-list li {
        font-size: 14px;
        gap: 10px;  
    }

    .about-list svg {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 768px) {
    .about-badge {
        top: 10px;
    }

    .hero-highlight {
        max-width: 100vw;
        padding: 15px 12px;
        gap: 20px;
    }

    .about-section > .container {
        padding: 20px;
    }

    .hero-highlights {
        padding: 0px;
    }

    .hero-highlight-title {
        font-size: 20px;
    }

    .hero-highlight-subtitle {
        font-size: 16px;
    }

    .hero-highlight > svg {
        width: 48px;
        height: 48px;
    }
}

/* Structure Section */
.structure-section {
    background: #dee4e1;
    background-image: url('assets/images/bg-pattern-structure-section.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    padding: 40px 20px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.structure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.structure-badge {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    background-color: #d81b60;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    width: fit-content;
}


.structure-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.structure-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.structure-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.structure-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px 0;
}

.structure-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
}

.structure-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.structure-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.structure-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.structure-image:hover {
    transform: scale(0.95)
}

.full-width {
    grid-column: 1 / -1;
    height: 300px;
}

.structure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.structure-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}


/* Solutions Section */
.solutions-section {
    background: #ffbe00;
    padding: 120px 20px;
}

.solutions-title {
    font-size: 45px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
}

.solutions-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: stretch
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 10px 12px 32px rgba(0, 0, 0, 0.18);
}

.solution-image {
    flex: 1;
    height: 250px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 103%;
    object-fit: cover;
    display: block;
    object-position: center 50%;
}

@media (min-width: 1150px) {
    .structure-left {
        gap: 40px;
    }

    .structure-title {
        font-size: 36px;
    }

    .structure-subtitle {
        font-size: 22px;
    }

    .structure-list {
        gap: 10px;
    }
}

@media (max-width: 769px) {
    .structure-left {
        gap: 15px;
    } 
}

@media (max-width: 480px) {
	.brand-dot {
		width: 12px;
		height: 12px;
	}
    .structure-image:first-child {
        grid-column: 1 / -1;
    }
}

.pdv-badge {
    background: #E91E63;
}

.packaging-badge {
    background: #E91E63;
}

.promo-badge {
    background: #E91E63;
}

.corporate-badge {
    background: #E91E63;
}

.labels-badge {
    background: #E91E63;
}

.special-badge {
    background: #E91E63;
}

.title-div {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 140px;
    width: 100%;
    padding: 5px 5 0px 5px;
    overflow: hidden;
}

@media (max-width: 600px) {
    .title-div {
        padding: 0!important;
    }
}

.title-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/images/bg-pattern-solution-card.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.40;               
    z-index: 0;
}

.title-div > * {
    position: relative;
    z-index: 1;
}

.solution-card-title {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    color: #1a1a1a;
    margin: 12px 20px 12px 20px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-card-title {
    color: #E91E63;
}

.solution-description {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0 20px 20px 20px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Why Choose Section */
.why-choose-section {
    background: #3E3E3E;
    padding: 120px 20px;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 60px;
    line-height: 1.5;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #D8D8D8;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.why-number {
    width: 60px;
    height: 60px;
    background: #E91E63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.why-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.why-card-description {
    font-size: 16px;
    font-weight: 400;
    /*color: #666; estava dando erro de acessibilidade (contraste)*/
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ============================
   TESTIMONIALS SECTION
============================ */

.testimonials-section {
    background: #F5F5F5;
    padding: 120px 20px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

/* ============================
   CAROUSEL STRUCTURE
============================ */

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper {
    overflow: hidden;
    touch-action: pan-x;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

/* Mostra 2 por vez */
.testimonial-card {
    flex: 0 0 calc(50% - 20px);
    flex-shrink: 0;

    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ============================
   CARD CONTENT
============================ */

.testimonial-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.testimonial-quote {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.quote-mark {
    font-size: 80px;
    font-weight: 700;
    color: #E5E5E5;
    line-height: 0.8;
    font-family: Georgia, serif;
    flex-shrink: 0;
    margin-top: -3vw;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-role {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

/* ============================
   BOTÕES
============================ */

.testimonials-prev,
.testimonials-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: #333;
}

.testimonials-prev {
    left: -80px;
}

.testimonials-next {
    right: -80px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: 0.1s;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ============================
   RESPONSIVO
============================ */

@media (max-width: 900px) {

    /* Mostra 1 por vez no mobile */
    .testimonial-card {
        min-width: 90vw;
    }

    .testimonial-content {
        padding-right: 30px;
        /*text-align: justify;*/
    }

    .testimonials-track {
        gap: 20px;
    }

    .testimonials-prev {
        left: -30px;
    }

    .testimonials-next {
        right: -30px;
    }

    .testimonials-prev, .testimonials-next {
        width: 36px;
        height: 36px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-prev:hover, .testimonials-next:hover {
        background-color: var(--primary-color);
    }
}

/* Contact Section */
.contact-section {
    background: #D3D3D3;
    padding: 0;
}

.contact-header {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    padding: 60px 20px;
    text-align: center;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 20px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-text {
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.contact-text strong {
    font-weight: 700;
}

.contact-form-wrapper {
    background: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 18px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #333;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

.form-textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

.form-captcha {
    margin: 10px 0;
}

.captcha-placeholder {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #E0E0E0;
}

.captcha-placeholder p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.form-submit {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile {
        display: none;
    }

    .hero-bg-icon {
        height: 40%;
        transform: translateX(-40vw) translateY(90vw);
        display: none;
    }


    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: -15vw;
    }

    .hero-right {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .hero-right > .hero-highlights {
        width: 100%;
        max-width: 100%;
        align-items: stretch;
        gap: 16px;
        margin-bottom: 140px;
    }

    .hero-right > .hero-highlights > .hero-highlight {
        width: 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        margin-top: 15px;
        font-size: 36px;
    }

    .hero {
        padding: 10px 0 0px;
    }

    .stats-card {
        position: static;
        transform: none;
        margin-top: 180px;
    }

    @media (max-width: 768px) {
        .stats-card {
            margin-top: 10px;
        }
    }

    .hero-image-container { min-height: unset; }

    .floating-badges {
        position: static;
        margin-bottom: 20px;
    }

    .gradient-circle {
        width: 300px;
        height: 300px;
        right: -50px;
    }

    .quote-mark { font-size: 60px; margin-top: -3vw; }
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 78%;
        max-width: 340px;
        background: var(--white);
        padding: 32px 24px 32px;
        box-shadow: 8px 0 30px rgba(0, 0, 0, 0.12);
        transform: translateX(-110%);
        transition: transform 0.3s ease;
        z-index: 1300;
    }

    .stats-card {
        margin-top: 30px;
    }

    .mobile-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 28px;
    }

    .logo-mobile-nav {
        height: 40px;
        width: auto;
    }

    .mobile-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #f2f2f2;
        color: var(--text-dark);
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .mobile-nav-close:hover {
        background: #e6e6e6;
        transform: scale(1.02);
    }

    .nav a {
        font-size: 16px;
        color: var(--text-dark);
    }

    .nav.nav-open {
        transform: translateX(0);
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .floating-badges {
        flex-direction: column;
        gap: 10px;
    }

    .badge {
        min-width: 100%;
    }

    .brands-grid {
        gap: 20px;
    }

    .brand-logo svg {
        width: 60px;
        height: 30px;
    }

    .brand-logo-img {
        width: 90%;
    }

    .hero .botoes {
        margin-bottom: 8px;
    }

    .about-title { font-size: 32px; margin-bottom: 40px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .gallery-main-image { height: 400px; }
    .gallery-arrow { width: 60px; height: 60px; right: 20px; }
    .about-description { font-size: 16px; }
    .about-list li { font-size: 16px; }

    .structure-section { padding: 60px 20px; }
    .structure-content { grid-template-columns: 1fr; gap: 40px; }
    .structure-title { font-size: 32px; }
    .structure-subtitle { font-size: 18px; }
    .structure-list li { font-size: 16px; }
    .structure-woman { max-width: 400px; margin: 0 auto; }
    .structure-right { order: unset; }

    .solutions-title { font-size: 36px; margin-bottom: 40px; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    .why-choose-title { font-size: 36px; }
    .why-choose-subtitle { font-size: 18px; margin-bottom: 40px; }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }

    .testimonials-title { font-size: 36px; margin-bottom: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 30px; }

    .quote-mark { font-size: 60px; margin-top: -4vw; }

    .contact-title { font-size: 36px; }
    .contact-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
}

@media (max-width: 750px) {
    .hero-content {
      margin-bottom: -15vw;
    }  
}

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

    .desktop {
        display: none;
    }

    .hero {
        padding: 10px 0px 30px;
        padding-bottom: 50px;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: -10vw;
    }

    .hero-left {
        grid-column: 1 / -1;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 30px;
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 0;
        grid-column: 1;
    }

    .hero-right {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .hero-right > .hero-highlights {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 30px;
        gap: 12px;
        align-items: stretch;
    }

    .hero-right > .hero-highlights > .hero-highlight {
        width: 100%;
        max-width: 100%;
    }

    .botoes.desktop {
        display: none;
    }

    .botoes.mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 0px;
        justify-content: left;
        grid-column: 1 / -1;
        gap: 10px;
    }

    .botoes.mobile button {
        width: 45%;
    }

    .botoes {
        margin-bottom: 180px;
    }

    .btn-orcamento,
    .btn-veja-como {
        flex: 1;
        text-align: center;
        padding: 12px 12px;
        font-size: 14px;
    }

    /* Stats Card Ajustes */

    .stats-card {
         position: static;
        transform: none;
        min-width: 51vw;
    }

    .stats-title {
        font-size: 15px;
    }

    .hero-text {
        z-index: 10;
    }

    .hero-text > p {
        font-size: 16px;
        width: 100%;
    }

    .stat-text {
        flex: 1;
        font-size: 11px;
        color: var(--text-dark);
        line-height: 1.4;
    }

    .destaque, .stat-main {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
    }

    .stat-item {
        padding: 5px 10px;
    }

    /* ---- */

    .about-section { padding: 40px 0; }
    .about-title { font-size: 24px; margin-bottom: 30px; }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .gallery-arrow { width: 50px; height: 50px; right: 15px; }
    .about-description { font-size: 14px; }
    .about-list { gap: 16px; }
    .about-list li { font-size: 14px; gap: 12px; }
    .about-list svg { width: 22px; height: 22px; }

    .structure-section { padding: 40px 15px 40px 15px; }
    .structure-content { grid-template-columns: 1fr; gap: 30px; }
    .structure-title { font-size: 24px; }
    .structure-subtitle { font-size: 16px; }
    .structure-list { gap: 16px; }
    .structure-list li { font-size: 14px; gap: 12px; }
    .structure-list svg { width: 28px; height: 28px; }
    .structure-images { grid-template-columns: 1fr 1fr; gap: 15px; }
    .structure-woman { max-width: 100%; }
    .structure-right { order: unset; }

    .solutions-section { padding: 50px 15px; }
    .solutions-title { font-size: 28px; margin-bottom: 30px; }
    .solutions-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .solution-card-title { font-size: 14px; margin: 5px; text-align: center; width: 100%; }
    .solution-description { font-size: 14px; }

    .why-choose-section { padding: 50px 15px; }
    .why-choose-title { font-size: 28px; margin-bottom: 15px; }
    .why-choose-subtitle { font-size: 16px; margin-bottom: 30px; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-card { padding: 25px; gap: 15px; }
    .why-number { width: 50px; height: 50px; font-size: 28px; }
    .why-card-title { font-size: 20px; }
    .why-card-description { font-size: 14px; }

    .testimonials-section { padding: 50px 15px; }
    .testimonials-title { font-size: 28px; margin-bottom: 30px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-card { padding: 30px; gap: 20px; }
    .quote-mark { font-size: 60px; margin-top: -6vw; }
    .testimonial-content { gap: 15px; }
    .testimonial-text { font-size: 16px; }
    .testimonial-author { font-size: 14px; }

    .contact-header { padding: 30px 15px; }
    .contact-title { font-size: 24px; }
    .contact-content { grid-template-columns: 1fr; gap: 30px; padding: 40px 15px; }
    .contact-text { font-size: 16px; }
    .form-input, .form-textarea { padding: 15px 20px; font-size: 14px; }
    .form-submit { padding: 15px 30px; font-size: 16px; }
}

/* Footer */
.footer {
    background-color: #3A3A3A;
    color: #FFFFFF;
}

.footer-bndes {
    background-color: #2A2A2A;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #4A4A4A;
}

.footer-bndes img {
    width: 600px;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    padding: 60px 0 40px;
}

.footer-col h4.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

/* Coluna 1: About */
.footer-about .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-about .footer-tagline {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-about .footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #D3D3D3;
}

/* Colunas de Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #D3D3D3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #72041C;
}

/* Coluna 4: Contato */
.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #D3D3D3;
}

.footer-contact a {
    color: #D3D3D3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #72041C;
}

.footer-contact strong {
    color: #FFFFFF;
}

/* Publicações */
.footer-publications {
    margin-top: 30px;
}

.footer-publications .footer-title {
    margin-bottom: 10px;
}

.publications-highlight {
    /*color: #FF5252; estava dando problema de acessibilidade (contraste)*/
	color: #fc7c7c;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
}

.publications-link {
    color: #D3D3D3;
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.publications-link:hover {
    color: #E91E63;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 40px 0;
    border-top: 1px solid #4A4A4A;
    border-bottom: 1px solid #4A4A4A;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #a50427;
}

/* Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-copyright {
    font-size: 14px;
    color: #D3D3D3;
}

.footer-credits {
    font-size: 14px;
    color: #D3D3D3;
}

.footer-credits strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* Responsive - Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px;
    }
    
    .footer-bndes img {
        max-width: 80vw;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bndes img {
        max-width: 80vw;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .stats-card {
        margin-top: -45px;
        margin-right: -15px;
    }

    .botoes {
        margin-top: 10px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        padding: 40px 0 30px;
    }

    .footer-bndes {
        padding: 15px 0;
    }

    .footer-bndes img {
        max-width: 80vw;
    }

    .footer-about .footer-logo {
        max-width: 150px;
    }

    .footer-about .footer-tagline {
        font-size: 16px;
    }

    .footer-social {
        gap: 15px;
        padding: 30px 0;
    }

    .social-icon svg {
        width: 35px;
        height: 35px;
    }

    .categories-container {
      margin-top: -30vw;
    }
}

@media (max-width: 410px) {
    .btn-orcamento, .btn-veja-como {
        font-size: 12px;
    }

    .stats-card {
        margin-top: -100px;
    }

    .botoes {
        margin-top: 10px;
    }

    .categories-container {
      margin-top: -30vw;
    }
}

@media (max-width: 393px) {
    .stats-card {
        margin-top: -90px;
    }
}

@media (max-width: 385px) {
  .botoes {
    margin-top: 10px;
    }
}

@media (max-width: 360px) {

    .stats-card {
        width: 90vw;
        margin-top: 150px;
        margin-right: 0px;
        transform: translateY(-50%) translateX(-5%)!important;
    }

    .botoes {
        margin-top: 5vw;
        margin-bottom: 180px;
    }

    .botoes.mobile {
      flex-direction: row;
    }


    .why-choose-grid { 
        grid-template-columns: 1fr; 
    }

    .hero-text > p {
        font-size: 15px;
        width: 80%;
    }

}

    /* Lightbox share button and toast */
    .lightbox-share {
        position: fixed;
        top: 18px;
        right: 68px;
        background: rgba(255,255,255,0.06);
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        z-index: 2010;
        border-radius: 50%;
    }

    .lightbox-share:hover {
        background: rgba(255,255,255,0.12);
    }

    .lightbox-toast {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 28px;
        background: rgba(0,0,0,0.75);
        color: #fff;
        padding: 8px 14px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 2020;
        opacity: 0;
        transition: opacity 0.2s ease;
    }
