/* ========================================
   PLENO ERP - Estilos Principais
   Paleta: #9E097E, #760C60, #400B4B, #28003E, #FFFFFF
   Estilo: Glassmorphism + Moderno
======================================== */

/* ========== VARIÁVEIS CSS ========== */
:root {
    /* Cores principais */
    --primary: #9E097E;
    --primary-dark: #760C60;
    --secondary: #400B4B;
    --dark: #28003E;
    --white: #FFFFFF;
    
    /* Cores auxiliares */
    --primary-light: #c41a9e;
    --primary-glow: rgba(158, 9, 126, 0.5);
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #9E097E 0%, #760C60 50%, #400B4B 100%);
    --gradient-dark: linear-gradient(180deg, #400B4B 0%, #28003E 100%);
    --gradient-radial: radial-gradient(ellipse at center, #400B4B 0%, #28003E 70%);
    
    /* Tipografia */
    --font-family: 'Poppins', sans-serif;
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--gradient-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ========== UTILITÁRIOS ========== */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-custom {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* ========== BOTÕES ========== */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-light-custom {
    background: var(--white);
    border: none;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-light-custom:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ========== NAVBAR ========== */
.navbar-glass {
    background: rgba(40, 0, 62, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-glass.scrolled {
    background: rgba(40, 0, 62, 0.92);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    padding: 8px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.navbar-brand img {
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(158, 9, 126, 0.3));
}

.navbar-brand img:hover {
    filter: drop-shadow(0 4px 12px rgba(158, 9, 126, 0.5));
    transform: scale(1.02);
}

.navbar-glass .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition);
    position: relative;
}

.navbar-glass .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link.active {
    color: var(--white);
}

.navbar-glass .nav-link:hover::after,
.navbar-glass .nav-link.active::after {
    width: 30px;
}

.navbar-toggler {
    border: 1px solid var(--glass-border);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-dark);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 50%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

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

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: heroFloat 6s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    padding: 15px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-card.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

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

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

.scroll-indicator a {
    color: var(--text-muted);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========== CLIENTS SECTION ========== */
.clients-section {
    padding: 60px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.clients-text {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}

.clients-carousel {
    display: flex;
    width: 100%;
}

.clients-track {
    display: flex;
    animation: scrollClients 20s linear infinite;
    gap: 60px;
    padding: 20px 0;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.client-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
    min-width: 180px;
    height: 100px;
}

.client-logo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(158, 9, 126, 0.15);
    background: #ffffff;
}

.client-logo-item img {
    max-width: 150px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: var(--transition);
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== SECTIONS COMMON ========== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    background: var(--gradient-radial);
}

.feature-card-main {
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card-main:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card-main.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(158, 9, 126, 0.2) 0%, rgba(64, 11, 75, 0.2) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon-main {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-main i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-card-main h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card-main p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.feature-card-secondary {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card-secondary:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-card-secondary i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.feature-card-secondary h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card-secondary p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== SEGMENTS SECTION ========== */
.segments-section {
    background: var(--gradient-dark);
}

.segment-card {
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.segment-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.segment-icon {
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.segment-card:hover .segment-icon {
    background: var(--gradient-primary);
    border-color: transparent;
}

.segment-icon i {
    font-size: 1.8rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.segment-card:hover .segment-icon i {
    color: var(--white);
}

.segment-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.segment-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.segment-card-highlight {
    padding: 40px;
    margin-top: 20px;
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(158, 9, 126, 0.15) 0%, rgba(64, 11, 75, 0.15) 100%);
}

.segment-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.segment-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.segment-card-highlight h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.segment-card-highlight p {
    color: var(--text-light);
    margin: 0;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    background: var(--gradient-radial);
}

.benefits-list {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.benefits-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.benefits-card {
    padding: 50px;
    text-align: center;
    max-width: 350px;
}

.benefits-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
}

.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: var(--glass-border);
    stroke-width: 2;
}

.circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    animation: progress 2s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.benefits-stats h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefits-stats p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.floating-benefit-card {
    position: absolute;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-benefit-card i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.floating-benefit-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-benefit-card.card-a {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.floating-benefit-card.card-b {
    bottom: 15%;
    left: 5%;
    animation-delay: 3s;
}

/* ========== HOW IT WORKS ========== */
.how-it-works-section {
    background: var(--gradient-dark);
}

.step-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-radial);
}

.cta-wrapper {
    padding: 60px;
    background: var(--gradient-primary);
    border: none;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-wrapper p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: var(--gradient-dark);
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.contact-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    padding: 40px;
}

.form-control,
.form-select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: var(--glass-bg);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-floating > label {
    color: var(--text-muted);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-light);
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

.form-check-input {
    background-color: var(--glass-bg);
    border-color: var(--glass-border);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-check-label a {
    color: var(--primary-light);
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0 30px;
}

.footer-logo {
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 15px rgba(158, 9, 126, 0.4));
    transition: var(--transition);
}

.footer-logo:hover {
    filter: drop-shadow(0 6px 20px rgba(158, 9, 126, 0.6));
    transform: scale(1.03);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

.footer-contact li {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 40px 0 20px;
}

.footer-bottom {
    padding-top: 10px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--primary-light);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: 0 10px 30px var(--primary-glow);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 50px;
    }
    
    .floating-card.card-1 {
        left: 5%;
    }
    
    .floating-card.card-2 {
        right: 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-image-wrapper {
        min-height: 400px;
        margin-top: 50px;
    }
    
    .cta-wrapper {
        padding: 40px;
        text-align: center;
    }
    
    .cta-wrapper .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .segment-card-highlight {
        text-align: center;
    }
    
    .segment-card-highlight .col-md-2,
    .segment-card-highlight .col-md-7,
    .segment-card-highlight .col-md-3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .clients-logos {
        gap: 15px;
    }
    
    .client-logo {
        padding: 15px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .cta-wrapper {
        padding: 30px;
    }
    
    .cta-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .floating-card,
    .floating-benefit-card {
        display: none;
    }
    
    .navbar-glass .btn-primary-custom {
        margin-top: 15px;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
    
    .whatsapp-float,
    .back-to-top {
        right: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        bottom: 85px;
        width: 45px;
        height: 45px;
    }
}

/* ========== ANIMAÇÕES DE ENTRADA ========== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

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

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

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

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

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
