@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
@font-face {
    font-family: 'Loos Normal';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/loos-normal-regular.otf') format('opentype');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Loos Normal', sans-serif;
    background: #111111;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFA500, #FF8C00);
    border-radius: 10px;
    border: 2px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFB84D, #FFA500);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), rgba(255, 140, 0, 0.1));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-left: 80px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #FF8C00;
    text-shadow: 0 0 10px #FF8C00;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFA500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.navbar li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown::-webkit-scrollbar {
    width: 6px;
}

.dropdown::-webkit-scrollbar-track {
    background: rgba(255, 140, 0, 0.1);
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.5);
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.7);
}

.navbar li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
}

.dropdown a {
    display: flex; 
    align-items: center;
    padding: 4px 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background: rgba(255, 140, 0, 0.15);
    border-left-color: #FF8C00;
    padding-left: 25px;
    color: #FF8C00;
}

/* Scroll offset para âncoras */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: radial-gradient(ellipse at center, rgba(247, 81, 31, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.8), transparent);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    animation: glowSlide 3s ease-in-out infinite;
}

@keyframes glowSlide {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.4);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(247,81,31,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Watermark */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
    position: relative;
    padding-left: 120px;
}

.headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.headline span {
    color: #FFA500;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px 15px 10px 0;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.btn-primary:hover {
    background: #FFA500;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    background: linear-gradient(45deg, #FFA500, #FFB84D);
}

.btn-secondary {
    background: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.btn-secondary:hover {
    background: #FFA500;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

/* Hero Graphic */
.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
    position: relative;
    padding-right: 130px;
}

.neon-logo {
    width: 300px;
    height: 300px;
    transition: filter 0.6s ease, transform 0.6s ease;
}

.neon-logo:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Variáveis de Cores */
:root {
    --color-dark: #000000;
    --color-white: #FFFFFF;
    --color-accent: #FFA500;
    --color-gray-text: #B0B0B0;
}

/* Banner de Conteúdo */
.content-banner {
    position: relative;
    width: 100%;
    min-height: 900px;
    background: url('../public/background.png') center bottom/100% no-repeat;
    background-color: var(--color-dark);
    padding-bottom: 150px;
    overflow: hidden;
}

.content-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 100% 100%, rgba(255, 165, 0, 0.1) 0%, transparent 40%);
}

.graphic-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(-45deg, rgba(255, 165, 0, 0.3), rgba(255, 165, 0, 0.3) 1px, transparent 1px, transparent 200px);
    opacity: 0.1;
    transform: translateY(-50px);
}

.text-column {
    position: absolute;
    top: 150px;
    right: 50px;
    max-width: 300px;
    text-align: right;
    z-index: 5;
    padding-right: 20px;
    border-right: 4px solid var(--color-accent);
}

.text-column::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 0;
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 165, 0, 0.8), transparent);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
    animation: barGlow 2s ease-in-out infinite;
}

@keyframes barGlow {
    0%, 100% {
        top: 0;
        opacity: 0.5;
    }
    50% {
        top: calc(100% - 40px);
        opacity: 1;
    }
}

.question-text {
    font-size: 1.8em;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.3;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.highlight-word {
    color: var(--color-accent);
    font-weight: 700;
}

.image-column {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 3;
}

.main-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.cta-box {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #222222;
    border-radius: 15px;
    padding: 30px 40px;
    max-width: 700px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.cta-box .text-content {
    flex-grow: 1;
}

.cta-pre-title {
    font-size: 0.85em;
    color: var(--color-white);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cta-title {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    color: var(--color-white);
    text-transform: uppercase;
}

.highlight-word-cta {
    color: var(--color-accent);
    font-weight: 800;
}

.cta-icon {
    width: 180px;
    flex-shrink: 0;
}

.team-icon {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-gray-text);
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    position: relative;
}

.footer-logo {
    max-width: 250px;
}

.logo-footer-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.75em;
    line-height: 1.4;
    opacity: 0.7;
}

.footer-links, .footer-contact {
    margin-left: 50px;
}

.footer-links h3, .footer-contact h3 {
    color: var(--color-accent);
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.footer-links a {
    color: var(--color-gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9em;
}

.icon-phone, .icon-email, .icon-map {
    margin-right: 5px;
}

.fi-sr-phone-call,
.fi-sr-envelope,
.fi-sr-marker {
    color: var(--color-accent);
    margin-right: 8px;
}
/* Ajuste do rodapé para ter a linha de copyright separada */
.footer {
    flex-wrap: wrap;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 15px 30px;
    }
    
    .logo-img {
        margin-left: 40px;
    }
    
    .hero-section {
        padding: 0 30px;
    }
    
    .hero-content {
        padding-left: 60px;
    }
    
    .hero-graphic {
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 40px;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(15px);
        border-right: 1px solid rgba(255, 140, 0, 0.2);
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 20px 0;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .navbar li {
        border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    }
    
    .navbar > ul > li > a {
        display: block;
        padding: 15px 20px;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        padding: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 500px;
    }
    
    .dropdown a {
        padding: 12px 30px !important;
        border-left: none !important;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
        min-height: auto;
    }
    
    .hero-content {
        padding-left: 0;
        max-width: 100%;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin: 10px 5px;
    }
    
    .hero-graphic {
        padding-right: 0;
        margin-top: 30px;
    }
    
    .neon-logo {
        width: 200px;
        height: 200px;
    }
    
    .content-banner {
        min-height: 700px;
        padding-bottom: 100px;
    }
    
    .text-column {
        position: static;
        max-width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 4px solid var(--color-accent);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    
    .text-column::after {
        display: none;
    }
    
    .question-text {
        font-size: 1.4em;
        padding: 15px;
        border-radius: 8px;
    }
    
    .image-column {
        height: 300px;
    }
    
    .main-photo {
        max-width: 100%;
    }
    
    .cta-box {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 30px;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        top: auto;
    }
    
    .cta-icon {
        width: 120px;
    }
    
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 5%;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .question-text {
        font-size: 1.3em;
    }
    
    .cta-title {
        font-size: 1.2em;
    }
    
    .content-banner {
        min-height: 600px;
        padding-bottom: 80px;
    }
    
    .question-text {
        font-size: 1.2em;
        padding: 12px;
        border-radius: 6px;
    }
}

/* Seção de Clientes */
.clients-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 165, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(247, 81, 31, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.clients-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFA500, #FFB84D, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 165, 0, 0.3)); }
}

.clients-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: slideInfinite 25s linear infinite;
    will-change: transform;
}

@keyframes slideInfinite {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-310px * 7 - 30px * 7)); }
}

