

:root {
    --primary-color: #2544ef;
    --secondary-color: #0b1445;
    --default-color: #fff;
    --accent-color: #3a85ff;
    --light-bg: #f8f9fa;
    --dark-bg: #0A2342;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --shadow-light: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-medium: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* cookies */
.cookieDesc{
    color:var(--default-color)
}
 .cookieConsentContainer {
    z-index: 999;
    width: 450px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: none;
    opacity: .9;
    border-radius:10px
  }
  .cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, "sans-serif";
    color: #FFFFFF;
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
  }
  .cookieConsentContainer .cookieDesc a {
    color: #FFFFFF;
    text-decoration: underline;
  }
  .cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, "sans-serif";
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-top: 14px;
    background: var(--accent-color);
    padding: 12px 20px;
    text-align: center;
    transition: background 0.3s;
    text-decoration: none;
  }
  .cookieConsentContainer .cookieButton a:hover { 
    cursor: pointer;
    background: var(--dark-bg);
    color: whitesmoke

}
  .link-cookie-policy { opacity: .6; }
  .link-cookie-policy:hover { opacity: .8; }

  @media (max-width: 980px) {
    .cookieConsentContainer {
      bottom: 0px !important;
      left: 0px !important;
      width: 100% !important;
    }
  }

@font-face {
    font-family:'ofc_font' ;
    src: url(/assets/fonts/Gilgan-Regular.otf) format('otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap; /* <<< força swap */
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* <<< força swap */
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-brands-400.woff2') format('woff2');
}

body {
    font-family: 'ofc_font', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}
.text-success{
    color: var(--primary-color) !important;
}
.bg-success{
    background-color: var(--secondary-color) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar-brand img {
    height:40px
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

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

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



.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
    cursor: pointer;
}


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

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

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

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease forwards 0.3s;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease forwards 0.6s;
    opacity: 0;
}

.animate-slide-in {
    animation: slideInUp 1s ease forwards 0.8s;
    opacity: 0;
}

/* Cards */
.card {
    border: none;
    transition: all 0.3s ease;
}

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

.challenge-card {
    border-left: 4px solid var(--secondary-color) !important;
}

.challenge-card:hover {
    border-left-color: var(--accent-color) !important;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-number {
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.popular-badge {
    z-index: 10;
}

.price-display {
    position: relative;
}

.price-amount {
    position: relative;
}

.price-currency,
.price-period {
    font-size: 1rem;
}
.solutions-image{
    max-width: 600px;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-success {
    /* botão alterado */
   background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
}

.form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--secondary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

.accordion-item {
    border-radius: 8px !important;
    overflow: hidden;
}

/* Footer */
.footer-logo img{
    max-height:80px
}
footer {
    background: var(--dark-bg) !important;
}

.social-links a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* Back to Top Button */
#backToTop {
    width: 50px;
    height: 50px;
    border: none;
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    .solutions-image{
    max-width: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .process-number,
    .service-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .process-number {
        font-size: 1.5rem !important;
    }
    
    .service-icon i {
        font-size: 1.5rem !important;
    }
    /* footer */
    .copy_area{
        flex-direction: column;
        align-items: center;
        gap: 2rem;

    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects for Images */
img {
    transition: all 0.3s ease;
}

.card img:hover {
    transform: scale(1.05);
}

/* Custom Utilities */
.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Enhanced Shadows */
.shadow-sm {
    box-shadow: var(--shadow-light) !important;
}

.shadow {
    box-shadow: var(--shadow-medium) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-heavy) !important;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

/* Custom Border Radius */
.rounded-4 {
    border-radius: 1rem !important;
}

/* Enhanced Typography */
.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

/* Improved Focus States */
*:focus {
    outline: none;
}

.btn:focus,
.form-control:focus,
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

/* CTA Sections */
.cta-content{
    height:100%;
}
.cta-side-a{
    background-color: #0d6efd;
    background: linear-gradient(135deg, #1a365d,   #0d6efd );
    height: 100%;
    overflow: hidden;

   
    
}
.background-pt-side{
    position: absolute;
    width: 100;
    height: 100%;
    background-image: url(/assets/images/fundo_abstrato_neutro.webp);
    z-index: 1;
    object-fit: cover;
    opacity: .1;
    transform: rotate(180deg);
}
.background-icon{
   height: 100%;
   width: 100%;
   opacity: .3;
   z-index: 3;
  
}
.background-icon img{
    height: 70%;
}
.sub-content-cta .btn{
    font-size: 12px !important;
}
.sub-content-cta{
    justify-self: end;
    z-index: 5;
    position: relative;
}

.cta-content h2,
.cta-content-2 h2 {
    line-height: 1.2;
}

.cta-content .rating {
    font-size: 1.2rem;
}

.cta-content .btn,
.cta-content-2 .btn {
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-content .btn:hover,
.cta-content-2 .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-image img,
.cta-image-2 img {
    transition: all 0.3s ease;
}

.cta-image:hover img,
.cta-image-2:hover img {
    transform: scale(1.02);
}

/* Responsive adjustments for CTA sections */
@media (max-width: 768px) {
    .cta-content,
    .cta-content-2 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-content h2,
    .cta-content-2 h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    #backToTop,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}



/* Utility Classes for Colors */
.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.bg-secondary-color {
    background-color: var(--secondary-color) !important;
}

.bg-default-color {
    background-color: var(--default-color) !important;
}

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

.text-secondary-color {
    color: var(--secondary-color) !important;
}

.text-default-color {
    color: var(--default-color) !important;
}



/* Melhorias de Responsividade */

/* First CTA Section - Before Pricing */
.era-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-side-a {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.background-pt-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.background-icon {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.3;
}

.background-icon img {
    max-width: 240px;
    height: auto;
}

.sub-content-cta {
    position: relative;
    z-index: 3;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

/* Responsividade para tablets */
@media (max-width: 992px) {
    .era-container .row {
        height: auto !important;
        min-height: 400px;
    }
    
    .cta-side-a {
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
    }
    
    .cta-image img {
        border-radius: 0 0 20px 20px;
        height: 300px;
    }
    
    .background-icon {
        right: 10px;
    }
    
    .background-icon img {
        max-width: 100px;
    }
    
    .sub-content-cta .btn {
        width: 100% !important;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .era-container {
        padding: 0 10px;
    }
    
    .era-container .row {
        height: auto !important;
        min-height: 300px;
    }
    
    .cta-side-a {
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .cta-image {
        margin-top: 20px;
    }
    
    .cta-image img {
        border-radius: 20px;
        height: 250px;
    }
    
    .sub-content-cta {
        padding: 2rem 1.5rem !important;
    }
    
    .sub-content-cta h2 {
        font-size: 1.8rem !important;
    }
    
    .sub-content-cta p {
        font-size: 1rem;
    }
    
    .background-icon {
        display: none;
    }
    
    .rating {
        justify-content: center !important;
    }
}

/* Responsividade mobile */
@media (max-width: 576px) {
    .sub-content-cta {
        padding: 1.5rem 1rem !important;
    }
    
    .sub-content-cta h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .sub-content-cta p br {
        display: none;
    }
    
    .cta-image img {
        height: 415px;
    }
}

/*responsividade gerais */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
    
    .display-6 {
        font-size: 1.5rem !important;
    }
    
    .service-card .card-body {
        padding: 2rem 1rem !important;
    }
    
    .process-card .card-body {
        padding: 2rem 1rem !important;
    }
    
    .pricing-card .card-body {
        padding: 2rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-content {
        padding-left: 1rem !important;
    }
    
    .challenge-card .card-body,
    .service-card .card-body,
    .process-card .card-body {
        padding: 1.5rem 1rem !important;
    }
    
    .service-icon,
    .process-number {
        width: 60px !important;
        height: 60px !important;
    }
    
    .service-icon i,
    .process-number {
        font-size: 1.5rem !important;
    }
}

/*blob na hero section */
@media (max-width: 992px) {
    .blob {
        transform: translateX(50px);
        width: 80%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .blob {
        transform: translateX(0);
        width: 100%;
        height: 100%;
        margin-top: -50px;
    }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    background-color: #25d366;
    color: var(--default-color);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 998;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: var(--default-color);
    transform: scale(1.1);
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
        font-size: 24px;
    }
      #backToTop{
        margin:0.8rem !important
    }
}

@media (max-width: 576px) {
    .whatsapp-float,  #backToTop {
        width: 45px;
        height: 45px;
        bottom: 70px;
        right: 10px;
        font-size: 20px;
    }
    #backToTop{
        margin:0.6rem !important
    }
    
  
}



/* Vantagens Section Styles */
.vantagem-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.vantagem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vantagem-icon {
    transition: all 0.3s ease;
}

.vantagem-card:hover .vantagem-icon {
    transform: scale(1.1);
    background-color: var(--primary-color) !important;
}

.vantagem-card:hover .vantagem-icon {
    color: white !important;
}

.vantagem-card .card-body {
    padding: 2rem;
}

.vantagem-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vantagem-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* vantagens section */
@media (max-width: 768px) {
    .vantagem-card .card-body {
        padding: 1.5rem;
    }
    
    .vantagem-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .vantagem-icon i {
        font-size: 1.5rem !important;
    }
    
    .vantagem-card h5 {
        font-size: 1.1rem;
    }
    
    .vantagem-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #vantagens .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #vantagens .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    #vantagens .col-lg-4 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}



/* Menu mobile Bootstrap */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

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

.navbar-toggler:hover {
    background-color: rgba(37, 68, 239, 0.1);
}

/* z-index do menu */
.navbar {
    z-index: 1030;
}

.navbar-collapse {
    z-index: 1031;
}

/* Melhorias no menu mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(37, 68, 239, 0.1);
        color: var(--primary-color) !important;
    }
    
    /* Garantir que o menu mobile apareça corretamente */
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-collapse.collapsing {
        display: block !important;
    }
}

