/*----------------------------------------------------
@File: Modern Styles - FaberSoft 2024
@Description: Estilos modernos com glassmorphism,
animações fluidas e design contemporâneo
----------------------------------------------------*/

/* ============================================
   CSS CUSTOM PROPERTIES (VARIÁVEIS)
   ============================================ */
:root {
    /* Cores Principais - Mantidas do tema original */
    --color-primary: #22195e;
    --color-primary-light: #4602ef;
    --color-secondary: #eca2f1;
    --color-accent: #e93d88;
    --color-accent-warm: #e5935a;
    --color-violet: #9b5cf6;
    --color-gold: #f8b600;

    /* Cores de Texto */
    --color-text: #777777;
    --color-text-dark: #222222;
    --color-text-light: #999999;
    --color-white: #ffffff;

    /* Cores de Fundo */
    --bg-light: #f9f9ff;
    --bg-lighter: #fafaff;
    --bg-dark: #04091e;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #22195e 0%, #4602ef 100%);
    --gradient-hover: linear-gradient(135deg, #22195e 0%, #eca2f1 100%);
    --gradient-accent: linear-gradient(135deg, #e93d88 0%, #e5935a 100%);
    --gradient-violet: linear-gradient(135deg, #2c28b1 0%, #9b5cf6 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(34, 25, 94, 0.03) 0%, rgba(70, 2, 239, 0.03) 100%);

    /* Sombras Modernas */
    --shadow-sm: 0 2px 8px rgba(34, 25, 94, 0.08);
    --shadow-md: 0 4px 20px rgba(34, 25, 94, 0.12);
    --shadow-lg: 0 10px 40px rgba(34, 25, 94, 0.15);
    --shadow-xl: 0 20px 60px rgba(34, 25, 94, 0.2);
    --shadow-glow: 0 0 30px rgba(70, 2, 239, 0.3);
    --shadow-glow-accent: 0 0 30px rgba(233, 61, 136, 0.3);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(34, 25, 94, 0.1);

    /* Tipografia */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;

    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

/* Smooth scroll indicator */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 99999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
}

/* ============================================
   HEADER MODERNO COM GLASS EFFECT
   ============================================ */
.header_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all var(--transition-normal);
    padding: 15px 0;
}

.header_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.header_area.scrolled::before {
    opacity: 1;
}

.header_area.scrolled {
    padding: 10px 0;
    box-shadow: var(--glass-shadow);
}

.header_area .navbar {
    padding: 0;
}

.header_area .navbar-brand img {
    height: 45px;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 2px 4px rgba(34, 25, 94, 0.1));
}

.header_area.scrolled .navbar-brand img {
    height: 40px;
}

/* Menu Items Modernos */
.header_area .navbar .nav .nav-item {
    margin-right: 35px;
    position: relative;
}

.header_area .navbar .nav .nav-item .nav-link {
    font: 500 13px/80px var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
    padding: 0;
    position: relative;
    transition: all var(--transition-normal);
}

.header_area .navbar .nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
    display: block !important;
}

.header_area .navbar .nav .nav-item:hover .nav-link::after,
.header_area .navbar .nav .nav-item.active .nav-link::after {
    width: 100%;
}

.header_area .navbar .nav .nav-item:hover .nav-link,
.header_area .navbar .nav .nav-item.active .nav-link {
    color: var(--color-primary);
}

/* Botão WhatsApp Moderno */
.primary_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    z-index: 1;
}

.primary_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: transform var(--transition-normal);
    transform: translateX(-100%);
}

.primary_btn:hover {
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.primary_btn:hover::before {
    transform: translateX(0);
}

.primary_btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.navbar-toggler:hover {
    background: var(--gradient-mesh);
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ============================================
   BANNER/HOME HERO SECTION
   ============================================ */
.home_banner_area {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 50%, #e8ebff 100%);
    overflow: hidden;
}

/* Background Decorativo */
.home_banner_area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.home_banner_area::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite reverse;
}

/* Animated Shapes */
.home_banner_area .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
}

.home_banner_area .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary-light);
    top: 10%;
    left: 5%;
    filter: blur(60px);
}

.home_banner_area .shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    bottom: 20%;
    right: 10%;
    filter: blur(40px);
    animation-delay: -5s;
}

.home_banner_area .shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-violet);
    top: 40%;
    right: 25%;
    filter: blur(30px);
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Banner Content */
.banner_inner {
    position: relative;
    z-index: 2;
}

.banner_content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner_content h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner_content h2 br {
    display: block;
}

