/* ==========================================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

@font-face {
    font-family: "FontAwesome";
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
      --nav-offset: 50px; /* ajuste fino */
    --primary: #ffffff;
    --secondary: #000000;
    --primary-light: #ffffff;
    --background: linear-gradient(135deg, #000000 0%, #141414 100%);
    --text: #efefef;
    --card-bg: #1a1a1a;
    --accent: #ffffff;
    --grid-color: rgba(68, 68, 68, 0.15);
    --border-color: rgba(255, 255, 255, 0.3);
    --primary-very-light: rgba(255, 255, 255, 0.1);
    --social-accent: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

html{
  scroll-padding-top: var(--nav-offset);
  scroll-behavior: smooth; /* você já tem */
}

/* garante que qualquer alvo com id respeite o offset */
section[id]{
  scroll-margin-top: var(--nav-offset);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (min-width: 769px) {
    body {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E"), linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    }
}

h1, h2, h3, h4, .cta-button {
    font-family: 'Agrandir', sans-serif;
    font-weight: 700;
}

/* ==========================================================================
   LAYOUT E CONTAINERS
   ========================================================================== */
.container, .container2 {
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

#target-audience {
    margin-top: 0px;
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */
.thin-text {
    font-weight: 400;
    color: var(--text);
    font-size: 0.8em;
    display: inline;
}

.hero-content p {
    opacity: 0.5 !important;
}

.bold-text { 
    background: linear-gradient(90deg, #7b2dc3, #7b2dc3); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-shadow: 0 0 10px rgba(138, 65, 255, 0.7); 
    display: inline; 
}

.bold-text1 {
    display: inline;
    padding: 0.1em 0.1em;
    border-radius: 2px;
    color: #ffffff;
    background:
        radial-gradient(
            rgba(68, 0, 100, 0.25) 0.6px,
            transparent 0.7px
        ) 0 0 / 6px 6px,
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.1)
        );
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

h2 {
    font-size: 2rem;
}

/* ==========================================================================
   BOTÕES E CTAs
   ========================================================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 23px 46px;
    box-sizing: border-box;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 1rem;
    color: #ffffff;
    background:
        radial-gradient(
            rgba(0, 0, 0, 0.06) 0.6px,
            transparent 0.7px
        ) 0 0 / 6px 6px,
        linear-gradient(
            180deg,
            #7b2dc3 0%,
            #581c91 100%
        );
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateZ(0);
    box-shadow:
        0 0 0 1px rgb(121, 51, 202),
        0 0 10px rgba(154, 36, 201, 0.95),
        0 8px 20px rgba(0, 0, 0, 0.25);
}

.cta-button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid transparent;
    background:
        linear-gradient(
            180deg,
            rgb(206, 157, 255),
            rgba(0, 0, 0, 0.25)
        ) border-box;
    -webkit-mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cta-button::after { 
    content: ""; 
    position: absolute; 
    top: -50%; 
    left: -120%; 
    width: 40%; 
    height: 200%; 
    background: linear-gradient( 
        120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 30%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0.15) 70%, 
        transparent 100% 
    ); 
    transform: skewX(-20deg); 
    animation: shimmer 2.2s ease-in-out infinite; 
    pointer-events: none; 
}

.cta-button:hover {
    transform: translateY(-9px) !important;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.479),
        0 0 22px rgba(0, 0, 0, 0.39),
        0 10px 30px rgba(0, 0, 0, 0.18);
}

.cta-button:hover::after {
    animation-duration: 1.6s;
}

@keyframes shimmer {
    0% { left: -130%; }
    100% { left: 150%; }
}

.cta-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.cta-container0 {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    width: 100%;
}

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */
#hero {
    min-height: 780px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    border: none;
    padding: 40px 0;
}

@media (min-width: 769px) {
    #hero {
        background: radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%), radial-gradient(ellipse at 90% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 30%), var(--secondary);
    }
    #hero {
    min-height: 850px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    border: none;
    padding: 40px 0;
}
    #hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 40%, rgba(103, 0, 187, 0.15) 10%, transparent 35%), radial-gradient(circle at 80% 100%, rgba(96, 17, 170, 0.068) 0%, transparent 35%);
        pointer-events: none;
    }
}

#hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    gap: 40px;
    text-align: left;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.6rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(101, 101, 101, 0.5);
    width: 100%;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.botao1 {
    width: auto;
    display: flex;
    justify-content: flex-start;
}
@media (min-width: 768px) {
 .hero-content {
        margin-left: -40px;
}
}
@media (max-width: 768px) {
    .botao1 {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 15px auto 0 !important;
    }

    .botao1 .cta-button {
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .hero-image img {
        margin-bottom: 85px !important;
    }
}

#target-audience .container h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    margin-left: 80px;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

/* ==========================================================================
   SEÇÃO BENEFITS (DEPOIMENTOS)
   ========================================================================== */
#benefits {
    background-color: var(--secondary);
    position: relative;
    padding: 50px 0;
    isolation: isolate;
    margin-bottom: 50px;
    overflow: hidden;
}

#benefits::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #111 url(/assets/chess_background.webp) center/cover no-repeat;
    opacity: 0.8;
    z-index: -1;
    box-shadow: 0 -20px 40px -10px rgba(0, 0, 0, 0.7), inset 0 4px 6px rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
    #target-audience::before {
        opacity: 0.15 !important;
    }


}

#target-audience > * {
    position: relative;
    z-index: 1;
}

#benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
}

#benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Estilos para as estrelas e layout dos depoimentos */
.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.star-rating {
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.star-rating i {
    color: white;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.author-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0.8), rgba(27, 27, 27, 0.6));
    border-radius: 2px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    box-shadow: 0 0 8px rgba(31, 31, 31, 0.15);
    will-change: transform;
}

@media (min-width: 769px) {
    .testimonial-card {
        box-shadow: 0 0 10px rgba(31, 31, 31, 0.2);
    }
}

.testimonial-card::before {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Agrandir', sans-serif;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cards da seção target audience */
.testimonial-card1 {
    background:
        linear-gradient(
            60deg,
            rgb(22, 22, 22),
            rgba(0, 0, 0, 0.25)
        ) border-box;
    position: relative;
    border: 1px solid #1a1a1a;
    transition: transform 0.3s ease;
    box-shadow: 0 0 6px rgba(59, 59, 59, 0.15);
    height: 220px;
    opacity: 0.9;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    border-radius: 10px;
    will-change: transform;
}


@media (min-width: 769px) {
    .testimonial-card1 {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    }
}

.testimonial-card1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cards da seção de diferenciais */
.testimonial-card0 {
    background: rgba(0, 0, 0, 0.10) !important;
    position: relative;
    border: 1px solid #1a1a1a;
    transition: transform 0.3s ease;
    box-shadow: 0 0 6px rgba(59, 59, 59, 0.15);
    height: 220px;
    opacity: 0.9;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    border-radius: 10px;
    will-change: transform;
}

.testimonial-card0:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    transition: transform 0.25s ease;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.05);
}

/* ==========================================================================
   SEÇÃO TESTIMONIALS (DIFERENCIAIS)
   ========================================================================== */
#testimonials {
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 2;
    padding: 60px 20px 60px;
    margin-top: -50px !important;
}

#testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

#testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* ==========================================================================
   SEÇÃO ABOUT
   ========================================================================== */
.about {
    padding: 80px 0;
    background: var(--background);
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.8), inset 0 4px 6px rgba(255, 255, 255, 0.03);
}

.about::before {
    opacity: 0.8;
    content: "";
    position: absolute;
    inset: 0;
    background: #111 url(/assets/chess_background.webp) center/cover no-repeat;
    z-index: -1;
}

