/* ========================================
   AGÊNCIA ENTER - LANDING PAGE
   Arquivo CSS Principal
   ======================================== */

/* ========================================
   RESET E VARIÁVEIS
   ======================================== */

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

:root {
    /* Cores */
    --primary: #EF476F;
    --secondary: #1A1A2E;
    --text: #2D2D2D;
    --text-light: #6B7280;
    --bg: #FFFFFF;
    --bg-light: #F9FAFB;
    --border: #E5E7EB;
    
    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transições */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #D63C5E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 71, 111, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: #F9FAFB;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   NAVEGAÇÃO
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.logo-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-lines span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.logo-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: -4px;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:not(.btn-primary):hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #0F0F1E 100%);
    color: white;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.1;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero-blob-1 {
    top: 80px;
    right: 40px;
    width: 256px;
    height: 256px;
    background: rgba(239, 71, 111, 0.1);
}

.hero-blob-2 {
    bottom: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: rgba(239, 71, 111, 0.05);
    animation-delay: -4s;
}

.hero-shape {
    position: absolute;
    border: 2px solid rgba(239, 71, 111, 0.2);
    animation: rotate 15s linear infinite;
}

.hero-shape-1 {
    top: 25%;
    left: 25%;
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.hero-shape-2 {
    bottom: 33%;
    right: 25%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 71, 111, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(239, 71, 111, 0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge .icon {
    color: var(--primary);
}

.hero-slider {
    position: relative;
    min-height: 300px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.slide .highlight {
    color: var(--primary);
}

.slide p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    width: 32px;
    border-radius: 4px;
    background: var(--primary);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: none;
}

.hero-image-frame {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.1), transparent);
    border-radius: 24px;
    filter: blur(40px);
}

.hero-image img {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-card-1 {
    bottom: -24px;
    left: -24px;
}

.hero-card-2 {
    top: -24px;
    right: -24px;
    background: rgba(239, 71, 111, 0.95);
    color: white;
    animation-delay: -1.5s;
}

.hero-card .icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(239, 71, 111, 0.1);
    border-radius: 8px;
    color: var(--primary);
}

.hero-card-2 .icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--secondary);
}

.hero-card-2 .card-value {
    color: white;
}

.card-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-card-2 .card-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

/* ========================================
   SEÇÕES GERAIS
   ======================================== */

section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 71, 111, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Animações de entrada */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="left"] {
    transform: translateX(-30px);
}

[data-animate="right"] {
    transform: translateX(30px);
}

[data-animate="left"].animated,
[data-animate="right"].animated {
    transform: translateX(0);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.1), rgba(26, 26, 46, 0.1), transparent);
    border-radius: 24px;
    filter: blur(40px);
}

.about-image img {
    position: relative;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.about-logo-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-logo-card .logo {
    margin-bottom: 0.5rem;
}

.hashtag {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.about-badge {
    position: absolute;
    top: -24px;
    right: -24px;
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(239, 71, 111, 0.3);
    text-align: center;
}

.badge-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.badge-sub {
    font-size: 0.875rem;
}

.about-shape {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 96px;
    height: 96px;
    border: 4px solid rgba(239, 71, 111, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.about-content {
    position: relative;
}

.about-text {
    margin: 2rem 0;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text strong {
    color: var(--secondary);
    font-weight: 600;
}

.text-primary {
    color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    background: #F3F4F6;
}

.stat-card .icon {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(239, 71, 111, 0.1);
    border-radius: 8px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.quote-box {
    position: relative;
    background: linear-gradient(135deg, var(--secondary), #0F0F1E);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.quote-box p {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.8;
}

.cta-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(239, 71, 111, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(239, 71, 111, 0.2);
    margin-top: 2rem;
}

.cta-box .icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */

.differentials {
    background: var(--bg-light);
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(239, 71, 111, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    color: var(--primary);
}

.differential-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.differential-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 30px rgba(239, 71, 111, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */

.technology {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.1));
}

.technology-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.technology-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.technology h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.technology .title-line {
    background: white;
}

.technology-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 2rem 0 3rem;
    opacity: 0.95;
}

.technology-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.tech-feature .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: white;
}

.tech-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.tech-feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   CLIENTS SECTION
   ======================================== */

.clients {
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.client-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo {
    width: 64px;
    height: 64px;
    background: rgba(26, 26, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(26, 26, 46, 0.4);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.client-card:hover .client-logo {
    background: rgba(26, 26, 46, 0.2);
    color: rgba(26, 26, 46, 0.6);
}

.client-card p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.client-card:hover p {
    color: var(--secondary);
}

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

.testimonials {
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
}

.testimonials-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.testimonials-blob-1 {
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: rgba(239, 71, 111, 0.05);
}

.testimonials-blob-2 {
    bottom: 40px;
    right: 40px;
    width: 160px;
    height: 160px;
    background: rgba(26, 26, 46, 0.05);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 16px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.quote-icon {
    color: rgba(239, 71, 111, 0.2);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: rgba(239, 71, 111, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.125rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--secondary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: rgba(26, 26, 46, 0.2);
}

.testimonial-btn svg {
    color: var(--secondary);
}

.testimonial-btn:hover svg {
    color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--primary);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(239, 71, 111, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    color: var(--primary);
}

.contact-item h4 {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-hashtag {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.contact-hashtag p {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.footer-hashtag {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: white;
}

.footer-offices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office h5 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.office p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact h5 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technology-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .slide p {
        margin: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .slide-indicators {
        justify-content: flex-start;
    }
    
    .hero-image {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu .btn-primary {
        width: 100%;
    }
}

/* ========================================
   ANIMAÇÕES ADICIONAIS
   ======================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
