
/* Variáveis de cores */
:root {
    --primary-color: #6a1b9a; /* Roxo principal */
    --dark-blue: #1a1a35; /* Azul escuro do fundo */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --card-bg: #232342; /* Fundo dos cards escuros */
    --gradient-start: #4a1072;
    --gradient-end: #6a1b9a;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #aaaaaa;
}

/* Estilos Gerais */
body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-blue);
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #5a1687;
    border-color: #5a1687;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(106, 27, 154, 0.3);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #5a1687;
    text-decoration: underline;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Header */
.header {
    background-color: #0000005f;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 26, 53, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    margin: 0 10px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link .active {
    color: var(--primary-color) !important;
}

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

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

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

.btn-converse:hover {
    background-color: #5a1687;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(106, 27, 154, 0.3);
}

/* Hero Section */
.hero-section {
    background-color: var(--dark-blue);
    padding: 300px 0 200px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-title {
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.btn-converse-nossos {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-image {
    position: relative;
    height: 500px;
    background-image: url('../img/fundo-hero.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 1s ease forwards 0.6s;
    z-index: 2;
}

/* Quote Section */
.quote-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    position: relative;
}

.quote-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.quote-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

/* Benefit Cards */
.benefit-card {
    background-color: #141423;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 40px;
    height: 40px;
    background-color: #291240;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}

.card-icon i {
    font-size: 20px;
    color: #660099;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.card-text {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1rem;
}

/* Content Section with Image */
.content-section {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
}

.content-text p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-image-wrapper {
    position: relative;
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-highlight {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-highlight p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* First Accompaniment Section */
.accompaniment-section-1 {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

.btn-process {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 20px;
    display: inline-block;
}

.process-card {
    background-color: #000000;
    border: 1px solid #ffffff37;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}

.icon-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
}

/* Second Accompaniment Section with Timeline */
.accompaniment-section-2 {
    background: linear-gradient(to bottom, var(--dark-blue), var(--gradient-start));
    padding: 100px 0;
}

.timeline-container {
    margin: 50px 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 20px;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 25px;
    right: -100%;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.timeline-item.active .timeline-icon {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.5);
}

.timeline-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Products Section */
.products-section {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

.product-card {
    background-color: #D6D6D6;
    border: 1px solid #ffffff37;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 0 15px;
    padding: 0 20px;
    color: #660099;
}

.product-description {
    color: #000000;
    opacity: 0.8;
    font-size: 1rem;
    padding: 0 20px;
    margin-bottom: 20px;
}

.product-card .btn {
    margin: 0 20px 20px;
}

/* Cases Section */
.cases-section {
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    padding: 100px 0;
}

.case-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 0 15px;
    padding: 0 20px;
    color: var(--text-light);
}

.case-description {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1rem;
    padding: 0 20px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    padding: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.3);
}

.contact-form .btn-block {
    width: 100%;
    padding: 12px;
}

.contact-info {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-light);
}

.contact-info p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.contact-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--gradient-end), var(--dark-blue));
    padding: 80px 0 30px;
    color: var(--text-light);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact li {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.copyright {
    margin-top: 30px;
    opacity: 0.6;
    font-size: 0.9rem;
}

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

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

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

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Media Queries para Responsividade */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .content-highlight {
        right: 0;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 400px;
        margin-top: 40px;
    }
    
    .content-image {
        margin-top: 40px;
    }
    
    .content-highlight {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -50px;
        margin-left: 20px;
    }
    
    .timeline {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timeline-item {
        margin: 10px 20px;
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quote-title, .content-title {
        font-size: 1.8rem;
    }
    
    .benefit-card, .process-card, .timeline-card, .product-card, .case-card {
        margin-bottom: 20px;
    }
    
    .contact-info {
        margin-top: 40px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .btn-converse {
        display: none;
    }
    
    .navbar-brand {
        max-width: 70%;
    }
    
    .logo {
        height: 30px;
    }
    
    .content-highlight {
        margin-left: 0;
    }
}

/* CSS da Nova Seção Evester Purpose */
.evester-purpose-section {
    background: #1e2344;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Solutions Section */
.solutions-section {
    background: #323762;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.solutions-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.solutions-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

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

.solutions-intro {
    padding-right: 60px;
    padding-top:30px;
    display: flex;
    align-items: center;
}

.solutions-title {
    color: white;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.solutions-grid {
    padding-left: 0;
}

.solution-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    height: 220px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.solution-icon {
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 30px;
    color: white;
}

.solution-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    flex-shrink: 0;
}

.solution-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.solution-highlight {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1199px) {
    .solutions-title {
        font-size: 50px;
    }
    
    .solutions-intro {
        padding-right: 40px;
        min-height: 400px;
    }
    
    .solution-card {
        height: 200px;
        padding: 25px 20px;
    }
}

@media (max-width: 991px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-intro {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
        min-height: auto;
    }
    
    .solutions-title {
        font-size: 42px;
    }
    
    .solution-card {
        height: auto;
        min-height: 180px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .solutions-title {
        font-size: 32px;
    }
    
    .solution-icon i {
        font-size: 26px;
    }
    
    .solution-title {
        font-size: 16px;
    }
    
    .solution-description {
        font-size: 12px;
    }
    
    .solution-card {
        padding: 20px;
    }
}

.evester-purpose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e2344 0%, #2a2d5c 25%, #1e2344 50%, #2a2d5c 75%, #1e2344 100%);
    opacity: 0.8;
}

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

.evester-purpose-section .highlight-box {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 30%, #8b5cf6 70%, #9333ea 100%);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    transform: translateY(0);
    transition: all 0.3s ease;
    display: inline-block;
    max-width: fit-content;
}

.evester-purpose-section .highlight-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.5);
}

.evester-purpose-section .highlight-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.evester-purpose-section .main-title {
    color: white;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 10px;
}

.evester-purpose-section .description-text {
    color: white;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 400;
    text-align: justify;
}

.evester-purpose-section .content-wrapper {
    align-items: flex-start;
    min-height: auto;
}

.evester-purpose-section .left-content {
    padding-right: 50px;
}

.evester-purpose-section .right-content {
    padding-left: 30px;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .evester-purpose-section {
        padding: 60px 0;
    }
    
    .evester-purpose-section .left-content,
    .evester-purpose-section .right-content {
        padding-left: 0;
        padding-right: 0;
    }
    
    .evester-purpose-section .left-content {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .evester-purpose-section .right-content {
        padding-top: 0;
    }
    
    .evester-purpose-section .main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .evester-purpose-section .highlight-text {
        font-size: 20px;
    }
    
    .evester-purpose-section .highlight-box {
        margin: 0 auto 25px auto;
    }
    
    .evester-purpose-section .description-text {
        font-size: 15px;
        margin-bottom: 18px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .evester-purpose-section .main-title {
        font-size: 26px;
    }
    
    .evester-purpose-section .highlight-text {
        font-size: 18px;
    }
    
    .evester-purpose-section .description-text {
        font-size: 14px;
    }
    
    .evester-purpose-section .highlight-box {
        padding: 18px 22px;
    }
}

/* Technology Section */
.technology-section {
    background: linear-gradient(135deg, #6B3CA5 0%, #8B5CF6 25%, #9333EA 50%, #7C3AED 75%, #6B3CA5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.technology-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.technology-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: grayscale(100%);
}

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

.technology-content {
    padding-right: 30px;
}

.technology-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.technology-description {
    padding-left: 30px;
    display: flex;
    align-items: center;
    min-height: 200px;
}

.technology-text {
    color: white;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.technology-text strong {
    font-weight: 700;
}

@media (max-width: 991px) {
    .technology-section {
        padding: 60px 0;
    }
    
    .technology-content,
    .technology-description {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    
    .technology-content {
        margin-bottom: 30px;
    }
    
    .technology-title {
        font-size: 28px;
    }
    
    .technology-text {
        font-size: 16px;
    }
    
    .technology-description {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .technology-title {
        font-size: 24px;
    }
    
    .technology-text {
        font-size: 15px;
    }
}

/* Evester Conecta Section */
.evester-conecta-section {
    background: #1e2344;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.conecta-image-wrapper {
    position: relative;
}

.conecta-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.conecta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.conecta-content {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.conecta-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.conecta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.conecta-description strong {
    font-weight: 700;
    color: white;
}

@media (max-width: 991px) {
    .evester-conecta-section {
        padding: 60px 0;
    }
    
    .conecta-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .conecta-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .conecta-description {
        font-size: 16px;
    }
    
    .conecta-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .conecta-title {
        font-size: 28px;
    }
    
    .conecta-description {
        font-size: 15px;
    }
    
    .conecta-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

.transformamos-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #9333EA 25%, #7C3AED 50%, #6B3CA5 75%, #8B5CF6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.transformamos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.transformamos-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

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

.transformamos-content {
    max-width: 900px;
    margin: 0 auto;
}

.transformamos-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.transformamos-description {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.95;
}

.parceria-card {
    background: white;
    border-radius: 15px;
    padding: 30px 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.parceria-text {
    color: #1e2344;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.parceria-text strong {
    font-weight: 700;
}

/* Acompanhamos Section */
.acompanhamos-section {
    background: #1e2344;
    padding: 100px 0;
    position: relative;
}

.acompanhamos-content {
    max-width: 800px;
    margin: 0 auto;
}

.acompanhamos-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.acompanhamos-subtitle {
    color: white;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 40px;
    opacity: 0.9;
}

.acompanhamos-highlights {
    margin-bottom: 50px;
}

.acompanhamos-text {
    color: white;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.acompanhamos-text strong {
    font-weight: 700;
}

.destaque-badge {
    background: #9333ea;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.acompanhamos-footer {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Método CECTA Section */
.cecta-section {
    background: #323762;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.cecta-header {
    text-align: center;
    margin-bottom: 80px;
}

.cecta-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cecta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cecta-flow {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cecta-step {
    display: flex;
    align-items: center;
    position: relative;
}

.cecta-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    position: relative;
    z-index: 2;
}

.cecta-step-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.cecta-connector {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #a855f7);
    position: relative;
    z-index: 1;
}

.cecta-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.cecta-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cecta-card:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cecta-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cecta-card-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9333ea, #a855f7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
}

.cecta-card-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.cecta-card-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.cecta-card-content p {
    margin-bottom: 15px;
}

.cecta-card-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .cecta-section {
        padding: 60px 0;
    }

    .cecta-title {
        font-size: 36px;
    }

    .cecta-description {
        font-size: 16px;
    }

    .cecta-flow {
        flex-direction: column;
        gap: 40px;
    }

    .cecta-connector {
        width: 4px;
        height: 40px;
        background: linear-gradient(180deg, #9333ea, #a855f7);
        transform: rotate(90deg);
    }

    .cecta-step {
        flex-direction: column;
    }

    .cecta-cards {
        flex-direction: column;
        align-items: center;
    }

    .cecta-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cecta-title {
        font-size: 28px;
    }

    .cecta-description {
        font-size: 15px;
    }

    .cecta-circle {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .cecta-step-label {
        font-size: 12px;
        top: 70px;
    }

    .cecta-card {
        padding: 25px;
    }

    .cecta-card-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .cecta-card-title {
        font-size: 18px;
    }

    .cecta-card-content {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .transformamos-section {
        padding: 60px 0;
    }
    
    .transformamos-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .transformamos-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .parceria-card {
        padding: 25px 30px;
    }
    
    .parceria-text {
        font-size: 16px;
    }
    
    .acompanhamos-section {
        padding: 60px 0;
    }
    
    .acompanhamos-title {
        font-size: 36px;
    }
    
    .acompanhamos-text {
        font-size: 20px;
    }
    
    .destaque-badge {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .transformamos-title {
        font-size: 28px;
    }
    
    .transformamos-description {
        font-size: 15px;
    }
    
    .parceria-card {
        padding: 20px 25px;
    }
    
    .parceria-text {
        font-size: 15px;
    }
    
    .acompanhamos-title {
        font-size: 28px;
    }
    
    .acompanhamos-subtitle {
        font-size: 18px;
    }
    
    .acompanhamos-text {
        font-size: 18px;
    }
    
    .acompanhamos-footer {
        font-size: 14px;
    }
    
    .destaque-badge {
        font-size: 15px;
    }
}

/* Animações */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

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

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}