@media (min-width: 769px) {
    .about::before {
        background: radial-gradient(ellipse at 20% 80%, rgba(26, 26, 26, 0.7) 0%, transparent 60%), radial-gradient(ellipse at 90% 10%, rgba(42, 42, 42, 0.5) 0%, transparent 50%), #111 url(/assets/chess_background.webp) center/cover no-repeat fixed;
        box-shadow: 0 10px 10px -15px rgba(0, 0, 0, 0.9), 0 10px 10px -10px rgba(0, 0, 0, 0.7), 0 5px 5px -5px rgba(0, 0, 0, 0.5), inset 0 6px 8px rgba(255, 255, 255, 0.05);
    }
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ==========================================================================
   SEÇÃO CONTACT
   ========================================================================== */
#contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #070707 100%);
    position: relative;
}

@media (min-width: 769px) {
    #contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 15% 20%, rgba(144, 22, 243, 0.121) 0%, transparent 20%), radial-gradient(circle at 90% 70%, rgba(132, 0, 255, 0.121) 0%, transparent 20%);
        pointer-events: none;
    }
}

#contact h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-size: 40px;
}

#contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ==========================================================================
   ELEMENTOS DECORATIVOS
   ========================================================================== */
.graphic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 30px 30px;
}

.ribbon-line {
    position: absolute;
    height: 2px;
    width: 150%;
    opacity: 0.6;
    transform: rotate(-25deg);
    top: 30%;
    left: -25%;
    animation: waveMove 15s linear infinite;
    z-index: 1;
    transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce), (max-width: 768px) {
    .ribbon-line {
        animation: none;
        opacity: 0.1;
        display: none;
    }
}

.ribbon-line::before, .ribbon-line::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.ribbon-line::before {
    top: -2px;
    opacity: 0.7;
}

.ribbon-line::after {
    top: 2px;
    opacity: 0.5;
}

.ribbon-line.delay-1 {
    top: 60%;
    animation-delay: 5s;
    animation-duration: 18s;
    transform: rotate(15deg);
}

.ribbon-line.delay-2 {
    top: 80%;
    animation-delay: 10s;
    animation-duration: 20s;
    transform: rotate(-10deg);
}

.ribbon-line.delay-3 {
    top: 40%;
    left: -30%;
    animation-delay: 3s;
    animation-duration: 12s;
    transform: rotate(5deg);
}

.ribbon-line.delay-4 {
    top: 70%;
    left: -20%;
    animation-delay: 8s;
    animation-duration: 17s;
    transform: rotate(-15deg);
}

@keyframes waveMove {
    0% { left: -25%; }
    100% { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   SEÇÃO PARTNERS
   ========================================================================== */
#partners {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    #partners {
        background: radial-gradient(ellipse at 20% 30%, rgba(177, 177, 177, 0.1) 0%, transparent 60%), radial-gradient(ellipse at 80% 70%, rgba(29, 29, 29, 0.1) 0%, transparent 60%), var(--secondary);
    }
    
    #partners::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 20%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
        pointer-events: none;
    }
}

#partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#partners h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

#partners .section-subtitle {
    text-align: center;
    margin-top: 20px !important;
    font-size: 1rem !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.partners-carousel-container {
    position: relative;
    width: 140%;
    overflow: hidden;
    padding: 20px 0;
    margin: 40px 0;
    margin-left: -200px;
}

.partners-carousel {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollCarousel 20s linear infinite;
    padding: 10px 0;
}

.partner-slide {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 10 - 30px * 10)); }
}

/* ==========================================================================
   ESTILOS PARA A SEÇÃO DE CONTATO ATUALIZADA
   ========================================================================== */

.service-indicator {
    text-align: center;
    margin-bottom: 15px;
}

.service-indicator span {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text);
    text-transform: uppercase;
}

.contact-headline {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.trust-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 25px 0 30px;
    flex-wrap: wrap;
}

