/* Variables */
:root {
    --primary: #0A0A0A;
    --secondary: #ffef00;
    --accent: #ffef00;
    --accent2: #00ffc2;
    --dark: #121212;
    --light: #F5F5F5;
    --text: #E0E0E0;
    --text-secondary: #9E9E9E;
    --overlay: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(255, 193, 7, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--secondary);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
}

h4 {
    font-size: 1.25rem;
    color: var(--accent2);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: left; /* Mudar de center para left */
    margin-bottom: 3rem;
    max-width: 100%; /* Opcional: para limitar a largura */
    margin-left: auto; /* Centraliza o bloco mas mantém o texto alinhado à esquerda */
    margin-right: auto;
    padding: 0; /* Adiciona padding para não colar nas bordas */
}


.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; /* Mudar de left: 50% para left: 0 */
    transform: none; /* Remover o translateX */
    width: 80px;
    height: 4px;
    background: var(--accent2);
    border-radius: 2px;
}


/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--primary);
}

.btn-icon {
    margin-left: 0.5rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu li a {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(var(--overlay), var(--overlay)), 
                url('../images/cidade.png') no-repeat center center/cover;
    color: white;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about {
    background: var(--dark);
}

.about-content {
    margin-top: -30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--dark);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    text-align: center;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Services Section */
.services {
    background: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.service-card .btn{
    background: var(--dark);
      border-color:  var(--accent2);
      color: var(--accent2);
}




.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent2);
    margin-bottom: 1rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio {
    background: var(--dark);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--secondary);     
    color: var(--secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--secondary);
    color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1.5rem;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--text);
    margin-bottom: 1rem;
}

/* Partners Section */
.partners {
    background: var(--primary);
}

.partners-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    padding: 1rem 0;
}

.partner-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent2);
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-bg.jpg') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent2);
    min-width: 40px;
    text-align: center;
    padding-top: 0.25rem;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
}

.footer-social-section {
  min-width: 250px;
  text-align: right;
}

.social-title {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 1rem;
}



.social-link:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}


.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent2);
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
footer {
    background: var(--dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Logo - Barra centralizada */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo h4 {
    position: relative;
    padding-bottom: 1rem;
    width: fit-content;
    margin: 0 auto;
}

.footer-logo h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent2);
}

/* Alinhamento perfeito dos títulos */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    min-height: 40px; /* Altura fixa para alinhamento */
    display: flex;
    align-items: flex-end;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent2);
}

/* Conteúdo dos boxes */
.footer-about p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.footer-links {
    list-style: none;
    margin-top: auto; /* Mantém alinhamento no topo */
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: auto; /* Mantém alinhamento */
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.newsletter-btn {
    padding: 0 1.25rem;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.newsletter-btn:hover {
    background: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col h4 {
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
    }
}

/* TOPO DO FOOTER */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 300px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer-bar-text {
  display: flex;
  align-items: flex-start;
  height: 90px;
  position: relative;
}

.footer-divider {
  width: 4px;
  height: 54px; /* 60% da altura da logo (90px) */
  background-color: var(--accent2);
  margin-top: 0.2rem;
}

.footer-slogan {
  margin: 0;
  color: #aaa;
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1rem;
  display: flex;
  align-items: flex-start;
}

/* ÍCONES SOCIAIS */

.footer-social {
  display: flex;
  gap: 1rem;
  font-size: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 200px;
}

.footer-social a {
  color: var(--text-secondary);
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--secondary);
  transform: scale(1.1);
}




/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}





/* No header, onde está o botão do Instagram */
.nav-menu a.btn-outline {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Espaço entre ícone e texto */
    padding: 0.75rem 1.25rem 0.75rem 1rem; /* Ajuste no padding */
}