.banner_content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 35px;
    max-width: 500px;
}

/* Banner Image */
.home_right_img {
    animation: slideInRight 1s ease-out 0.3s both;
    position: relative;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.home_right_img img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(34, 25, 94, 0.2));
    animation: floatImage 6s ease-in-out infinite;
}

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

/* Image decorative elements */
.home_right_img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

/* ============================================
   FEATURES SECTION MODERNA
   ============================================ */
.features_area {
    position: relative;
    padding: 100px 0;
    background: var(--color-white);
}

.features_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.main_title {
    text-align: center;
    margin-bottom: 60px;
}

.main_title .top_title {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary-light);
    background: linear-gradient(135deg, rgba(34, 25, 94, 0.08) 0%, rgba(70, 2, 239, 0.08) 100%);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.main_title h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.main_title p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Image */
.left_features {
    position: relative;
}

.left_features img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
}

.left_features:hover img {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: var(--shadow-glow);
}

/* Feature Cards Modernos */
.single_feature {
    position: relative;
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    border: 1px solid rgba(34, 25, 94, 0.08);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.single_feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.single_feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.single_feature:hover::before {
    transform: scaleX(1);
}

.feature_head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature_head span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 22px;
    margin-right: 15px;
    transition: all var(--transition-normal);
}

.single_feature:hover .feature_head span {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.feature_head h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
}

.feature_content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

/* ============================================
   CONTACT NOW SECTION (CTA)
   ============================================ */
.contact_now_area {
    position: relative;
    padding: 80px 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.contact_now_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact_now_area .container {
    position: relative;
    z-index: 2;
}

.contact_now_area h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
}

.contact_now_area p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.contact_now_area .primary_btn {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.contact_now_area .primary_btn::before {
    background: var(--gradient-hover);
}

.contact_now_area .primary_btn:hover {
    color: var(--color-white);
}

/* ============================================
   FOOTER MODERNO
   ============================================ */
.footer_area {
    position: relative;
    background: #0a0a0a;
    padding: 0;
    overflow: hidden;
}

/* Wave Background Pattern */
.footer_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.footer_wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(70, 2, 239, 0.08) 0%, transparent 50%),
    animation: wave-shift 20s ease-in-out infinite;
}

.footer_wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%, rgba(236, 162, 241, 0.05) 0%, transparent 40%),
    animation: wave-shift 15s ease-in-out infinite reverse;
}

@keyframes wave-shift {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10%, -10%);
    }
}

/* Floating Particles */
.footer_particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(70, 2, 239, 0.3);
    border-radius: 50%;
    animation: float-particle 20s infinite ease-in-out;
}

.particle-1 { left: 10%; top: 20%; animation-delay: 0s; }
.particle-2 { left: 25%; top: 60%; animation-delay: 4s; }
.particle-3 { left: 50%; top: 30%; animation-delay: 8s; }
.particle-4 { left: 75%; top: 70%; animation-delay: 12s; }
.particle-5 { left: 90%; top: 40%; animation-delay: 16s; }

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) translateX(30px) scale(1.5);
        opacity: 0.6;
    }
}

.footer_inner {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.f_widget {
    margin-bottom: 40px;
}

.f_title h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.f_title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Footer Contact Info */
.ab_widget .contact_info {
    padding: 0;
}

.ab_widget .info_item {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}

.ab_widget .info_item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 20px;
    color: var(--color-accent);
}

.ab_widget .info_item h6 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 5px;
}

.ab_widget .info_item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* Footer Contact Section */
.news_widget .info_item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.news_widget .info_item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 18px;
    color: var(--color-accent);
}

.news_widget .info_item h6 {
    margin: 0;
}

.news_widget .info_item h6 a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.news_widget .info_item h6 a:hover {
    color: var(--color-accent);
}

/* Social Icons */
.social_widget p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social_widget .list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social_widget .list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 22px;
    transition: all var(--transition-normal);
}

.social_widget .list li a:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-accent);
}

/* Footer Bottom */
.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
}

.footer_bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

/* ============================================
   ANIMAÇÕES E EFEITOS GLOBAIS
   ============================================ */

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger Animation */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Hover Glow Effect */
.hover-glow {
    transition: all var(--transition-normal);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s;
}