.trust-highlight span {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.9;
}

.trust-highlight span:first-child {
    color: #9f53e6;
    opacity: 1;
}

.trust-highlight span:not(:first-child):not(:last-child) {
    opacity: 0.6;
}

.pricing-display {
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0.6), rgba(27, 27, 27, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin: 35px auto 40px;
    max-width: 500px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.original-price-container {
    margin-bottom: 10px;
}

.original-price-label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
    margin-right: 8px;
}

.original-price {
    font-size: 1.4rem;
    color: var(--text);
    opacity: 0.5;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

.current-offer {
    margin: 15px 0;
}

.offer-label {
    display: block;
    font-size: 1rem;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 5px;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #f5f5f5 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.199),
        0 0 10px rgba(255, 255, 255, 0.35),
        0 0 15px rgba(255, 255, 255, 0.11);
}

.payment-info {
    margin-top: 15px;
}

.payment-options {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.8;
    font-weight: 500;
}

.contact-benefits {
    list-style: none;
    max-width: 400px;
    margin: 40px auto;
    padding: 0;
}

.contact-benefit {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-benefit:last-child {
    border-bottom: none;
}

.contact-benefit::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #7b2dc3, #684688);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.main-cta-container {
    text-align: center;
    margin: 50px auto 30px;
    max-width: 400px;
}

.main-cta-container .cta-button {
    width: 100%;
    padding: 25px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 60px 0 30px;
    background-color: #000000;
    border-top: 1px solid var(--border-color);
  min-height: 350px;
    box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.9);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    border-radius: 8px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.link-group {
    min-width: 150px;
}

.link-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer {
     min-height: 800px !important;
}
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 100%;
    }
    
    .footer-tagline {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-links {
        justify-content: center;
        gap: 40px;
        width: 100%;
    }
    
    .link-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: auto;
    }
    
    .link-title {
        text-align: center;
        width: 100%;
    }
    
    .footer-link {
        text-align: center;
        width: 100%;
    }
    
    .footer {
        min-height: auto;
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        text-align: center;
        width: 100%;
    }
    
    .copyright {
        text-align: center;
    }
}


/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* Tablets */
@media (max-width: 1024px) {
    .container, .container2 {
        width: 95%;
        padding: 0 20px;
    }
    
    #hero .container {
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    #contact h2 {
        font-size: 2rem !important;
    }
    
    .partner-slide {
        width: 130px;
        height: 130px;
    }
    
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-130px * 10 - 30px * 10)); }
    }
}

@media screen and (min-width: 351px) and (max-width: 425px) {
    .hero-content {
        margin-top: -75px !important;
    }
}

