/* CSS específico para página SOBRE */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0070d9 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.section-title {
  margin-top: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Hero Decorations - elementos decorativos */
.hero-decoration {
    position: absolute;
    border-radius: 24px;
}

/* Retângulo opaco inferior esquerdo */
.hero-decoration-1 {
    width: 220px;
    height: 140px;
    background: #D9D9D94D;
    bottom: -8px;
    left: 20px;
    rotate: 90deg;
}

/* Asset gradient sobre o retângulo esquerdo */
.hero-decoration-2 {
    width: 250px;
    height: 160px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 160"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:1" /><stop offset="25%" style="stop-color:%23ff1493;stop-opacity:1" /><stop offset="50%" style="stop-color:%238a2be2;stop-opacity:1" /><stop offset="75%" style="stop-color:%2300bfff;stop-opacity:1" /><stop offset="100%" style="stop-color:%2300ff7f;stop-opacity:1" /></linearGradient></defs><rect width="250" height="160" fill="none" stroke="url(%23grad1)" stroke-width="6" rx="24" ry="24"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 83px;
    left: -101px;
}

/* Retângulo opaco superior direito */
.hero-decoration-3 {
    width: 200px;
    height: 120px;
    background: #D9D9D94D;
    top: 150px;
    right: -65px;
}

/* Asset gradient sobre o retângulo direito */
.hero-decoration-4 {
    width: 233px;
    height: 140px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230 140"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300ff7f;stop-opacity:1" /><stop offset="25%" style="stop-color:%2300bfff;stop-opacity:1" /><stop offset="50%" style="stop-color:%238a2be2;stop-opacity:1" /><stop offset="75%" style="stop-color:%23ff1493;stop-opacity:1" /><stop offset="100%" style="stop-color:%23ff6b35;stop-opacity:1" /></linearGradient></defs><rect width="230" height="140" fill="none" stroke="url(%23grad2)" stroke-width="6" rx="24" ry="24"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    top: 235px;
    right: -135px;
}

/* Timeline Section */
.timeline-section {
    padding: 20px 0;
    background: #fff;
}

.timeline-horizontal {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Linha horizontal principal */
.timeline-line-horizontal {
    position: absolute;
    top: 44px;
    left: 5%;
    right: 5%;
    height: 5px;
    background: #626262;
    z-index: 1;
}

.timeline-items-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 5%;
    gap: 40px;
}

.timeline-item-horizontal {
    flex: 1;
    max-width: 300px;
    position: relative;
    text-align: left;
}

.timeline-dot-horizontal {
    width: 12px;
    height: 12px;
    background: #0086FF;
    border-radius: 50%;
    position: absolute;
    /* top: 16px; */
    left: 0;
    z-index: 3;
}

.timeline-content-horizontal {
    padding-top: 45px;
}

.timeline-content-horizontal h3 {
    color: #0086FF !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.timeline-content-horizontal h4 {
    color: #626262 !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-bottom: 16px !important;
}

.timeline-content-horizontal ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.timeline-content-horizontal li {
    color: #626262 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    position: relative;
    padding-left: 12px;
}

.timeline-content-horizontal li:before {
    content: "•";
    color: #626262;
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-gradient-bar {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        #ffd700 0%,
        #ff6b35 25%,
        #ff1493 50%,
        #0086FF 75%,
        #32cd32 100%
    );
    border-radius: 4px;
    margin-left: 15%;
    margin-right: 15%;
}

/* Google Ads Gradient Bar */
.google-ads-gradient-bar {
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        #ffd700 0%,
        #ff6b35 25%,
        #ff1493 50%,
        #0086FF 75%,
        #32cd32 100%
    );
    border-radius: 4px;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 40px;
}


.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 10px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #0052cc);
    z-index: 1;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.timeline-item {
    flex: 1;
    max-width: 280px;
    position: relative;
    text-align: center;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-top: 1rem;
    position: relative;
    z-index: 5;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    color: #666;
    line-height: 1.4;
    font-size: 0.9rem;
}

.timeline-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* What is Section */
.what-is-section {
    padding: 40px 0;
}

.stat-card {
    background: transparent;
    padding: 2rem 2rem 0rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Ideal Solution Section */
.ideal-solution-section {
    background: #fff;
    padding: 20px 0;
    position: relative;
}

.solution-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* padding: 0 40px; */
}

.carousel-btn-new {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #77BEFF;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn-new {
    left: 10px;
}

.next-btn-new {
    right: 10px;
}

.carousel-btn-new:hover {
    background: #5AABFF;
    transform: translateY(-50%) scale(1.1);
}

