/*
 Theme Name:   Tema para Landing Pages
 Theme URI:    https://www.3guimel.com.br/
 Description:  Tema filho para Landing Pages (baseado no Hello Elementor)
 Author:       Guímel Tecnologia
 Author URI:   https://www.3guimel.com.br
 Template:     hello-elementor
 Version:      1.5.0
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   LANDING PAGE - ESCONDER HEADER/FOOTER PADRÃO
   ============================================ */
body.landing-no-header header.elementor-location-header,
body.landing-no-header .site-header,
body.landing-no-header header#masthead,
body.landing-no-header footer.elementor-location-footer,
body.landing-no-header .site-footer,
body.landing-no-header footer#colophon {
    display: none !important;
}

/* Garantir que a página ocupe toda a altura */
body.landing-no-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

:root {
    /* Cores principais - Verde e Laranja */
    --green-primary: #75FABD;
    --green-light: #a8fcd4;
    --green-dark: #4dd99f;
    --orange-primary: #EF8833;
    --orange-light: #ffa866;
    --orange-dark: #d66f1a;
    
    /* Cores azuis mantidas para compatibilidade (substituir gradualmente) */
    --blue-50: #e6f2ff;
    --blue-100: #b3d9ff;
    --blue-200: #80bfff;
    --blue-300: #75FABD;
    --blue-400: #75FABD;
    --blue-500: #75FABD;
    --blue-600: #4dd99f;
    --blue-700: #004080;
    --blue-800: #00264d;
    --blue-900: #001a33;
    
    /* Cores Dark/Preto Uber */
    --dark-bg: #000000;
    --dark-bg-secondary: #0a0a0a;
    --dark-bg-tertiary: #1a1a1a;
    --dark-text: #ffffff;
    --dark-text-secondary: #b3b3b3;
    --dark-border: rgba(255, 255, 255, 0.1);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #75FABD 0%, #4dd99f 50%, #75FABD 100%);
    --gradient-secondary: linear-gradient(135deg, #75FABD 0%, #EF8833 100%);
    --gradient-text: linear-gradient(135deg, #75FABD 0%, #EF8833 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.guimel-onepage {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ============================================
   HEADER
   ============================================ */
.guimel-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--dark-border);
    transition: all var(--transition-base);
}

.guimel-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
    transition: all var(--transition-base);
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: width var(--transition-base);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: #000000 !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(117, 250, 189, 0.4);
    color: #000000 !important;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-text);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.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);
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-left: 0.5px solid var(--dark-border);
        transition: right var(--transition-slow);
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 0.5px solid var(--dark-border);
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 0;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}


/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666666;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.pilares-section .section-subtitle,
.servicos-section .section-subtitle,
.cases-section .section-subtitle {
    color: #666666;
}

.gradient-text {
    background: linear-gradient(135deg, #000000 0%, #333333 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Degradê especial para títulos em seções brancas */
.sobre-section .gradient-text,
.pilares-section .gradient-text,
.servicos-section .gradient-text,
.cases-section .gradient-text,
.formulario-section .gradient-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradiente para título do hero (fundo preto) */
.hero-section .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #75FABD 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem 0;
    padding-top: 90px; /* Espaço para header fixo */
    background: #000000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.3guimel.com.br/wp-content/uploads/2025/11/bg-hero-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--blue-300);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--blue-400);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--blue-200);
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

.hero-content .container {
    text-align: left;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: left;
}

/* ============================================
   HERO SOLUTIONS SECTION (Estilo Senior)
   ============================================ */
.hero-solutions {
    margin-top: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .solution-card {
        padding: 1.5rem 1rem;
    }
    
    .solution-main {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .solution-card {
        padding: 1.25rem 0.85rem;
    }
    
    .solution-main {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .solution-separator {
        margin: 0 0.25rem;
    }
}

.solution-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.55);
    border: 0.5px solid rgba(117, 250, 189, 0.35);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(117, 250, 189, 0.12) 0%, rgba(239, 136, 51, 0.12) 100%);
    opacity: 0.3;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.solution-card:hover {
    border-color: rgba(117, 250, 189, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
}

.solution-card:hover::after {
    opacity: 0.6;
}

.solution-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.solution-main {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    display: block;
    line-height: 1.4;
}

.solution-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
    font-weight: 300;
}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-secondary);
    color: #000000;
    box-shadow: 0 10px 30px rgba(117, 250, 189, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(117, 250, 189, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ============================================
   SOBRE SECTION
   ============================================ */
.sobre-section {
    padding: var(--spacing-lg) 0;
    background: #ffffff;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h2 {
    margin-bottom: 2rem;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.sobre-image {
    position: relative;
    height: 400px;
}

.tech-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    overflow: hidden;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 3s infinite ease-in-out;
}

.tech-circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.tech-circle-2 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.tech-circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

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

/* ============================================
   PILARES SECTION
   ============================================ */
.pilares-section {
    padding: var(--spacing-lg) 0;
    background: #f8f9fa;
}

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

@media (max-width: 768px) {
    .pilares-grid {
        grid-template-columns: 1fr;
    }
}

.pilar-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 0.5px solid #e5e7eb;
}

.pilar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.pilar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(117, 250, 189, 0.15);
}

.pilar-card:hover::before {
    transform: scaleX(1);
}

.pilar-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    transition: all var(--transition-base);
}

.pilar-card:hover .pilar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pilar-icon svg {
    width: 30px;
    height: 30px;
}

