/* General Styles */
:root {
    /* Main Colors */
    --primary-color: #2c3e50;    /* Dark Blue */
    --secondary-color: #34495e;  /* Slate Blue */
    --accent-color: #3498db;     /* Bright Blue */
    --gold-color: #e74c3c;       /* Vibrant Red */
    --light-color: #ffffff;      /* White */
    --dark-color: #1a1a2e;       /* Deep Dark */
    --gray-color: #95a5a6;       /* Medium Gray */
    --success-color: #2ecc71;    /* Green */
    --light-bg: #f8f9fa;         /* Light Background */
    --light-accent: #ecf0f1;     /* Light Accent */
    
    /* RGB Values for Opacity */
    --primary-color-rgb: 44, 62, 80;
    --secondary-color-rgb: 52, 73, 94;
    --accent-color-rgb: 52, 152, 219;
    --gold-color-rgb: 231, 76, 60;
    --dark-color-rgb: 26, 26, 46;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

/* Header Styles */
header {
    transition: all 0.3s ease;
    background: rgba(var(--primary-color-rgb), 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 35, 126, 0.2);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    opacity: 0.9;
    font-weight: 500;
    padding: 8px 15px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-color);
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: var(--gold-color) !important;
    background: rgba(255, 193, 7, 0.15);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .btn-primary {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--light-color);
}

.navbar-nav .btn-primary:hover {
    transform: translateY(-2px);
    background: #c0392b;
    border-color: #c0392b;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 6px;
}

.navbar-toggler-icon::after {
    bottom: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(26, 35, 126, 0.98);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .btn-primary {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float .whatsapp-icon i {
        font-size: 30px;
    }
    
    .whatsapp-float .whatsapp-text {
        display: none;
    }
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    color: var(--light-color);
    padding: 120px 0 80px;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.banner-section h1 {
    color: var(--light-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.banner-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-color);
    transition: width 0.6s ease;
}

.banner-section:hover h1::after {
    width: 100%;
}

.banner-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.banner-section .btn-primary {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--light-color);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(var(--gold-color-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.banner-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.banner-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--gold-color-rgb), 0.4);
    background: #c0392b;
    border-color: #c0392b;
}

.banner-section .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.banner-section .btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.banner-section .btn-primary:hover i {
    transform: translateX(5px) rotate(10deg);
}

.banner-section .img-fluid {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
    border-radius: 10px;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.banner-section .img-fluid:hover {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Feature Cards */
.feature-card {
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: var(--light-color);
    border-color: var(--gold-color);
}

.feature-card i {
    color: var(--gold-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    z-index: 1;
}

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

footer h5 {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

footer h5:hover::after {
    width: 100%;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer ul li {
    margin-bottom: 0.8rem;
    color: #fff;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

footer ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

footer ul li a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

footer ul li a:hover::after {
    width: 100%;
}

footer .social-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
}

footer .social-links a:hover {
    color: var(--light-color);
    background: var(--gold-color);
    transform: translateY(-3px);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

footer .text-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 60px 0 30px;
    }
    
    footer h5 {
        margin-top: 30px;
    }
    
    footer .social-links {
        margin-top: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-section .col-lg-6:first-child {
    animation: fadeInUp 1s ease-out;
}

.feature-card {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .banner-section {
        text-align: center;
    }
    
    .banner-section img {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .banner-section h1 {
        font-size: 2.5rem;
    }
}

/* Additional Industrial Elements */
.feature-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
}

.feature-card p {
    color: var(--gray-color);
}

/* Metallic Button Style */
.btn-lg {
    background: linear-gradient(45deg, var(--accent-color), #c0392b);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-lg:hover {
    background: linear-gradient(45deg, #c0392b, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
   
    color: var(--light-color);
}

.whatsapp-float .whatsapp-icon {
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-icon i {
    color: var(--light-color);
    font-size: 35px;
}

.whatsapp-float .whatsapp-text {
    background: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
/*    background: #c0392b;*/
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 200, 83, 0.3);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float .whatsapp-icon i {
        font-size: 30px;
    }
    
    .whatsapp-float .whatsapp-text {
        display: none;
    }
}

/* Recursos Section */
#recursos .feature-card {
    background: var(--light-bg);
    border: none;
    transition: all 0.3s ease;
}

#recursos .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#recursos .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem 0;
}

#recursos .feature-card p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 0;
}

#recursos .feature-card i {
    transition: all 0.3s ease;
}

#recursos .feature-card:hover i {
    transform: scale(1.1);
}

/* Apresentação Section */
#apresentacao .feature-card {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

#apresentacao .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#apresentacao .feature-card i {
    transition: all 0.3s ease;
}

#apresentacao .feature-card:hover i {
    color: var(--gold-color) !important;
    transform: scale(1.1);
}

#apresentacao .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem 0;
}

#apresentacao .feature-card p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

#apresentacao .feature-card ul li {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#apresentacao .feature-card ul li i {
    color: var(--success-color);
    transition: all 0.3s ease;
}