.solution-card-blue {
    background: linear-gradient(135deg, #0086FF 0%, #0070d9 100%);
    border-radius: 25px;
    padding: 50px 60px;
    flex: 1;
    /* max-width: 1200px; */
    position: relative;
    position: relative;
    z-index: 1;
}

.solution-items-wrapper {
    width: 900px;
    overflow: hidden;
    margin: 0 auto;
}

.solution-items-new {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.solution-item-new {
    text-align: center;
    flex: 0 0 160px;
    width: 160px;
    display: flex;
    flex-direction: column;
    height: 200px; /* Define altura fixa */
}

.solution-tag-new {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
    min-height: 2rem; /* Altura mínima para consistência */
    line-height: 1.4;
}

.solution-icon-new {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    flex-shrink: 0; /* Impede que o ícone encolha */
}

.solution-icon-img-new {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.solution-link-new {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding-top: 1rem;
}

.solution-link-new:hover {
    opacity: 0.8;
}

.solution-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.carousel-nav {
    flex-shrink: 0;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.solution-items {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    flex: 1;
    justify-content: center;
}

.solution-item {
    background: transparent;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
}

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

.solution-item.active {
    border: none;
}

.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.solution-item:hover,
.solution-item.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.solution-item .solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solution-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Google Ads Section */
.google-ads-section {
    background: #fff;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.google-ads-card {
    background: #F5F5F5;
    border-radius: 20px;
    padding: 60px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.google-ads-section .gradient-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.google-ads-section .gradient-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.google-ads-section .gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.google-ads-section .gradient-bg-left,
.google-ads-section .gradient-bg-right {
    width: 120px;
    height: auto;
}

.google-ads-section .gradient-bg-bottom {
    width: 900px;
    height: auto;
}

.google-ads-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.google-ads-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.google-ads-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Decorations */
.section-decoration {
    position: absolute;
    border-radius: 20px;
    opacity: 0.1;
}

.section-decoration-1 {
    width: 150px;
    height: 100px;
    background: linear-gradient(45deg, #32cd32, #00ff7f);
    top: 10%;
    left: -30px;
    transform: rotate(-20deg);
}

.section-decoration-2 {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    bottom: 15%;
    right: -20px;
    transform: rotate(30deg);
}

/* Contact Form Enhancements */
.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    background-color: #F5F5F5;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: #F5F5F5;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 134, 255, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #666;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    /* Timeline Mobile - Layout Vertical */
    .timeline-horizontal {
        padding: 20px 0;
    }
    
    .timeline-line-horizontal {
        display: none;
    }
    
    .timeline-items-horizontal {
        display: block;
        padding: 0;
        position: relative;
    }
    
    .timeline-item-horizontal {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
        max-width: 100%;
        position: relative;
        padding-left: 30px;
    }
    
    .timeline-item-horizontal:before {
        content: '';
        position: absolute;
        left: 6px;
        top: 12px;
        bottom: -2rem;
        width: 2px;
        background: #626262;
        z-index: 1;
    }
    
    .timeline-item-horizontal:last-child:before {
        display: none;
    }
    
    .timeline-dot-horizontal {
        position: absolute;
        left: 0;
        top: 6px;
        width: 14px;
        height: 14px;
        background: #0086FF;
        border: 3px solid #fff;
        box-shadow: 0 0 0 2px #626262;
        z-index: 2;
    }
    
    .timeline-content-horizontal {
        padding-top: 0;
        flex: 1;
        margin-left: 0;
    }
    
    .timeline-content-horizontal h3 {
        font-size: 2rem !important;
        margin-bottom: 6px !important;
    }
    
    .timeline-content-horizontal h4 {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .timeline-content-horizontal li {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }
    
    .timeline-gradient-bar {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 20px;
    }
    
    /* Timeline antigo - manter para compatibilidade */
    .timeline-items {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-item {
        max-width: 100%;
    }
    
    .timeline-content {
        margin-top: 0;
    }
    
    /* Solução Ideal - Mobile */
    .solution-card-blue {
        padding: 30px 20px;
    }
    
    .solution-items-wrapper {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .solution-item-new {
        flex: 0 0 260px;
        width: 260px;
        height: 220px;
    }
    
    .solution-tag-new {
        font-size: 0.8rem;
        padding: 4px 8px;
        margin-bottom: 0.8rem;
    }
    
    .solution-icon-new {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
    
    .solution-icon-img-new {
        width: 70px;
        height: 70px;
    }
    
    .solution-link-new {
        font-size: 0.85rem;
        padding-top: 0.8rem;
    }
    
    .carousel-btn-new {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .prev-btn-new {
        left: 5px;
    }
    
    .next-btn-new {
        right: 5px;
    }
    
    /* Carrossel antigo - manter para compatibilidade */
    .solution-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .solution-carousel {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-nav {
        order: 2;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    /* Timeline Mobile - Ajustes para telas menores */
    .timeline-item-horizontal {
        padding-left: 25px;
        margin-bottom: 1.5rem;
    }
    
    .timeline-content-horizontal h3 {
        font-size: 1.8rem !important;
    }
    
    .timeline-content-horizontal h4 {
        font-size: 0.95rem !important;
    }
    
    .timeline-content-horizontal li {
        font-size: 0.8rem !important;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Solução Ideal - Mobile pequeno */
    .solution-items-wrapper {
        max-width: 240px;
    }
    
    .solution-item-new {
        flex: 0 0 220px;
        width: 220px;
        height: 200px;
    }
    
    .solution-tag-new {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .solution-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon-img-new {
        width: 60px;
        height: 60px;
    }
    
    .carousel-btn-new {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    /* Carrossel antigo */
    .solution-item {
        min-width: 150px;
        padding: 1.5rem 1rem;
    }
}

