/*********************************************************/
/*CSS MODE - MRPSTUDIO 2026
/*********************************************************/
/*CORES*/
:root {
  --primary: #003B94;
  --secondary: #00AFEF;
  --background: oklch(0.98 0 0);
  --foreground: oklch(0.2 0.01 260);
  --text-light: oklch(0.5 0.02 260);
  --border: oklch(0.92 0.004 240);
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
  --shadow-xl: rgba(0, 0, 0, 0.2);
  --radius: 0.75rem;
  --transition: all 0.3s ease;
}
/*********************************************************/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 2.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }
}

h2 {
    font-size: 1.875rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
    }
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}
/*********************************************************/
.botao {padding: 10px 30px; color: #fff; background-color: var(--cor_1); border-radius: 10px; font-weight: 500; text-transform: uppercase; cursor: pointer;}
.botao:hover {background-color: var(--cor_2);}
/*********************************************************/
/*HEADER DO SITE*/
.header { position: fixed; top: 0; width: 100%; z-index: 50; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(100, 116, 139, 0.2); box-shadow: 0 1px 3px var(--shadow); transition: var(--transition); }
.header-container { max-width: 1280px; margin: 0 auto; padding: 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; }
.logo { width: 100px; height: 70px; }
/*********************************************************/
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 5rem; background-size: cover; background-position: center; background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px); }
.hero-content { position: relative;  z-index: 10; text-align: center; color: white; display: flex; flex-direction: column; gap: 1.5rem; animation: fadeInUp 0.6s ease-out; }
.hero-title { font-size: 4em !important; line-height: 1.1; }
.hero-subtitle { font-size: 1em; color: rgba(255, 255, 255, 0.9); max-width: 60%; margin: 0 auto; }
.hero-buttons { display: inline-block; flex-direction: column; gap: 1rem; justify-content: center; padding-top: 2rem; }
/*********************************************************/
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; }
.scroll-indicator span { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }
.chevron { color: rgba(255, 255, 255, 0.7); animation: bounce 2s infinite; margin-top: 0.5rem; }
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
/*********************************************************/
.stats { background: linear-gradient(to right, rgba(0, 175, 239, 0.1), rgba(0, 217, 255, 0.1)); backdrop-filter: blur(12px); padding: 40px 0; margin: 0; }
.stats-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-value { font-size: 2.875rem; font-weight: 800; font-family: 'Poppins', sans-serif; background: linear-gradient(to right, var(--secondary), var(--secondary), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.875rem; color: var(--text-light); }
/*********************************************************/
.about { padding: 6rem 0; background: var(--background); }
.about-header { text-align: center; margin-bottom: 4rem; }
.about-header h2 { margin-bottom: 1rem; color: var(--primary); }
.about-header p { font-size: 1em; max-width: 60%; margin: 0 auto; }

.differentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.glass-card { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 1.5rem; padding: 1.5rem; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); transition: var(--transition); text-align: center; }
.glass-card:hover { background: rgba(255, 255, 255, 0.3); border-color: rgba(255, 255, 255, 0.4); box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--secondary); }
.glass-card h3 { margin-bottom: 0.5rem; color: var(--primary); font-size: 1.4em; }
.glass-card p { font-size: 0.9em; line-height: 22px; }
.about-image-container { position: relative; }
.about-image { width: 100%; height: auto; border-radius: 1rem; box-shadow: 0 20px 40px var(--shadow-xl); }
.about-card-overlay { position: absolute; bottom: -1.5rem; right: -1.5rem; max-width: 20rem; display: none; }
.about-card-overlay p { color: white; font-weight: 600; color: var(--primary); }
/*********************************************************/
.services { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.5rem; color: var(--primary); }
.section-header p { font-size: 1em; max-width: 60%; margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 12px var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-2rem); box-shadow: 0 12px 24px var(--shadow-lg); }
.service-image { width: 100%; height: 12rem; background-size: cover; background-position: center; transition: var(--transition); }
.service-card:hover .service-image { transform: scale(1.1); }
.service-card h3 { padding: 1.5rem 1.5rem 0.5rem; font-size: 1.2em; color: var(--primary); }
.service-card h3:hover {color: var(--secondary);}
.service-card p { padding: 0 1.5rem 1rem; font-size: 0.9em; }
/*********************************************************/
.cft { background: linear-gradient(to right, #1e293b, #0f172a); color: white; padding: 6rem 0; }
.cft-content { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.cft-logo { width: 300px; height: 200px; margin: auto; }
.cft-text h3 { color: white; margin-bottom: 1.5rem; font-size: 1.8em; }
.cft-text p { color: rgba(255, 255, 255, 0.9); line-height: 1.8; font-size: 1em; }
.cft-badge { text-align: center; }
/*********************************************************/
.testimonials { padding: 6rem 0; }
.testimonials .container { text-align: left; }
.testimonials h2 { margin-bottom: 0.5rem; color: var(--primary); }
.testimonials .subtitle { font-size: 1em; max-width: 100%; margin: 0; }
.testimonials-layout { display: flex; justify-content: space-between; align-items: flex-start; gap: 5%; }
.testimonials-left { flex: 0 0 35%; }
.testimonials-right { flex: 0 0 60%; min-width: 0; }
.testimonials-carousel { margin: 0; padding: 0; }
.testimonials-actions { margin-top: 2.5rem; }
.testimonial-link { display: inline-flex; align-items: center; justify-content: center; padding: 0.9rem 2rem; border-radius: 9999px; background: linear-gradient(to right, var(--primary), var(--secondary)); color: white; font-weight: 600; text-decoration: none; transition: var(--transition); box-shadow: 0 10px 24px rgba(0, 59, 148, 0.18); }
.testimonial-link:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 59, 148, 0.24); }
.testimonial-card { background: white; border-radius: 1.5rem; border: 1px solid var(--shadow); padding: 25px; transition: all 0.3s ease; width: auto; margin: 0 auto; min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; width: 20% !important; }
.testimonial-card:hover { transform: translateY(-0.5rem); }
.stars { color: var(--secondary); font-size: 1.125rem; margin: 20px 0; }
.testimonial-text { color: var(--text-light); font-style: italic; font-size: 0.9em; margin-bottom: 1.25rem; line-height: 1.8; }
.testimonial-author { font-weight: bold; color: var(--primary); margin-bottom: 20px; }
/*********************************************************/
.slick-list { margin: 0 ; padding: 20px 0 !important; }
.slick-track { display: flex !important; }
.slick-slide { height: inherit; padding: 0 20px; }
.slick-slide > div { height: 100%; }
.testimonials .slick-dots { bottom: -2rem; margin-top: 2rem; display: flex !important; justify-content: center; align-items: center; gap: 12px; }
.testimonials .slick-dots li { width: auto; height: auto; margin: 0; }
.testimonials .slick-dots li button { width: 12px; height: 12px; padding: 0; }
.testimonials .slick-dots li button:before { content: ''; width: 12px; height: 12px; border-radius: 9999px; background: rgba(0, 59, 148, 0.28); opacity: 1; transition: var(--transition); }
.testimonials .slick-dots li button:hover:before { background: rgba(0, 59, 148, 0.45); }
.testimonials .slick-dots li.slick-active button { width: 34px; }
.testimonials .slick-dots li.slick-active button:before { width: 34px; background: linear-gradient(to right, var(--primary), var(--secondary)); }
.testimonials .slick-prev, .testimonials .slick-next { display: none !important; }
/*********************************************************/
.dormakaba { padding: 80px 0; background: linear-gradient(to right, rgba(0, 175, 239, 0.05), rgba(0, 217, 255, 0.05)); }
.dormakaba-content { display: flex; flex-direction: column; justify-content: space-between; align-items: center; gap: 3rem; }
.dormakaba-text { flex: 1; }
.dormakaba-text h3 { color: var(--primary); margin-bottom: 1rem; font-size: 2rem; }
.dormakaba-text p { font-size: 1em; line-height: 1.8; }
.dormakaba-logo { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.dormakaba-logo img { max-height: 10rem; width: auto; }
/*********************************************************/
.cta { background: linear-gradient(to right, var(--primary), var(--secondary)); color: white; padding: 4rem 0; position: relative; overflow: hidden; }
.cta-content { position: relative; z-index: 10; text-align: center; margin: 0 auto; }
.cta h2 { margin-bottom: 1.5rem; font-size: 2em; }
.cta p { font-size: 1em; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
/*********************************************************/
.footer { background: linear-gradient(to bottom, #1e293b, #0f172a); color: white; padding: 4rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h4 { color: var(--secondary); margin-bottom: 1rem; font-family: 'Poppins', sans-serif; font-weight: 700; }
.footer-section p { color: rgba(255, 255, 255, 0.8); margin-bottom: 0.5rem; font-size: 0.8em; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.logo-icon-footer { width: 120px; height: 90px; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: var(--transition); text-transform: none; font-size: 0.9em; }
.footer-section a:hover { color: var(--secondary); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9em; color: rgba(255, 255, 255, 0.8); }
.contact-item a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.contact-item a:hover { color: var(--secondary); }
.footer-social { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; margin-bottom: 2rem; text-align: center; }
.footer-social h4 { margin-bottom: 1rem; }
.social-links { display: flex; gap: 1rem; justify-content: center; }
.social-links li{ display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background: rgba(255, 255, 255, 0.1); border-radius: 50%; transition: var(--transition); text-decoration: none; color: white; font-weight: 600; }
.social-links li:hover { background: var(--primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }
.footer-bottom p {font-size: 0.8em;}
.footer-bottom a:hover {color: var(--secondary);}
.footer iframe { width: 100%; height: 380px; border: 0; display: block; } 
/*********************************************************/
.sobre { position: relative; height: 24rem; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(to right, var(--primary), var(--secondary)); margin-top: 5rem; }
.sobre::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.sobre-content { position: relative; z-index: 10; text-align: center; color: white; }
.sobre h1 { font-size: 3rem; margin-bottom: 1rem; }
.sobre p { font-size: 1em; color: rgba(255, 255, 255, 0.9); }
/*********************************************************/
.history { padding: 6rem 0; }
.history-text { max-width: 48rem; margin: 0 auto; }
.history-text h2 { font-size: 2.25rem; margin-bottom: 2rem; color: var(--secondary); }
.history-text p { font-size: 1em; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
/*********************************************************/
.principles { padding: 0 0 6rem; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.principle-card { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(16px); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 1.5rem; padding: 2rem 1.75rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); transition: var(--transition); }
.principle-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1); }
.principle-card h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 0.75rem; }
.principle-card p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin: 0; }
/*********************************************************/
.contato { padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.contact-card { background: white; border-radius: 1.5rem; padding: 2rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); text-align: center; transition: all 0.3s ease; }
.contact-card:hover { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15); transform: translateY(-0.5rem); }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--secondary); }
.contact-card h3 { font-size: 1.125rem; color: var(--primary); margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-light); }
.contact-card a { color: var(--text-light); }
.contact-card a:hover {text-decoration: none; color: var(--primary); }
.contact-map { margin-top: 3rem; }
.contact-map-wrapper { border-radius: 1.5rem; overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); background: white; }
.contato iframe { width: 100%; height: 420px; border: 0; display: block; } 
.contact-address { margin-top: 1rem; text-align: center; color: var(--text-light); font-size: 1rem; line-height: 1.6; }
/*********************************************************/
.clients { padding: 6rem 0; }
.clients-logos-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; align-items: center; }
.client-logo { display: flex; align-items: center; justify-content: center; padding: 10px; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 1.25rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); transition: var(--transition);}
.client-logo img { max-height: 120px; width: auto; max-width: 100%; margin: 0 auto; opacity: 0.85; filter: grayscale(1); transition: var(--transition); }
.client-logo:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1); }
.client-logo:hover img { opacity: 1; filter: grayscale(0); }
.clients .section-title {color: var(--primary);}
/*********************************************************/
.service-hero { position: relative; padding: 6.5rem 0 4.5rem; background-size: cover; background-position: center; background-repeat: no-repeat; color: white; }
.service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.4)); }
.service-hero-content { position: relative; z-index: 1; max-width: 900px; }
.service-hero-breadcrumb { display: flex; gap: 0.75rem; align-items: center; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 1.25rem; }
.service-hero-breadcrumb a { color: rgba(255, 255, 255, 0.95); text-decoration: none; font-weight: 600; }
.service-hero-breadcrumb a:hover { text-decoration: underline; }
.service-hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.service-hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; line-height: 1.7; margin: 0; }

