/* ========== PROMO SECTION ========== */
.promo-section { display: flex; flex-wrap: wrap; }
.promo-text, .promo-image { width: 50%; min-height: 500px; }
.promo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}
.promo-image {
    background-size: cover;
    background-position: center;
    position: relative;
}
.promo-image a {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ff6b35;
    color: #fff;
    padding: 12px 24px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 991px) {
    .promo-text, .promo-image { width: 100%; }
    .promo-text { padding: 40px 20px; }
    .promo-image { min-height: 400px; }
}

/* ========== SERVICES ========== */
.service-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}
.service-card img {
    width: 100%;
    height: 220px;          /* antes 280px */
    object-fit: cover;
    object-position: center top;
    margin-bottom: 20px;
    border-radius: 12px;
}
.service-card h4 { margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #777; margin-bottom: 15px; }
.service-card a { color: #ff6b35; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.service-card a:hover { color: #1b1b24; }

.service-icon-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}
.service-icon-card .icon {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 20px;
}
.service-icon-card h6 { margin-bottom: 10px; }
.service-icon-card p { font-size: 14px; color: #777; }

/* ========== ABOUT / PROLINE ========== */
.about-split { display: flex; flex-wrap: wrap; }
.about-text, .about-video { width: 50%; min-height: 450px; }
.about-text {
    background: #fcfbfa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}
.about-text-inner { max-width: 400px; }
.about-text h2 em { font-style: italic; color: #ff6b35; }
.about-video {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,107,53,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn::after {
    content: '';
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}
@media (max-width: 991px) {
    .about-text, .about-video { width: 100%; }
    .about-text { padding: 40px 20px; }
}

/* ========== ICONED SERVICES ========== */
.iconed-services { display: flex; flex-wrap: wrap; }
.iconed-service {
    width: 50%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
}
.iconed-service::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.iconed-service-content { position: relative; z-index: 2; }
.iconed-service-content .icon { font-size: 36px; color: #ff6b35; margin-bottom: 15px; }
.iconed-service-content h6 { color: #fff; margin-bottom: 8px; }
.iconed-service-content p { font-size: 14px; opacity: 0.9; margin-bottom: 15px; }
.iconed-service-content a { color: #ff6b35; font-size: 12px; text-transform: uppercase; }
@media (max-width: 768px) {
    .iconed-service { width: 100%; }
}

/* ========== DIFERENCIAIS ========== */
.diff-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.diff-header-image {
    width: 50%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f5f5f5;
}
.diff-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.diff-header-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #fff;
}
.diff-header-text h2 { margin-bottom: 20px; }
.diff-header-text p { color: #777; line-height: 1.8; }
.diff-cards {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.diff-card {
    flex: 1;
    min-width: 25%;
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
}
.diff-card:nth-child(1) { background: #ffffff; color: #1b1b24; }
.diff-card:nth-child(2) { background: #f5f5f5; color: #1b1b24; }
.diff-card:nth-child(3) { background: #e0e0e0; color: #1b1b24; }
.diff-card:nth-child(4) { background: #ff6b35; color: #fff; }
.diff-card-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    opacity: 0.3;
}
.diff-card:nth-child(4) .diff-card-number { opacity: 0.5; }
.diff-card h6 { font-size: 16px; font-weight: 500; margin-bottom: 15px; }
.diff-card p { font-size: 14px; opacity: 0.8; line-height: 1.6; }
@media (max-width: 992px) {
    .diff-card { min-width: 50%; }
}
@media (max-width: 768px) {
    .diff-header-image, .diff-header-text { width: 100%; }
    .diff-header-image { min-height: 300px; }
    .diff-header-text { padding: 40px 20px; }
    .diff-card { min-width: 100%; }
}

/* ========== WHY SECTION ========== */
.why-section-split { display: flex; flex-wrap: wrap; }
.why-text {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #f5f5f5;
}
.why-text-inner { max-width: 500px; }
.why-text-inner h2 { margin-bottom: 25px; }
.why-text-inner p { color: #777; line-height: 1.8; }
.why-card {
    width: 50%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.why-card-content { position: relative; z-index: 2; color: #fff; }
.why-card-content h6 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.why-card-content p { font-size: 14px; opacity: 0.9; margin-bottom: 15px; line-height: 1.7; }
.why-card-content a { color: #ff6b35; font-size: 12px; text-transform: uppercase; }
@media (max-width: 768px) {
    .why-text, .why-card { width: 100%; }
    .why-text { padding: 50px 20px; }
}

/* ========== SERVICES GRID ========== */
.services-grid { display: flex; flex-wrap: wrap; }
.service-item {
    width: 33.333%;
    position: relative;
    overflow: hidden;
}
.service-item img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.5s; border-radius: 12px; }
.service-item:hover img { transform: scale(1.1); }
.service-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}
.service-item:hover .service-overlay { transform: translateY(0); opacity: 1; }
.service-overlay h5 { font-size: 18px; margin-bottom: 10px; color: #fff; }
.service-overlay p { font-size: 13px; opacity: 0.9; line-height: 1.6; }
@media (max-width: 992px) {
    .service-item { width: 50%; }
}
@media (max-width: 768px) {
    .service-item { width: 100%; }
    .service-item img { height: 300px; }
}

/* ========== PORTFOLIO GRID ========== */
.portfolio-grid { display: flex; flex-wrap: wrap; }
.portfolio-item {
    width: 25%;
    position: relative;
    overflow: hidden;
}
.portfolio-item img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: #ff6b35; font-size: 12px; text-transform: uppercase; margin-bottom: 5px; }
.portfolio-overlay h5 { color: #fff; }
@media (max-width: 991px) {
    .portfolio-item { width: 50%; }
}
@media (max-width: 576px) {
    .portfolio-item { width: 100%; }
}

/* ========== TEAM ========== */
.team-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.team-card img { width: 100%; height: 400px; object-fit: cover; object-position: center top; }
.team-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(27,27,36,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay h4 { color: #fff; margin-bottom: 5px; }
.team-overlay .subtitle { color: #ff6b35; font-size: 13px; margin-bottom: 15px; }
.team-overlay p { font-size: 14px; opacity: 0.8; margin-bottom: 20px; }
.team-socials a {
    display: inline-block;
    width: 36px; height: 36px;
    line-height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    margin: 0 5px;
    font-size: 14px;
    transition: all 0.3s;
}
.team-socials a:hover { background: #ff6b35; border-color: #ff6b35; }

/* ========== TESTIMONIALS ========== */
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; }
.testimonial-item { text-align: center; padding: 20px; display: none; }
.testimonial-item.active { display: block; }
.testimonial-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #ff6b35;
}
.testimonial-quote { font-size: 1.25rem; font-style: italic; color: #555; margin-bottom: 20px; }
.testimonial-author h4 { margin-bottom: 5px; }
.testimonial-author span { color: #ff6b35; font-size: 13px; }

/* ========== CTA SECTION ========== */
.cta-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 0;
}
.cta-text { flex: 2; }
.cta-text h2 { font-size: 1.75rem; margin-bottom: 10px; }
.cta-text p { margin: 0; color: #777; }
.cta-btn { flex: 1; text-align: right; }
@media (max-width: 768px) {
    .cta-text, .cta-btn { flex: 100%; text-align: center; }
    .cta-btn { margin-top: 20px; }
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    background: #22222e;
    padding: 40px 0;
}
.newsletter-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.newsletter-title { color: #fff; margin-bottom: 0; }
.newsletter-desc { color: rgba(255,255,255,0.7); font-size: 14px; max-width: 300px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    min-width: 250px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
@media (max-width: 991px) {
    .newsletter-section .container { flex-direction: column; text-align: center; gap: 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { min-width: 100%; }
}

/* ========== FOOTER ========== */
.footer {
    background: #1b1b24;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 1rem; }
.footer p { font-size: 14px; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: #ff6b35; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-socials a {
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px; height: 45px;
    background: #ff6b35;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; }

/* ========== SEARCH MODAL ========== */
.search-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}
.search-modal.active {
    display: flex !important;
    opacity: 1 !important;
}
.search-modal-content {
    background: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s;
}
.search-close:hover { color: #ff6b35; }

.search-toggle {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.search-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'League Gothic', sans-serif;
    letter-spacing: 2px;
}
.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}
.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.search-input:focus {
    outline: none;
    border-color: #ff6b35;
}
.search-button {
    padding: 15px 30px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}
.search-button:hover {
    background: #e55a25;
}
.search-button i {
    margin-right: 8px;
}

.search-suggestions h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #666;
}
.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.search-suggestions a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.search-suggestions a:hover {
    color: #ff6b35;
}

@media (max-width: 768px) {
    .search-modal-content {
        padding: 40px 30px;
        width: 95%;
    }
    .search-form {
        flex-direction: column;
    }
    .search-suggestions ul {
        grid-template-columns: 1fr;
    }
}
.scroll-top:hover { background: #1b1b24; }
