/* Estilos para a seção de experiência */
.experiencia {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.experiencia::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 211, 1, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.experiencia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.experiencia-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
}

.experiencia-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #FFD301;
}

.experiencia-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experiencia-lista li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.experiencia-lista li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experiencia-lista i {
    font-size: 1.8rem;
    color: #376BFF;
    margin-right: 20px;
    background-color: rgba(55, 107, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experiencia-lista span {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.4;
    font-weight: 500;
}

.experiencia-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-top: 4px solid #FFD301;
    border-left: 4px solid #FFD301;
    z-index: 2;
}

.image-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-bottom: 4px solid #376BFF;
    border-right: 4px solid #376BFF;
    z-index: 2;
}

/* Media Queries */
@media (max-width: 992px) {
    .experiencia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experiencia-text h2 {
        font-size: 2.2rem;
    }
    
    .experiencia-lista span {
        font-size: 1.1rem;
    }
    
    .experiencia-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .experiencia {
        padding: 60px 0;
    }
    
    .experiencia-text h2 {
        font-size: 1.8rem;
    }
    
    .experiencia-lista i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .experiencia-lista li {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .experiencia-text h2 {
        font-size: 1.6rem;
    }
    
    .experiencia-lista span {
        font-size: 1rem;
    }
    
    .experiencia-lista i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
}

/* Estilos para a seção de depoimentos */
.depoimentos-section {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.depoimentos-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.depoimentos-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD301;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.depoimento-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #376BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.depoimento-avatar span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.depoimento-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-info {
    flex: 1;
}

.depoimento-info h4 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: #222;
}

.depoimento-stars {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.depoimento-stars i {
    color: #FFD301;
    margin-right: 2px;
}

.depoimento-date {
    margin-left: 10px;
    color: #888;
    font-size: 0.8rem;
}

.depoimento-badge {
    display: inline-block;
    background-color: #FF5722;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    letter-spacing: 0.5px;
}

.depoimento-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Media Queries para Depoimentos */
@media (max-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .depoimentos-section {
        margin-top: 60px;
    }
    
    .depoimentos-title {
        font-size: 1.8rem;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimento-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .depoimentos-title {
        font-size: 1.6rem;
    }
    
    .depoimento-content p {
        font-size: 0.9rem;
    }
} 