.service-detail { padding: 5rem 0; background: var(--background); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.service-detail-media { position: sticky; top: 7rem; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 40px var(--shadow-xl); background: white; }
.service-detail-media img { width: 100%; height: auto; display: block; transform: scale(1.01); }
.service-detail-text h2 { color: var(--primary); font-size: 2rem; margin-bottom: 1rem; }
.service-richtext { color: var(--text-light); font-size: 1rem; line-height: 1.9; }
.service-richtext p { font-size: 1rem; line-height: 1.9; margin-bottom: 1.25rem; }
.service-richtext ul, .service-richtext ol { margin: 0 0 1.25rem; padding-left: 1.25rem; }
.service-richtext li { margin-bottom: 0.5rem; }

.service-gallery { padding: 0 0 6rem; background: var(--background); }
.service-gallery-header { text-align: center; margin-bottom: 2.5rem; }
.service-gallery-header h2 { color: var(--primary); margin-bottom: 0.5rem; }
.service-gallery-header p { margin: 0 auto; max-width: 52rem; }
.service-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.service-gallery-item { appearance: none; border: 0; padding: 0; background: transparent; border-radius: 1.25rem; overflow: hidden; cursor: pointer; position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: var(--transition); }
.service-gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transform: scale(1.02); transition: var(--transition); filter: saturate(1.05); }
.service-gallery-item:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14); }
.service-gallery-item:hover img { transform: scale(1.08); }

