
/* Variáveis de cores */
:root {
    --primary-color: #000000; /* Preto principal */
    --secondary-color: #495157; /* Cinza secundario */
    --white: #ffffff;
    --dark-gray: #364153;
    --light-gray: #f5f5f5;
    --light-blue: #9FB0BD;
    --text-default: #ffffff;
    --text-light: #ffffffa1;
}

/* 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: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    margin-right: 20px;
}

.logo {
    height: 60px;
    width: auto;
}

.navbar-collapse {
    justify-content: flex-end;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: var(--text-default);
    margin: 0 50px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.navbar-nav .nav-link:hover {
    color: var(--light-blue);
}

.navbar-nav .nav-link.active {
    color: var(--light-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--light-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 60px 0 100px;
}

.footer img {
    height: auto;
    width: auto;
    margin-right: 10px;
}

.footer-logo {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.footer p, .footer-contact p, .footer-contact li {
    opacity: 0.8;
    font-size: 0.7rem;
    margin-bottom: 30px;
    text-decoration: none;
    color: var(--text-light);
}

.footer-contact, .social-icons {
	display: block;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact li {
    color: var(--text-light);
    font-size: 0.7rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 12px;
    color: var(--primary-color);
    padding: 8px;
    border-radius: 50%;
    background-color: var(--light-blue);
    font-size: 0.85rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact .fa-whatsapp {
    margin-left: 20px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons p {
    color: var(--text-light);
    font-size: 0.7rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    display: inline-flex;
}

.copyright {
    margin-top: 30px!important;
    color: var(--text-default)!important;
    font-size: 0.9rem;
}

/* Home Section */
.home-section {
    background-color: var(--dark-blue);
    padding: 300px 0 200px;
    position: relative;
    overflow: hidden;
}

.home-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--secondary-color) 10%, transparent 100%);
    z-index: 2;
}

.home-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); 
}

.home-content {
    position: relative;
    z-index: 2;
    z-index: 3;
}

.home-title {
    color: var(--text-default);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
    text-align: center;
}

.home-subtitle {
    color: var(--text-default);
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
    text-align: center;
}

.btn-converse-nossos {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

.home-image {
    position: relative;
    height: 500px;
    background-image: url('../img/fundo-home.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;
}

/* Home 2 Section */
.home-2-section {
    background-color: var(--dark-blue);
    padding: 300px 0 200px;
    position: relative;
    overflow: hidden;
}

.home-2-content {
    position: relative;
    z-index: 2;
    z-index: 3;
}

.home-2-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-2-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: 2;
}

.home-2-title {
    color: var(--text-default);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
    text-align: center;
}

.home-2-subtitle {
    color: var(--text-default);
    font-size: 0.5rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
    text-align: center;
    padding: 0 40px;
}

/* Estilos Gerais */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-blue);
    overflow-x: hidden;
}

.flex-container .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center; /* alinha verticalmente */
	justify-content: space-between; /* separa horizontalmente */
	width: 100%;
}

.flex-container .col-md-6 {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 1025px) {
    .footer-contact li, .social-icons p, .footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .flex-container .row {
        width: auto;
    }

    .footer {
        padding: 20px 0 40px;
    }

    .footer-contact li, .social-icons p {
        justify-content: center;
    }

    .copyright {
        margin-top: -10px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .home-title {
        font-size: 2.2rem;
    }
    
    .home-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {
}




.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;
}

/* 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(128, 90, 90, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--light-blue);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--light-blue);
    color: var(--primary-color)!important;
    transform: translateY(-3px);
}

/* 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) {
    .home-title {
        font-size: 3rem;
    }
    
    .content-highlight {
        right: 0;
    }
}

@media (max-width: 992px) {
    .home-section {
        padding: 120px 0 80px;
    }
    
    .home-title {
        font-size: 2.5rem;
    }
    
    .home-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) {
    .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) {
    .home-section {
        padding: 100px 0 60px;
    }
    
    .home-title {
        font-size: 1.8rem;
    }
    
    .home-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);
}
/* ========================================
   ESTILOS ADICIONAIS PARA NOVAS SEÇÕES
   ======================================== */

/* Home 2 Section - Cards Informativos */
.home-2-section {
    background-color: var(--secondary-color);
    padding: 0 0;
    position: relative;
}

.info-card {
    background-color: transparent;
    padding: 40px 30px;
    height: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.info-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.info-card-title {
    color: var(--text-default);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.info-card-text {
    color: var(--text-default);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
    opacity: 0.9;
}

.info-card-text strong {
    font-weight: 600;
}

/* Seção Conectamos */
.conectamos-section {
    background-color: #000000;
    padding: 100px 0;
    position: relative;
}

.conectamos-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.conectamos-image-wrapper.animate {
    opacity: 1;
    transform: translateX(0);
}

.conectamos-image {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    height: auto;
}

.conectamos-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.conectamos-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.conectamos-title {
    color: var(--text-default);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.conectamos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conectamos-list li {
    color: var(--text-default);
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.conectamos-list i {
    color: var(--light-blue);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Seção Grid de Soluções */
.solutions-section {
    background-color: #000000;
    padding:0 0;
    position: relative;
}

.solutions-logo {
    max-width: 450px;
    height: auto;
    margin-bottom: 30px;
}

.solution-card-white {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.solution-card-white.animate {
    opacity: 1;
    transform: translateY(0);
}

.solution-card-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(159, 176, 189, 0.3);
}

.solution-card-white h4 {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Seção Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #364153 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    color: var(--text-default);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    color: var(--text-default);
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--light-blue);
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 176, 189, 0.4);
}

/* Seção Formulário de Contato */
.contact-form-section {
    background: linear-gradient(135deg, #364153 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
}

.contact-text {
    padding-right: 30px;
}

.contact-form-title {
    color: var(--text-default);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-form-description {
    color: var(--text-default);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--text-default);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(159, 176, 189, 0.2);
    outline: none;
}

.btn-submit {
    background-color: var(--light-blue);
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(159, 176, 189, 0.4);
}

/* Responsividade */
@media (max-width: 991px) {
    .conectamos-title {
        font-size: 2rem;
    }
    
    .conectamos-list li {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .contact-form-title {
        font-size: 2.2rem;
    }
    
    .solutions-logo {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .conectamos-section {
        padding: 60px 0;
    }
    
    .conectamos-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .conectamos-list li {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .solutions-section {
        padding: 60px 0;
    }
    
    .solution-card-white {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .solution-card-white h4 {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-form-title {
        font-size: 1.8rem;
    }
    
    .contact-form-description {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .info-card-title {
        font-size: 1.1rem;
    }
    
    .info-card-text {
        font-size: 0.85rem;
    }
    
    .conectamos-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
}