/* Tablets Pequenos e Mobile Grande */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .partners-carousel-container {
        margin-left: -100px !important;
    }
    
    .botao1 {
        margin-top: -15px !important;
    }
    
    #hero {
        min-height: 80vh;
        padding: 30px 0;
    }
    
    #hero .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .hero-content {
        order: 2;
        padding-right: 0;
        margin-bottom: 0;
        width: 100%;
        margin-top: -30px;
    }
    
    .hero-image {
        order: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image img {
        margin-left: 0;
        margin-bottom: 16px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.3;
        margin-top: -45px;
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        max-width: 100%;
        margin: 0 auto 25px;
        padding: 0 10px;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card1 {
        height: 200px !important;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-button {
        max-width: 280px;
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .cta-container0 {
        display: flex !important;
        justify-content: center !important;
        margin-top: 30px !important;
        width: 100% !important;
    }
    
    .botao1 {
        width: 95%;
        margin-top: -13px;
    }
    
    .ribbon-line {
        display: none;
    }
    
    .container2 h2,
    .container h2 {
        font-size: 1.5rem !important;
    }
    
    #testimonials {
        padding: 40px 20px 40px;
    }
    
    #contact .cta-button,
    .about .cta-button {
        display: block;
        width: max-content;
        margin: 0 auto;
        text-align: center;
        padding: 16px 25px;
    }
    
    #partners h2 {
        font-size: 1.8rem !important;
    }
    
    #partners .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .partners-carousel-container {
        margin: 30px 0;
    }
    
    .partner-slide {
        width: 120px;
        height: 120px;
    }
    
    .partners-carousel {
        gap: 20px;
    }
    
    .partner-logo {
        padding: 15px;
    }
    
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-120px * 10 - 20px * 10)); }
    }
    
    #contact h2 {
        font-size: 1.7rem !important;
        line-height: 1.1 !important;
    }
    
    .cta-button {
        padding: 23px 36px !important;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer {
        min-height: 400px !important;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .footer-link {
        display: block;
    }
    
    .trust-highlight {
        gap: 8px;
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .pricing-display {
        padding: 25px 20px;
        margin: 30px 20px;
    }
    
    .current-price {
        font-size: 2.8rem;
    }
    
    .contact-benefit {
        font-size: 0.95rem;
        padding-left: 30px;
    }
    
    .main-cta-container {
        margin: 40px 20px 20px;
    }
    
    .main-cta-container .cta-button {
        padding: 20px 30px;
        font-size: 1rem;
    }
    
    .star-rating i {
        font-size: 16px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 15px;
    }
}

/* Mobile Médio */
@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
    
    .container, .container2 {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }
    
    .hero-content p {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
    }
    
    .benefits-grid {
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .thin-text,
    .bold-text {
        display: block;
    }
    
    #testimonials {
        padding: 35px 15px 35px;
    }
    
    #partners {
        padding: 30px 0;
    }
    
    #partners h2 {
        font-size: 1.6rem !important;
        margin-bottom: 15px;
    }
    
    #partners .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .partner-slide {
        width: 100px;
        height: 100px;
    }
    
    .partners-carousel {
        gap: 15px;
    }
    
    .partner-logo {
        padding: 12px;
    }
    
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-100px * 10 - 15px * 10)); }
    }
    
    .contact-headline {
        font-size: 1.7rem;
    }
    
    .trust-highlight {
        flex-direction: column;
        gap: 5px;
    }
    
    .trust-highlight span:not(:first-child):not(:last-child) {
        display: none;
    }
    
    .current-price {
        font-size: 2.4rem;
    }
    
    .contact-benefits {
        margin: 30px 15px;
    }
    
    .contact-benefit {
        font-size: 0.9rem;
        padding-left: 28px;
    }
    
    .contact-benefit::before {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

/* Mobile Muito Pequeno */
@media (max-width: 320px) {
    #hero {
        min-height: 75vh;
        padding: 25px 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .hero-content {
        margin-top: -50px;
    }
    
    .cta-button {
        font-size: 13px;
        padding: 12px 20px;
        max-width: 240px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .about-text h2 {
        font-size: 1.4rem;
    }
    
    #testimonials {
        padding: 30px 10px 30px;
    }
    
    #partners h2 {
        font-size: 1.4rem !important;
    }
    
    .partner-slide {
        width: 90px;
        height: 90px;
    }
    
    .partners-carousel {
        gap: 12px;
    }
    
    @keyframes scrollCarousel {
        100% { transform: translateX(calc(-90px * 10 - 12px * 10)); }
    }
}

/* Ajustes de altura específicos */
@media (max-height: 700px) {
    #hero {
        min-height: 90vh;
    }
}