.service-lightbox { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 2rem; z-index: 9999; }
.service-lightbox.is-open { display: flex; }
.service-lightbox-dialog { width: min(1100px, 100%); max-height: 85vh; background: transparent; border: 0; border-radius: 0; overflow: visible; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35); }
.service-lightbox-dialog img { width: 100%; height: auto; max-height: 85vh; object-fit: contain; display: block; background: transparent; }
.service-lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 9999px; cursor: pointer; background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(10px); transition: var(--transition); }
.service-lightbox-close:before,
.service-lightbox-close:after { content: ''; position: absolute; top: 50%; left: 50%; width: 18px; height: 2px; background: rgba(255, 255, 255, 0.95); border-radius: 9999px; transform-origin: center; }
.service-lightbox-close:before { transform: translate(-50%, -50%) rotate(45deg); }
.service-lightbox-close:after { transform: translate(-50%, -50%) rotate(-45deg); }
.service-lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.is-lightbox-open { overflow: hidden; }

.service-notfound { padding: 6rem 0; }
.service-notfound .container { text-align: center; max-width: 60rem; }
.service-notfound h1 { color: var(--primary); margin-bottom: 1rem; }
.service-notfound p { margin-bottom: 2rem; }
@media (max-width: 1024px) { .service-detail-grid { grid-template-columns: 1fr; } .service-detail-media { position: relative; top: auto; } .service-gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .service-hero { padding: 6rem 0 4rem; } .service-hero h1 { font-size: 2.25rem; } .service-gallery-grid { grid-template-columns: repeat(2, 1fr); } .service-gallery-item img { height: 240px; } }
@media (max-width: 480px) { .service-gallery-grid { grid-template-columns: 1fr; } }
/*********************************************************/
.text-center { text-align: center; }
.section-title { font-size: 2.25rem; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-light); max-width: 42rem; margin: 0 auto 4rem; }
/*********************************************************/
      
/*********************************************************/








        