.client-slide {
    min-width: 280px;
    height: 180px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(17, 17, 17, 0.9) 100%);
    border: 1px solid rgba(255, 165, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-slide:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15) 0%, rgba(17, 17, 17, 0.85) 100%);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFA500;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 165, 0, 0.7);
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    border: 3px solid #FFA500;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
}

.client-slide:hover .client-photo {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.6);
    border-color: #FFB84D;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.client-card:hover .client-name {
    transform: translateY(-5px);
    text-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

.client-category {
    font-size: 0.9rem;
    color: rgba(255, 165, 0, 0.8);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.client-category::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFA500, #FF8C00);
    transform: translateX(-50%);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.client-card:hover .client-category::after {
    width: 100%;
}

.client-info {
    text-align: center;
}

.client-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.client-card:hover .client-description {
    transform: translateY(0);
}

.client-stats {
    padding: 12px 24px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.client-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.client-card:hover .client-stats {
    transform: translateY(0);
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

.client-card:hover .client-stats::before {
    left: 100%;
}

.stat {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFA500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Animações de entrada */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-card {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.client-card:nth-child(1) { animation-delay: 0.1s; }
.client-card:nth-child(2) { animation-delay: 0.2s; }
.client-card:nth-child(3) { animation-delay: 0.3s; }
.client-card:nth-child(4) { animation-delay: 0.4s; }
.client-card:nth-child(5) { animation-delay: 0.5s; }
.client-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive para clientes */
@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }
    
    .clients-title {
        font-size: 2.2rem;
    }
    
    .carousel-container {
        height: 180px;
    }
    
    .client-slide {
        min-width: 220px;
        height: 150px;
        padding: 15px;
    }
    
    .carousel-track {
        gap: 20px;
    }
    
    .client-photo {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .client-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 1.8rem;
    }
    
    .clients-subtitle {
        font-size: 1rem;
    }
    
    .carousel-container {
        height: 150px;
    }
    
    .client-slide {
        min-width: 180px;
        height: 120px;
        padding: 10px;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .client-photo {
        width: 50px;
        height: 50px;
    }
    
    .client-name {
        font-size: 1rem;
    }
}

/* Seção CTA Final */
.final-cta-section {
    position: relative;
    padding: 120px 50px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(2px 2px at 20% 30%, rgba(255, 165, 0, 0.3), transparent),
                radial-gradient(2px 2px at 40% 70%, rgba(247, 81, 31, 0.2), transparent),
                radial-gradient(1px 1px at 90% 40%, rgba(255, 165, 0, 0.4), transparent),
                radial-gradient(1px 1px at 60% 10%, rgba(255, 165, 0, 0.2), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(255, 165, 0, 0.2), rgba(247, 81, 31, 0.2));
    border: 1px solid rgba(255, 165, 0, 0.4);
    border-radius: 25px;
    margin-bottom: 30px;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFA500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFF;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.5;
}

.counter {
    color: #FFA500;
    font-weight: 700;
    font-size: 1.4rem;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
    animation: benefitFloat 3s ease-in-out infinite;
}

.benefit-item:nth-child(1) { animation-delay: 0s; }
.benefit-item:nth-child(2) { animation-delay: 1s; }
.benefit-item:nth-child(3) { animation-delay: 2s; }

@keyframes benefitFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.benefit-item:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-item span {
    color: #FFF;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(255, 165, 0, 0.5); }
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.4);
    background: linear-gradient(45deg, #FFB84D, #FFA500);
}

.btn-cta-secondary {
    background: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.btn-cta-secondary:hover {
    background: rgba(255, 165, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.2);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 165, 0, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    animation: urgencyBlink 2s ease-in-out infinite;
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.urgency-icon {
    font-size: 1rem;
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive CTA Final */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 20px;
    }
    
    .final-cta-title {
        font-size: 2.5rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 12px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }
}
.client-photo {
    object-position: center center;
}

.ousadia-logo {
    object-position: center top;
}

.keven-logo {
    object-position: center center;
}