@media (max-height: 600px) {
    #hero {
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Animações Suaves */
.pricing-display {
    animation: fadeInUp 0.8s ease-out;
}

.contact-benefit {
    animation: fadeInLeft 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.contact-benefit:nth-child(1) { animation-delay: 0.1s; }
.contact-benefit:nth-child(2) { animation-delay: 0.2s; }
.contact-benefit:nth-child(3) { animation-delay: 0.3s; }
.contact-benefit:nth-child(4) { animation-delay: 0.4s; }
.contact-benefit:nth-child(5) { animation-delay: 0.5s; }
.contact-benefit:nth-child(6) { animation-delay: 0.6s; }
.contact-benefit:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Redução de movimento para preferências de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .pricing-display,
    .contact-benefit {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 30px;
    transition: background-color 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.9);
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.navbar.scrolled {
    padding: 5px 30px;
    background: rgba(0, 0, 0, 0.8);
}

.navbar.scrolled::before {
    opacity: 0.8;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nav-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: width 0.25s ease, height 0.25s ease;
}

.navbar.scrolled .nav-logo img {
    width: 60px;
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #9f4eed;
}

.nav-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.nav-toggle {
    display: none !important;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

/* ========== DROPDOWN MENU (DESKTOP) - SOMENTE COM HOVER REAL ========== */
@media (hover: hover) and (pointer: fine) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    color: #9f4eed;
    padding-left: 25px;
    padding-right: 25px;
}

.mobile-menu-footer {
    display: none;
}


/* ========== MEDIA QUERY MOBILE ========== */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .navbar.scrolled {
        padding: 10px 20px;
    }
    
    .nav-logo img {
        width: 60px;
        height: 60px;
    }
    
    .navbar.scrolled .nav-logo img {
        width: 50px;
        height: 50px;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .nav-toggle i {
        transition: transform 0.3s ease;
    }
    
    .nav-toggle.active i {
        transform: rotate(90deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 100px 20px 20px;
        flex-direction: column;
        gap: 5px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 12px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
    }
    
    .nav-link:hover {
        color: #9f4eed;
    }
    
    .nav-divider {
        display: none;
    }
    
    /* ========== DROPDOWN NO MOBILE ========== */
    .dropdown {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-trigger {
        justify-content: center;
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
    }
    
    .dropdown-icon {
        display: inline-block !important;
        font-size: 0.8rem;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
   
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 150px;
        padding: 8px 0;
    }
    
    .dropdown-item {
        padding: 14px 0;
        font-size: 1rem;
        text-align: center;
        color: #fff;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        display: block;
    }
    
    .dropdown.active .dropdown-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .dropdown.active .dropdown-item:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .dropdown.active .dropdown-item:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background: rgba(159, 79, 237, 0.2);
        color: #9f4eed;
    }
    
        .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: auto;
        padding: 40px 20px 30px;
        margin-top: 5px !important;
        width: 100%;

    }
    
    .mobile-menu-footer .footer-logo {
        margin-bottom: -15px;
    }
    
    .mobile-menu-footer .footer-logo img {
        width: 60px;
        height: 60px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-footer .footer-logo img:hover {
        opacity: 1;
    }
    
    .mobile-menu-footer .copyright-text {
        color: #666;
        font-size: 0.9rem; /* AUMENTADO o tamanho */
        text-align: center;
        line-height: 1.6;
        max-width: 280px;
        margin: 0 auto;
        font-weight: 400;
        letter-spacing: 0.5px;
    }
}


/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .nav-link {
        font-size: 1.1rem; /* AUMENTADO também */
        padding: 12px 0;
    }
    
    .mobile-menu-footer {
        padding: 30px 15px 20px;
    }
    
    .mobile-menu-footer .copyright-text {
        font-size: 0.8rem; /* AUMENTADO */
        max-width: 250px;
    }
}
.nav-logo {
    margin-top: 5px;
}
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-wpp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #4a4a4a; /* Cinza médio */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wpp a:hover {
    background-color: #5a5a5a; /* Cinza um pouco mais claro no hover */
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-wpp svg {
    width: 32px;
    height: 32px;
}

/* Para telas menores */
@media (max-width: 768px) {
    .floating-wpp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-wpp a {
        width: 50px;
        height: 50px;
    }
    
    .floating-wpp svg {
        width: 28px;
        height: 28px;
    }
}