/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== BOTÕES PRINCIPAIS ===== */
.theme-btn {
    background-color: #b3b3b3;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* ===== SEÇÃO DE SERVIÇOS ===== */
.services-section-jp {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.sec-title-jp.text-center {
    margin-bottom: 70px;
}

.sec-title-jp.text-center .sub-title-jp {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D2691E;
    margin-bottom: 15px;
    position: relative;
}

.sec-title-jp.text-center .sub-title-jp::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #FFD700;
}

.sec-title-jp.text-center h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.sec-title-jp.text-center .text-jp {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blocos de Serviço */
.service-block-jp {
    margin-bottom: 30px;
}

.inner-box-jp {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
}

.inner-box-jp:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.15);
}

.image-box-jp {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.image-jp {
    width: 100%;
    height: 100%;
    margin: 0;
}

.image-jp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.inner-box-jp:hover .image-jp img {
    transform: scale(1.1);
}

.overlay-jp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inner-box-jp:hover .overlay-jp {
    opacity: 1;
}

.icon-box-jp {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

.icon-box-jp i {
    font-size: 30px;
    color: white;
}

.content-box-jp {
    padding: 35px 30px 30px;
    position: relative;
}

.number-jp {
    position: absolute;
    top: -25px;
    left: 30px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.title-jp {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-jp a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.title-jp a:hover {
    color: #D2691E;
}

.content-box-jp .text-jp {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.features-list-jp {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-jp {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.btn-box-jp {
    margin-top: 20px;
}

.theme-btn-jp.btn-style-jp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #8B4513;
    padding: 12px 25px;
    border: 2px solid #8B4513;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.theme-btn-jp.btn-style-jp:hover {
    background: #8B4513;
    color: white;
    transform: translateX(5px);
}

.theme-btn-jp.btn-primary-jp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.theme-btn-jp.btn-primary-jp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #8B4513;
}

/* ===== SEÇÃO CTA ===== */
.cta-section-jp {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.bg-jp.bg-image-jp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-jp.bg-image-jp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(210, 105, 30, 0.8) 100%);
}

.content-wrapper-jp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.text-content-jp {
    color: white;
}

.text-content-jp .title-jp {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 25px;
}

.text-content-jp .text-jp {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.features-cta-jp {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item-jp {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: white;
}

.feature-item-jp i {
    color: #FFD700;
    font-size: 18px;
}

.cta-card-jp {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.card-header-jp h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.card-header-jp p {
    color: #666;
    margin-bottom: 30px;
}

.contact-options-jp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-option-jp {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option-jp:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.phone-option-jp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-option-jp {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
}

.email-option-jp {
    background: linear-gradient(135deg, #EA4335, #D14836);
    color: white;
}

.option-icon-jp {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-icon-jp i {
    font-size: 20px;
}

.option-content-jp {
    text-align: left;
    flex: 1;
}

.option-label-jp {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.option-value-jp {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.cta-btn-jp {
    margin-top: 20px;
}

/* ===== SEÇÃO PORTFÓLIO ===== */
.portfolio-section-jp {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Filtros */
.portfolio-filters-jp {
    margin-bottom: 50px;
}

.filter-buttons-jp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn-jp {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn-jp:hover,
.filter-btn-jp.active {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border-color: #8B4513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Grid de Portfolio */
.portfolio-grid-jp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item-jp {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item-jp:hover {
    transform: translateY(-10px);
}

.portfolio-inner-jp {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image-jp {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.portfolio-image-jp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item-jp:hover .portfolio-image-jp img {
    transform: scale(1.1);
}

.portfolio-overlay-jp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.9), rgba(210, 105, 30, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.portfolio-item-jp:hover .portfolio-overlay-jp {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-content-jp {
    color: white;
    width: 100%;
}

.portfolio-category-jp {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #FFD700;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.portfolio-title-jp {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #fff;
}

.portfolio-desc-jp {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #fff;
}

.portfolio-actions-jp {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-link-jp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.view-project-jp {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.whatsapp-project-jp {
    background: #25D366;
    color: white;
}

.portfolio-link-jp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.view-project-jp:hover {
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-project-jp:hover {
    background: #128C7E;
}

/* Botão Ver Mais */
.portfolio-more-jp {
    margin-top: 30px;
}

.theme-btn-jp.btn-outline-jp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #8B4513;
    padding: 15px 35px;
    border: 2px solid #8B4513;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.theme-btn-jp.btn-outline-jp:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* ===== SEÇÃO SOBRE ===== */
.about-section-jp {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section-jp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><path fill="%238B4513" d="M500,250c138,0,250,112,250,250S638,750,500,750S250,638,250,500S362,250,500,250z"/></svg>') repeat;
}

/* Content Styles */
.content-column-jp {
    padding-right: 40px;
}

.sec-title-jp {
    margin-bottom: 50px;
}

.sub-title-jp {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D2691E;
    margin-bottom: 15px;
    position: relative;
}

.sub-title-jp::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FFD700;
}

.sec-title-jp h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.text-jp {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

/* Features Grid */
.features-grid-jp {
    margin: 40px 0;
}

.feature-box-jp {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #FFD700;
}

.feature-box-jp:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.icon-box-jp {
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-box-jp i {
    font-size: 40px;
    color: #D2691E;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-box-jp {
    flex: 1;
}

.title-jp {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.feature-box-jp .text-jp {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Bottom Actions */
.bottom-actions-jp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.phone-btn-jp {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    min-width: 280px;
}

.phone-btn-jp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
    color: white;
    text-decoration: none;
}

.icon-wrapper-jp {
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper-jp i {
    font-size: 20px;
    color: #FFD700;
}

.phone-content-jp small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.phone-content-jp strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.signature-jp {
    text-align: right;
}

.signature-content-jp {
    display: inline-block;
    text-align: left;
}

.name-jp {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.role-jp {
    font-size: 14px;
    color: #D2691E;
    font-weight: 600;
}

/* Image Gallery Styles */
.image-gallery-jp {
    position: relative;
    height: 600px;
}

.main-image-jp {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    z-index: 2;
}

.main-image-jp .image-jp {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image-jp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image-jp:hover img {
    transform: scale(1.05);
}

.secondary-image-jp {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    z-index: 1;
}

.secondary-image-jp .image-jp {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 8px solid white;
}

.secondary-image-jp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.secondary-image-jp:hover img {
    transform: scale(1.05);
}

/* Experience Badge */
.experience-badge-jp {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 3;
}

.badge-content-jp {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
    min-width: 150px;
}

.icon-wrapper-badge-jp i {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 10px;
}

.number-jp {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.label-jp {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

/* Animations */
.overlay-anim-jp {
    position: relative;
    overflow: hidden;
}

.overlay-anim-jp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.overlay-anim-jp:hover::before {
    left: 100%;
}

/* ===== SEÇÃO DIVISORA ===== */
.section-divider-jp {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    overflow: hidden;
}

.divider-content-jp {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Quick Info */
.contact-quick-jp {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-item-jp {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    min-width: 280px;
}

.contact-item-jp:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
}

.contact-item-jp i {
    font-size: 32px;
    color: #D2691E;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
}

.contact-info-jp {
    display: flex;
    flex-direction: column;
}

.contact-label-jp {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-number-jp {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
}

.contact-name-jp {
    font-size: 18px;
    font-weight: 700;
    color: #D2691E;
    line-height: 1.2;
}

/* Divider Title */
.divider-title-jp {
    text-align: center;
    position: relative;
}

.title-content-jp {
    margin-bottom: 40px;
}

.main-title-jp {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
    margin: 0;
}

/* Divider Arrow */
.divider-arrow-jp {
    margin-top: 30px;
}

.divider-arrow-jp i {
    font-size: 48px;
    color: #D2691E;
    animation: bounce-arrow 2s infinite;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Decorative Shapes */
.divider-shape-jp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-radius: 20px;
    transform: rotate(45deg);
    animation: float-1 6s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.05));
    border-radius: 50%;
    animation: float-2 8s ease-in-out infinite;
}

.shape-3 {
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border-radius: 10px;
    transform: rotate(30deg);
    animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotate(30deg); }
    50% { transform: translateY(-15px) rotate(30deg); }
}

/* ===== BANNER BUTTON STYLES ===== */
.btn-box-jp {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.info-btn-jp {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 16px 30px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 280px;
}

.info-btn-jp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.info-btn-jp:hover::before {
    left: 100%;
}

.info-btn-jp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    border-color: #8B4513;
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.info-btn-jp .icon {
    margin-right: 15px;
    font-size: 24px;
    color: #8B4513;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.info-btn-jp:hover .icon {
    transform: rotate(15deg) scale(1.1);
    background: #8B4513;
    color: #FFD700;
}

.info-btn-jp strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #8B4513;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.info-btn-jp:hover strong {
    color: #654321;
    transform: translateX(3px);
}

/* Efeito de pulso no ícone */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.info-btn-jp .icon {
    animation: pulse-gold 2s infinite;
}

/* ===== PROCESS SECTION STYLES ===== */
.processo {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.passos-linha {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.passo {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    flex: 1;
    margin: 0 1rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #FFD700;
}

.passo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.numero-passo {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.passo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

.passo p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.detalhes-passo {
    list-style: none;
    padding: 0;
}

.detalhes-passo li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    color: #555;
}

.detalhes-passo li:last-child {
    border-bottom: none;
}

.detalhes-passo li:before {
    content: "✓";
    color: #D2691E;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.seta-desktop {
    position: absolute;
    top: 50%;
    right: -30px;
    font-size: 2rem;
    color: #D2691E;
    z-index: 10;
    transform: translateY(-50%);
}

/* ===== ABOUT MISSION STYLES ===== */
.about-mission-jp {
    background: #ffffff;
}

.mission-image-col-jp {
    position: relative;
}

.mission-image-wrapper-jp {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.main-image-jp {
    width: 100%;
    height: 100%;
}

.main-image-jp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-stats-jp {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item-jp {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.stat-number-jp {
    font-size: 32px;
    font-weight: 800;
    color: #8B4513;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label-jp {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-content-col-jp {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-content-wrapper-jp {
    padding: 80px 60px;
    max-width: 600px;
    margin: 0 auto;
}

.mission-header-jp {
    margin-bottom: 40px;
}

.mission-subtitle-jp {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D2691E;
    margin-bottom: 15px;
}

.mission-title-jp {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c2c2c;
    margin: 0;
}

.highlight-jp {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text-jp {
    margin-bottom: 40px;
}

.mission-text-jp p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.mission-values-jp {
    margin-bottom: 40px;
}

.value-item-jp {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.value-icon-jp {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.value-content-jp h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.value-content-jp p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.mission-actions-jp {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-mission-primary-jp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-mission-secondary-jp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #8B4513;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #8B4513;
    transition: all 0.3s ease;
}

.btn-mission-primary-jp:hover,
.btn-mission-secondary-jp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-mission-secondary-jp:hover {
    background: #8B4513;
    color: white;
}

/* ===== FOOTER STYLES ===== */
.footer-upper {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons {
    display: flex;
    align-items: center;
    list-style: none;
}

.footer-social-icons li {
    margin-left: 20px;
}

.footer-social-icons li:first-child {
    margin-left: 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.widgets-section {
    padding: 60px 0 40px;
}

.footer-column {
    padding: 0 15px;
    margin-bottom: 30px;
    flex: 1 0 25%;
}

.footer-widget {
    margin-bottom: 30px;
}

.newsletter-form-one {
    position: relative;
    margin-top: 20px;
}

.newsletter-form-one input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    outline: none;
}

.newsletter-form-one input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form-one button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-one button:hover {
    background: #b8941f;
}

.user-links {
    list-style: none;
}

.user-links li {
    margin-bottom: 12px;
}

.user-links li:last-child {
    margin-bottom: 0;
}

.user-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.user-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.user-links i {
    margin-right: 10px;
    color: #d4af37;
    font-size: 0.9rem;
}

.contact-list-two {
    list-style: none;
    margin-top: 20px;
}

.contact-list-two li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-list-two li:last-child {
    margin-bottom: 0;
}

.contact-list-two .icon {
    margin-right: 15px;
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.contact-list-two a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list-two a:hover {
    color: #d4af37;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    list-style: none;
}

.footer-nav li {
    margin-left: 25px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #d4af37;
}

/* ===== ANIMAÇÕES ===== */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.wow {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* ===== DESIGN RESPONSIVO ===== */
@media (max-width: 1199px) {
    .sec-title-jp.text-center h2,
    .mission-title-jp {
        font-size: 38px;
    }
    
    .text-content-jp .title-jp {
        font-size: 42px;
    }
    
    .content-column-jp {
        padding-right: 20px;
    }
    
    .mission-content-wrapper-jp {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .services-section-jp,
    .portfolio-section-jp,
    .about-section-jp {
        padding: 80px 0;
    }
    
    .cta-section-jp {
        padding: 80px 0;
    }
    
    .content-wrapper-jp {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sec-title-jp.text-center h2,
    .mission-title-jp {
        font-size: 36px;
    }
    
    .text-content-jp .title-jp {
        font-size: 36px;
    }
    
    .features-cta-jp {
        align-items: center;
    }
    
    .content-column-jp {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .image-gallery-jp {
        height: 500px;
    }
    
    .bottom-actions-jp {
        justify-content: center;
        text-align: center;
    }
    
    .signature-jp {
        text-align: center;
        margin-top: 20px;
    }
    
    .process-step-jp {
        flex-direction: column;
        text-align: center;
    }
    
    .step-header-jp {
        justify-content: center;
    }
    
    .step-connector-jp {
        width: 80px;
        height: 2px;
        margin: 30px auto;
    }
    
    .step-connector-jp::after {
        right: -5px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mission-image-col-jp,
    .mission-content-col-jp {
        width: 100%;
    }
    
    .mission-image-wrapper-jp {
        min-height: 400px;
    }
    
    .floating-stats-jp {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        padding: 20px;
    }
    
    .mission-content-wrapper-jp {
        padding: 60px 30px;
    }
    
    .footer-column {
        flex: 1 0 50%;
    }
     
    .footer-nav {
        margin-top: 15px;
        justify-content: center;
    }
    
    .footer-nav li {
        margin: 0 12px;
    }
    
    .contact-quick-jp {
        gap: 30px;
    }
    
    .contact-item-jp {
        min-width: 250px;
        padding: 20px 25px;
    }
    
    .main-title-jp {
        font-size: 36px;
    }
    
    .filter-buttons-jp {
        gap: 10px;
    }
    
    .filter-btn-jp {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .portfolio-grid-jp {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .services-section-jp,
    .portfolio-section-jp,
    .about-section-jp {
        padding: 60px 0;
    }
    
    .cta-section-jp {
        padding: 80px 0;
    }
    
    .sec-title-jp.text-center h2,
    .mission-title-jp {
        font-size: 32px;
    }
    
    .text-content-jp .title-jp {
        font-size: 32px;
    }
    
    .content-box-jp {
        padding: 30px 25px 25px;
    }
    
    .cta-card-jp {
        padding: 30px 25px;
    }
    
    .title-jp {
        font-size: 22px;
    }
    
    .text-jp {
        font-size: 16px;
    }
    
    .feature-box-jp {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .icon-box-jp {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .image-gallery-jp {
        height: 400px;
    }
    
    .main-image-jp {
        width: 100%;
        height: 100%;
    }
    
    .secondary-image-jp {
        width: 60%;
        height: 40%;
    }
    
    .experience-badge-jp {
        left: 5%;
    }
    
    .badge-content-jp {
        padding: 20px;
        min-width: 130px;
    }
    
    .number-jp {
        font-size: 28px;
    }
    
    .step-content-jp {
        padding: 30px 25px;
    }
    
    .process-cta-jp {
        padding: 40px 25px;
    }
    
    .cta-content-jp h3 {
        font-size: 28px;
    }
    
    .mission-content-wrapper-jp {
        padding: 50px 25px;
    }
    
    .value-item-jp {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-actions-jp {
        justify-content: center;
    }
    
    .footer-column {
        flex: 1 0 100%;
    }
    
    .footer-social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social-icons li {
        margin: 5px 10px;
    }
    
    .contact-quick-jp {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-item-jp {
        min-width: 100%;
        max-width: 300px;
    }
    
    .main-title-jp {
        font-size: 32px;
    }
    
    .contact-item-jp i {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }
    
    .contact-number-jp {
        font-size: 18px;
    }
    
    .contact-name-jp {
        font-size: 16px;
    }
    
    .filter-buttons-jp {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
    
    .filter-btn-jp {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .portfolio-grid-jp {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-image-jp {
        height: 350px;
    }
    
    .portfolio-overlay-jp {
        padding: 20px;
    }
    
    .portfolio-actions-jp {
        flex-direction: column;
    }
    
    .portfolio-link-jp {
        min-width: auto;
    }
}

@media (max-width: 575px) {
    .sec-title-jp.text-center h2,
    .mission-title-jp {
        font-size: 28px;
    }
    
    .text-content-jp .title-jp {
        font-size: 28px;
    }
    
    .image-box-jp {
        height: 240px;
    }
    
    .icon-box-jp {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
    }
    
    .icon-box-jp i {
        font-size: 25px;
    }
    
    .contact-option-jp {
        padding: 15px;
    }
    
    .option-icon-jp {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .image-gallery-jp {
        height: 350px;
    }
    
    .phone-btn-jp {
        min-width: 100%;
        justify-content: center;
    }
    
    .bottom-actions-jp {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-badge-jp {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .step-header-jp {
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-stats-jp {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item-jp {
        min-width: 150px;
    }
    
    .section-divider-jp {
        padding: 40px 0;
    }
    
    .main-title-jp {
        font-size: 28px;
    }
    
    .sub-title-jp {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .divider-arrow-jp i {
        font-size: 36px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
    
    .portfolio-image-jp {
        height: 300px;
    }
    
    .portfolio-title-jp {
        font-size: 20px;
    }
    
    .btn-box-jp {
        justify-content: center;
        text-align: center;
    }
    
    .info-btn-jp {
        min-width: 250px;
        padding: 14px 25px;
    }
    
    .info-btn-jp strong {
        font-size: 16px;
    }
    
    .info-btn-jp .icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .info-btn-jp {
        min-width: 220px;
        padding: 12px 20px;
    }
    
    .info-btn-jp strong {
        font-size: 15px;
    }
}