.btn-shine:hover::after {
    left: 125%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .banner_content h2 {
        font-size: 48px;
    }

    .main_title h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .header_area {
        padding: 15px 0;
    }

    .header_area.scrolled {
        padding: 10px 0;
    }

    .header_area .navbar .nav .nav-item .nav-link {
        line-height: 50px;
    }

    .home_banner_area {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .banner_content h2 {
        font-size: 40px;
    }

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

    .banner_content p {
        max-width: 100%;
    }

    .home_right_img {
        text-align: center;
    }

    .home_right_img img {
        max-width: 80%;
    }

    .left_features {
        margin-bottom: 50px;
        text-align: center;
    }

    .single_feature {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .banner_content h2 {
        font-size: 32px;
    }

    .main_title h2 {
        font-size: 28px;
    }

    .banner_content p {
        font-size: 16px;
    }

    .contact_now_area h3 {
        font-size: 28px;
    }

    .footer_area {
        padding: 60px 0 0;
    }

    .f_widget {
        text-align: center;
    }

    .f_title h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ab_widget .info_item {
        padding-left: 0;
        text-align: center;
    }

    .ab_widget .info_item i {
        position: static;
        display: block;
        margin-bottom: 10px;
    }

    .news_widget .info_item {
        padding-left: 0;
        text-align: center;
    }

    .news_widget .info_item i {
        position: static;
        display: block;
        margin-bottom: 10px;
    }

    .social_widget .list {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .primary_btn {
        padding: 0 20px;
        height: 45px;
        font-size: 11px;
    }

    .banner_content h2 {
        font-size: 28px;
    }

    .home_right_img img {
        max-width: 100%;
    }

    .social_widget .list li a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* ============================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   PÁGINA EMPRESA
   ============================================ */
.page_banner_area {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 50%, #e8ebff 100%);
    overflow: hidden;
}

.page_banner_area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(80px);
}

.page_banner_area h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PÁGINA CONTATO
   ============================================ */
.contact_form_area {
    padding: 100px 0;
    background: var(--color-white);
}

.contact_form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(34, 25, 94, 0.05);
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(34, 25, 94, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-dark);
    transition: all var(--transition-fast);
    background: var(--bg-light);
}

.contact_form input:focus,
.contact_form textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(70, 2, 239, 0.1);
    background: var(--color-white);
}

.contact_form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact_form .wpcf7-submit {
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.contact_form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   BLOG STYLES - ANIMAÇÕES SUAVES
   ============================================ */
.blog_content {
    background: var(--color-white);
    padding: 30px 30px 40px 30px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.blog_item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog_item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog_item img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog_item:hover img {
    transform: scale(1.02);
}

/* Impedir que o texto do blog se mova */
.blog_item:hover .blog_content {
    transform: none;
}

.blog_item .blog_content * {
    transition: none;
}

/* Margem para o botão do blog */
.blog_content .primary_btn {
    margin-top: 15px;
    margin-bottom: 10px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.shadow-soft {
    box-shadow: var(--shadow-md);
}

.rounded-modern {
    border-radius: var(--radius-lg);
}

.rounded-full {
    border-radius: var(--radius-full);
}

/* Spacing utilities */
.py-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mb-section {
    margin-bottom: 80px;
}

/* ============================================
   CORREÇÕES E AJUSTES
   ============================================ */

/* 1. BOTÃO WHATSAPP - CENTRALIZAR TEXTO */
.primary_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    white-space: nowrap;
    padding: 0 25px;
    height: 50px;
}

.primary_btn span {
    display: flex;
    align-items: center;
}

.navbar-right .primary_btn {
    line-height: 1 !important;
    height: 50px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* 2. TEXTOS EM BRANCO - MELHORAR CONTRASTE */
.contact_now_area h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact_now_area p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact_content h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact_content p {
    color: rgba(255, 255, 255, 0.95);
}

/* Footer textos */
.f_title h3 {
    color: #ffffff;
}

.ab_widget .info_item h6 {
    color: #ffffff;
}

.ab_widget .info_item p {
    color: rgba(255, 255, 255, 0.85);
}

.news_widget .info_item h6 a {
    color: rgba(255, 255, 255, 0.9);
}

.news_widget .info_item h6 a:hover {
    color: var(--color-accent);
}

.social_widget p {
    color: rgba(255, 255, 255, 0.85);
}

/* 3. CARDS DE FEATURES - ÍCONES NÃO COBREM TEXTO */
.single_feature {
    padding: 25px;
    position: relative;
}

.feature_head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px !important;
}

.feature_head span.lnr {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: var(--color-white);
    font-size: 18px;
    flex-shrink: 0;
}

.feature_head h4 {
    flex: 1;
    margin: 0 !important;
    line-height: 1.3;
    font-size: 18px;
}

.feature_content {
    clear: both;
    padding-left: 0;
    margin-top: 0;
}

.feature_content p {
    color: #555555 !important;
    margin: 0;
    line-height: 1.7;
}

/* 4. CARDS COM MESMA ALTURA (EQUAL HEIGHT) */
/* Location cards - página empresa */
.location_section .row {
    display: flex;
    flex-wrap: wrap;
}

.location_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
}

.location_card .location_info {
    flex: 1;
}

/* Contact sidebar e form wrapper - página contato */
.contact_area .row {
    align-items: stretch;
}

.contact_sidebar {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact_form_wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Value cards - página empresa */
.values_section .row {
    display: flex;
    flex-wrap: wrap;
}

.values_section [class*="col-"] {
    display: flex;
}

.value_card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value_card p {
    flex: 1;
}

/* Contact info cards - página contato */
.contact_info_card {
    min-height: auto;
}

/* Stats items - mesma altura */
.stats_section .row {
    display: flex;
    flex-wrap: wrap;
}

.stat_item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Blog items - mesma altura */
.blog_item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog_item .blog_content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 5. ANIMAÇÕES DO BLOG - SALTADINHA LEVE */
.blog_item {
    transition: transform 0.2s ease;
}

.blog_item:hover {
    transform: translateY(-5px);
}

/* Remove qualquer animação da imagem e conteúdo */
.blog_item img {
    transition: none !important;
    transform: none !important;
}

.blog_item:hover img {
    transform: none !important;
}

.blog_item .blog_content {
    transform: none !important;
    transition: none !important;
}

.blog_item:hover .blog_content {
    transform: none !important;
}

/* 6. TEXTO DO BADGE NA HOME */
.badge-modern {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(34, 25, 94, 0.1) 0%, rgba(70, 2, 239, 0.1) 100%);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 25, 94, 0.1);
}

/* 7. MELHORAR LEGIBILIDADE GERAL */
p {
    line-height: 1.7;
}

.single_feature .feature_content p {
    color: #555555;
}

.value_card p {
    color: #555555;
}

.location_info p {
    color: #555555;
}

/* 8. RESPONSIVO - AJUSTES MOBILE */
@media (max-width: 991px) {
    .contact_sidebar,
    .contact_form_wrapper {
        height: auto;
    }

    .location_card {
        min-height: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .primary_btn {
        padding: 0 20px;
        height: 45px;
        font-size: 11px;
    }

    .navbar-right .primary_btn {
        margin-top: 10px;
    }
}

/* ============================================
   9. BANNER HOME - CORES LEGÍVEIS
   ============================================ */

/* Texto do banner - cores escuras para fundo claro */
.banner_content h2 {
    color: var(--color-text-dark) !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner_content h2 span.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner_content p {
    color: #444444 !important;
    font-size: 17px;
    line-height: 1.8;
}

/* Botões do banner */
.banner_cta .primary_btn {
    background: var(--color-white) !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
}

.banner_cta .primary_btn span {
    color: var(--color-primary) !important;
}

.banner_cta .primary_btn:hover {
    background: var(--gradient-primary) !important;
    color: var(--color-white) !important;
    border-color: transparent !important;
}

.banner_cta .primary_btn:hover span {
    color: var(--color-white) !important;
}

.banner_cta .btn-outline {
    background: transparent !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
}

.banner_cta .btn-outline span {
    color: var(--color-primary) !important;
}

.banner_cta .btn-outline:hover {
    background: rgba(34, 25, 94, 0.05) !important;
}

.banner_cta .btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid rgba(34, 25, 94, 0.3);
}

.banner_cta .btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Badge do banner */
.badge-modern {
    background: linear-gradient(135deg, rgba(34, 25, 94, 0.1) 0%, rgba(70, 2, 239, 0.1) 100%);
    color: var(--color-primary) !important;
    border: 1px solid rgba(34, 25, 94, 0.15);
}

/* Trust indicators - cores escuras */
.trust_indicators {
    border-top: 1px solid rgba(34, 25, 94, 0.15);
}

.trust_number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--color-primary);
}

.trust_label {
    color: #666666;
}

/* Scroll indicator */
.scroll_indicator {
    color: var(--color-text);
}

.scroll_line {
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

/* Floating elements */
.floating_element {
    color: var(--color-text-dark);
}

/* Features section - garantir que textos estão legíveis */
.main_title h2 {
    color: var(--color-text-dark) !important;
}

.main_title p {
    color: #555555 !important;
}

.single_feature .feature_content p {
    color: #555555 !important;
}

.feature_head h4 {
    color: var(--color-text-dark) !important;
}