.pilar-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.pilar-description {
    color: #666666;
    line-height: 1.7;
}

/* ============================================
   SERVIÇOS SECTION
   ============================================ */
.servicos-section {
    padding: var(--spacing-lg) 0;
    background: #ffffff;
}

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

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}

.servico-block {
    background: #ffffff;
    border: 0.5px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.servico-block.active {
    border-color: var(--green-primary);
    box-shadow: 0 10px 30px rgba(117, 250, 189, 0.15);
}

.servico-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: default;
}

.servico-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.servico-icon svg {
    width: 24px;
    height: 24px;
}

.servico-header h3 {
    flex: 1;
    font-size: 1.3rem;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.servico-content {
    max-height: none;
    overflow: visible;
}

.servico-content ul {
    list-style: none;
    padding: 0 2rem 2rem;
}

.servico-content li {
    padding: 0.75rem 0;
    color: #666666;
    position: relative;
    padding-left: 1.5rem;
}

.servico-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

.servico-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 0.5px solid #e5e7eb;
    margin-top: 0.5rem;
}

.btn-servico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(117, 250, 189, 0.2);
}

.btn-servico:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 250, 189, 0.3);
    background: var(--gradient-secondary);
}

/* ============================================
   CASES SECTION
   ============================================ */
.cases-section {
    padding: var(--spacing-lg) 0;
    background: #f8f9fa;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.cases-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(117, 250, 189, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    z-index: 0;
}

.cases-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(117, 250, 189, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
    z-index: 0;
}

.cases-section .section-title {
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.cases-section .gradient-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cases-section .section-subtitle {
    color: #666666;
    position: relative;
    z-index: 1;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

.case-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 0.5px solid #e5e7eb;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.case-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(117, 250, 189, 0.2);
    border-color: var(--green-primary);
}

.case-card:hover::before {
    transform: scaleX(1);
}

.case-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.case-card:hover .case-icon {
    transform: scale(1.1) rotate(5deg);
}

.case-icon svg {
    width: 32px;
    height: 32px;
}

.case-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-description {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-tag {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: #f0f0f0;
    color: #555555;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.case-card:hover .case-tag {
    background: rgba(117, 250, 189, 0.2);
    color: #1a1a1a;
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
.diferenciais-section {
    padding: var(--spacing-lg) 0;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.diferenciais-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="https://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

.diferenciais-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(117, 250, 189, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    z-index: 0;
}

.diferenciais-section .section-title {
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.diferenciais-section .gradient-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.diferenciais-section .section-subtitle {
    color: #666666;
    position: relative;
    z-index: 1;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.diferencial-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 0.5px solid #e5e7eb;
    transition: all var(--transition-base);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.diferencial-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(117, 250, 189, 0.2);
    border-color: var(--green-primary);
}

.diferencial-item:hover::before {
    transform: scaleX(1);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(117, 250, 189, 0.3);
}

.diferencial-item:hover .diferencial-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 20px rgba(117, 250, 189, 0.4);
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.15) rotate(10deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.diferencial-icon svg {
    width: 40px;
    height: 40px;
}

.diferencial-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--spacing-lg) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out 2s;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 800;
}

.cta-section .gradient-text {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.btn-cta {
    background: #000000;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-cta svg {
    transition: transform var(--transition-base);
}

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

/* ============================================
   FORMULÁRIO SECTION
   ============================================ */
.formulario-section {
    padding: var(--spacing-lg) 0;
    background: #ffffff;
}

.contato-opcoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .contato-opcoes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contato-opcao {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 0.5px solid #e5e7eb;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contato-opcao:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--green-primary);
}

.opcao-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all var(--transition-base);
}

.contato-opcao:hover .opcao-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(117, 250, 189, 0.3);
}

.opcao-icon svg {
    width: 40px;
    height: 40px;
}

.contato-opcao h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contato-opcao p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-formulario {
    background: var(--gradient-primary);
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(117, 250, 189, 0.3);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.btn-formulario:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 250, 189, 0.4);
    background: var(--gradient-secondary);
}

.contato-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 0.5px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 0.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    background: #ffffff;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(117, 250, 189, 0.1);
    transform: translateY(-2px);
    background: #ffffff;
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    padding: var(--spacing-lg) 0;
    background: #000000;
    color: #ffffff;
    position: relative;
}

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

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-address {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    margin-top: 0.5rem;
}

.footer-address strong {
    color: var(--green-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column p strong {
    color: var(--green-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--green-primary);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366 !important;
    font-weight: 600;
    transition: all var(--transition-base);
}

.footer-whatsapp:hover {
    color: #20BA5A !important;
    transform: translateX(3px);
}

.footer-whatsapp svg {
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom p strong {
    color: var(--green-primary);
    font-weight: 600;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 968px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .sobre-image {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .solution-card {
        padding: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pilares-grid,
    .servicos-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .solutions-title {
        font-size: 1.25rem;
    }
    
    .solution-main {
        font-size: 0.9rem;
    }
    
    .contato-form {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    font-weight: 500;
    font-size: 0.95rem;
    overflow: visible;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: #20BA5A;
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
    color: #25D366;
}

.whatsapp-text {
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.6;
    animation: whatsapp-pulse 2s infinite;
    z-index: 1;
}

.whatsapp-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.4;
    animation: whatsapp-pulse 2s infinite 0.5s;
}

@keyframes whatsapp-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-pulse {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-pulse::before {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