#apresentacao .feature-card ul li:hover i {
    color: var(--gold-color);
    transform: scale(1.1);
}

/* Benefícios Adicionais */
.benefit-item {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.benefit-item i {
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    color: var(--gold-color) !important;
    transform: scale(1.1);
}

.benefit-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.benefit-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CTA Box */
.cta-box {
    position: relative;
    overflow: hidden;
    background: var(--light-color);
    border: 1px solid var(--gold-color);
    z-index: 1;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg') no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-box .btn-light,
.cta-box .btn-primary {
    position: relative;
    z-index: 2;
    background: var(--primary-color);
    color: var(--light-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-box .btn-light:hover,
.cta-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background: var(--gold-color);
    color: var(--light-color);
    text-decoration: none;
}

.cta-box .btn-light i,
.cta-box .btn-primary i {
    transition: all 0.3s ease;
}

.cta-box .btn-light:hover i,
.cta-box .btn-primary:hover i {
    transform: translateX(3px) rotate(10deg);
}

/* FAQ Section */
#faq .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#faq .accordion-button {
    background-color: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--light-color);
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

#faq .accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

#faq .accordion-body {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

#faq .accordion-button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

#faq .accordion-button:hover::after {
    filter: brightness(0) invert(1);
}

/* Pricing Cards */
.pricing-card {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.pricing-features ul li i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features ul li i.fa-plus {
    color: var(--primary-color);
}

.pricing-footer {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-footer .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Integration Cards */
.integration-card {
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.integration-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--light-color);
    border-color: var(--gold-color);
}

.integration-card:hover::before {
    opacity: 0.05;
}

.integration-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(var(--gold-color-rgb), 0.1);
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-color);
}

.integration-card:hover .integration-icon::before {
    opacity: 1;
}

/* Pulse Animation */
@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--gold-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0);
    }
}

.integration-card:hover .integration-icon {
    animation: iconPulse 1.5s infinite;
}

/* Feature Icons Animation */
.integration-features li i {
    color: var(--gold-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.integration-features li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.integration-features li i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(0);
    transition: all 0.3s ease;
}

.integration-features li:hover i::after {
    transform: scale(2);
    opacity: 0;
}

/* Content Animation */
.integration-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.integration-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.integration-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-content h3::after {
    width: 100%;
}

.integration-features li {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.integration-card:hover .integration-features li {
    transform: translateX(10px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .integration-card {
        padding: 1.5rem;
    }

    .integration-icon {
        font-size: 2rem;
        padding: 0.8rem;
    }

    .integration-content h3 {
        font-size: 1.3rem;
    }
}

/* Custom Integrations Section */
.custom-integrations {
    background: var(--light-accent);
    position: relative;
    overflow: hidden;
}

.custom-integration-content {
    position: relative;
    z-index: 2;
}

.custom-integration-content .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    box-shadow: 0 4px 15px rgba(var(--gold-color-rgb), 0.3);
    color: var(--light-color);
}

.feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

.feature-item:hover {
    transform: translateX(10px);
    background: var(--light-color);
    box-shadow: 0 5px 15px rgba(var(--gold-color-rgb), 0.2);
    border-color: var(--gold-color);
}

.feature-item i {
    transition: all 0.3s ease;
    color: var(--gold-color);
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-color);
}

.custom-integration-image {
    position: relative;
    padding: 2rem;
}

.custom-integration-image img {
    transition: all 0.4s ease;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(var(--gold-color-rgb), 0.15);
}

.custom-integration-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--gold-color-rgb), 0.25);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(var(--gold-color-rgb), 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(var(--gold-color-rgb), 0.1);
}

