/* Estilos Gerais */
:root {
    /* Paleta de Cores Oficial - BI & Consultoria */
    --primary-color: #011C26;      /* Cor Primária: fundo principal, header, footer */
    --secondary-color: #02394A;    /* Cor Secundária: menus, cards de destaque */
    --accent-color: #F4A259;       /* Cor Acento 1: botões de ação, CTA */
    --accent-blue: #4BB3FD;        /* Cor Acento 2: links, gráficos de destaque */
    --text-color: #011C26;         /* Texto principal */
    --light-text: #AEB8BF;         /* Cor Neutro Médio: bordas, divisores, textos secundários */
    --background-color: #F4F6F8;   /* Cor Neutro Claro: fundos de seções */
    --light-background: #011C26;   /* Fundo escuro */
    --border-color: #AEB8BF;       /* Bordas e divisórias */
    --success-color: #8FCB9B;      /* Mantido para compatibilidade */
    --warning-color: #F4A259;      /* Cor de alerta */
    --danger-color: #ef4444;       /* Cor de erro */
    --header-color: #011C26;       /* Header */
    --footer-color: #011C26;       /* Footer */
    --button-primary: #F4A259;     /* Botões principais */
    --button-secondary: #02394A;   /* Botões secundários */
    --button-alert: #F4A259;       /* Botões de alerta */
    --link-color: #4BB3FD;         /* Links */
    --link-hover: #F4A259;         /* Links hover */
    --title-color: #011C26;        /* Títulos */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--title-color);
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--link-color);
    transition: all 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--button-primary);
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: var(--link-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--button-secondary);
    color: var(--button-secondary);
}

.btn-secondary:hover {
    background-color: var(--button-secondary);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-alert {
    background-color: var(--button-alert);
    color: white;
}

.btn-alert:hover {
    background-color: #e8944a;
    color: white;
}

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

.section-header h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(143, 203, 155, 0.5);
}

.section-header p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

.company-logo {
    max-height: 60px;
    width: auto;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-weight: 500;
    position: relative;
    color: var(--accent-color);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--header-color);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(244, 162, 89, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--accent-color);
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(244, 162, 89, 0.1);
    color: white;
    padding-left: 25px;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown > a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(156, 39, 176, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #E0E6E9;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(244, 162, 89, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 13px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 0 0 13px 13px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(244, 162, 89, 0.9);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(244, 162, 89, 0.7);
    transform: scale(1.1);
}

.dashboard-preview {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(156, 39, 176, 0.3);
}

/* Solutions Section */
.solutions {
    background: linear-gradient(180deg, var(--background-color) 0%, var(--light-background) 100%);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(1, 34, 46, 0.7) 0%, rgba(2, 62, 88, 0.7) 100%);
    z-index: 0;
}

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

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: rgba(52, 73, 94, 0.8);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 39, 176, 0.2);
    backdrop-filter: blur(5px);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(156, 39, 176, 0.4);
}

.solution-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.solution-card p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.solution-card p:first-of-type {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.solution-description {
    min-height: 80px;
}

.solution-benefit {
    background-color: var(--background-color);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.solution-benefit strong {
    color: var(--primary-color);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.feature-image {
    width: 100%;
    height: 180px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 8px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

/* Integration Section */
.integration {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.integration .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.integration-content {
    flex: 1;
}

.integration-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.integration-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.integration-benefits {
    margin-bottom: 30px;
}

.integration-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.integration-benefits li i {
    color: #4ade80;
    margin-right: 10px;
    font-size: 20px;
}

.integration-image {
    flex: 1;
    text-align: center;
}

.integration-img {
    max-width: 100%;
    border-radius: 10px;
}

/* Differentials Section */
.differentials {
    background-color: var(--secondary-color);
    color: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.differential-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.differential-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.differential-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

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

/* Testimonials Section */
.testimonials {
    background-color: var(--background-color);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-width: 350px;
    flex: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p::before {
    top: -20px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 0;
}

/* CEO Carousel Section */
.ceo-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel-container-ceo {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slides-ceo {
    display: flex;
    transition: transform 0.5s ease;
}

.ceo-slide {
    min-width: 100%;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 40px;
}

.ceo-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ceo-photo {
    flex-shrink: 0;
}

.ceo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 20px rgba(244, 162, 89, 0.3);
    transition: transform 0.3s ease;
}

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

.ceo-text {
    flex: 1;
}

.ceo-text h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.ceo-text h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.ceo-text blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 0;
    font-style: italic;
}

.ceo-text blockquote p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.trajectory-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-color);
    text-align: justify;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn-ceo {
    background-color: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(244, 162, 89, 0.3);
}

.carousel-btn-ceo:hover {
    background-color: var(--link-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(244, 162, 89, 0.4);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--link-hover);
}

/* Responsive CEO Section */
@media (max-width: 768px) {
    .ceo-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .ceo-img {
        width: 120px;
        height: 120px;
    }
    
    .ceo-slide {
        padding: 25px;
    }
    
    .ceo-text h3 {
        font-size: 24px;
    }
    
    .trajectory-content p {
        text-align: left;
    }
}

/* CTA Section */
.cta {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 35, 47, 0.1);
}

.btn-submit {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--footer-color);
    color: white;
    padding-top: 70px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #d1d5db;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .integration .container {
        flex-direction: column;
    }
    
    .hero-content,
    .integration-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .integration-benefits li {
        justify-content: center;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 20px;
    }
    
    .nav ul {
        justify-content: center;
    }
    
    .nav ul li {
        margin: 0 15px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .solutions-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Carousel responsive styles */
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
    
    .slide-caption {
        font-size: 14px;
        padding: 20px 15px 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial {
        min-width: 100%;
    }
}