/* No hero section */
.hero-btns .btn-outline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem 0.75rem 1rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.1rem; /* Reduzi o padding para aproximar a linha */
    margin-bottom: 1rem; /* Remove margem inferior se houver */
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; /* Alinha à esquerda do texto */
    width: 100%; /* Usa 100% da largura do elemento pai (que é o texto) */
    height: 4px; /* Espessura da linha (pode ajustar) */
    background: var(--accent2);
    border-radius: 2px;
    transform: none; /* Remove o translateX anterior */
}

.portfolio-filter {
    font-family: 'Montserrat', sans-serif; /* Ou outra fonte de sua escolha */
    font-weight: 600; /* Peso da fonte (negrito) */
    text-transform: uppercase; /* Mantendo o texto em caixa alta */
    letter-spacing: 0.5px; /* Espaçamento entre letras */
}

/* Se quiser uma fonte diferente apenas para esses botões */
.filter-btn {
    font-family: 'Poppins', sans-serif; /* Exemplo com Poppins */
    font-weight: 500;
    font-size: 0.85rem; /* Tamanho um pouco menor */
}

/* Mídia Kit Section */
.midia-kit {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--text);
}

.midia-kit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.midia-kit-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.midia-kit-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-midia-kit {
    background-color: var(--accent2); /* Vermelho para destaque */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-midia-kit:hover {
    background-color: var(--accent2);
    transform: translateY(-3px);
}

.midia-kit-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.midia-kit-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.midia-kit-image:hover img {
    transform: scale(1.03);
}

/* Responsivo */
@media (max-width: 768px) {
    .midia-kit-content {
        grid-template-columns: 1fr;
    }
    
    .midia-kit-image {
        order: -1;
    }
}
/* Botão Voltar ao Topo - Versão Final Corrigida */
.back-to-top {
    position: fixed;
    bottom:80px;
    left: 50%;
    margin-left: -25px; /* Metade da largura do botão */
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    transform: none !important; /* Remove qualquer transform anterior */
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    box-shadow: 0 5px 20px rgba(255, 239, 0, 0.4);
    /* Mantém a posição fixa sem transform */
}

/* Efeito ao clicar */
.back-to-top:active {
    transform: scale(0.95) !important;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        width: 45px;
        height: 45px;
        margin-left: -22.5px; /* Ajuste para o novo tamanho */
        font-size: 1.1rem;
    }
}

/* Garante que o WhatsApp fique à direita */
.whatsapp-float {
    right: 30px;
    left: auto !important; /* Sobrescreve qualquer left */
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-left: 2px; /* Ajuste para centralizar o ícone */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}


.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.3rem; /* Aumentei o padding para afastar a linha */
    margin-bottom: 1.5rem; /* Adicionei margem para espaçamento extra */
}

/* Estilos específicos para o slider em mobile */
.partners-slider.mobile-view {
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    touch-action: none;
}

.partners-slider.mobile-view .partner-item {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--accent2);
}

.partners-slider.mobile-view .partner-item img {
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.3s ease;
}

.partners-slider.mobile-view .partner-item:hover img {
    transform: scale(1.1);
}

/* Desabilita qualquer interação manual */
.partners-slider.mobile-view {
    user-select: none;
    -webkit-user-select: none;
}

/* Ajustes de tamanho para mobile */
@media (max-width: 768px) {
    .partners-slider {
        gap: 1rem;
    }
    
    .partner-item {
        width: 160px;
        height: 80px;
        padding: 1rem;
    }
    
    .partner-item img {
        max-height: 50px;
    }
}

/* Efeito de foco para os itens no mobile */
.partners-slider.mobile-view .partner-item {
    animation: pulseMobile 6s infinite;
}

@keyframes pulseMobile {
    0%, 100% {
        border-color: rgba(255, 239, 0, 0.3);
    }
    50% {
        border-color: var(--accent2);
    }
}


/* Substitua ou modifique o .contact-container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mantém duas colunas */
    gap: 3rem;
    align-items: center; /* Alinha verticalmente */
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid var(--accent2);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        order: -1; /* Coloca a imagem acima em mobile */
        margin-bottom: 2rem;
    }
}