.floating-card i {
    color: var(--gold-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.floating-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.floating-card:hover span {
    color: var(--gold-color);
}

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

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.cta-box {
    border: 1px solid rgba(var(--gold-color-rgb), 0.2);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--gold-color-rgb), 0.2);
    border-color: var(--gold-color);
}

.cta-box .btn-primary {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(var(--gold-color-rgb), 0.3);
}

.cta-box .btn-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(var(--gold-color-rgb), 0.4);
}

.cta-box .btn-primary i {
    transition: all 0.3s ease;
}

.cta-box .btn-primary:hover i {
    transform: translateX(3px) rotate(10deg);
}

/* Integration Icons Animation */
.integration-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(var(--gold-color-rgb), 0.1);
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--accent-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-color);
}

.integration-card:hover .integration-icon::before {
    opacity: 1;
}

/* Pulse Animation */
@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--gold-color-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--gold-color-rgb), 0);
    }
}

.integration-card:hover .integration-icon {
    animation: iconPulse 1.5s infinite;
}

/* Feature Icons Animation */
.integration-features li i {
    color: var(--gold-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.integration-features li:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--accent-color);
}

.integration-features li i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(0);
    transition: all 0.3s ease;
}

.integration-features li:hover i::after {
    transform: scale(2);
    opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .custom-integration-image {
        margin-top: 3rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .custom-integration-content h2 {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
}

/* Text Colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

p, li {
    color: var(--secondary-color);
}

/* Icons */
.feature-item i,
.integration-icon,
.floating-card i {
    color: var(--gold-color);
}

/* Hover Effects */
.btn-primary {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Badges */
.badge {
    background: var(--gold-color);
    color: var(--light-color);
}

/* Links */
a {
    color: var(--accent-color);
}

a:hover {
    color: var(--gold-color);
}

/* Form Elements */
input, textarea, select {
    background: var(--light-color);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

input:focus, textarea:focus, select:focus {
    background: var(--light-color);
    border-color: var(--gold-color);
    color: var(--primary-color);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-color);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%
    );
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-step:hover .process-icon i {
    transform: scale(1.1);
    color: var(--gold-color);
}

.process-content {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.process-step:hover .process-content {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.process-content ul li {
    color: var(--gray-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.process-content ul li i {
    color: var(--gold-color);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.process-step:hover ul li {
    transform: translateX(5px);
}

.process-step:hover ul li i {
    transform: scale(1.2);
}

/* Responsive Process Timeline */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        padding-left: 80px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-icon i {
        font-size: 2rem;
    }
    
    .process-content {
        padding: 20px;
    }
    
    .process-content h3 {
        font-size: 1.3rem;
    }
} 
/* Cabeçalhos */
.text_seo h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
  }
  
  .text_seo h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
  }
  
  .text_seo h4 {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    color: #34495e;
  }
  
  /* Parágrafos */
  .text_seo p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-align: justify;
  }
  
  /* Separador horizontal */
  .text_seo hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
  }
  
  /* Listas não ordenadas */
  .text_seo ul {
    margin-bottom: 1.2rem;
    padding-left: 20px;
    list-style-type: disc;
  }
  
  .text_seo ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  /* Tabelas */
  .text_seo table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }
  
  .text_seo table th,
  .text_seo table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
  }
  
  .text_seo table th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  /* Links internos ou externos */
  .text_seo a {
    color: #3498db;
    text-decoration: none;
  }
  
  .text_seo a:hover {
    text-decoration: underline;
  }