*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #0B4F9E;
  --primary-dark: #073670;
  --primary-light: #1E6FC7;
  --secondary: #00A3B4;
  --accent: #00D4DE;
  --success: #16A34A;
  --warning: #F59E0B;
  --error: #DC2626;
  --whatsapp: #25D366;
  --bg: #FFFFFF;
  --bg-alt: #F4F7FB;
  --bg-dark: #0A1628;
  --bg-dark-2: #0F2138;
  --text: #1E293B;
  --text-light: #64748B;
  --muted: #94A3B8;
  --border: #E2E8F0;
  --border-dark: rgba(255,255,255,.1);
  --white: #FFFFFF;
  --font-title: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(11,79,158,.06);
  --shadow-lg: 0 20px 50px rgba(11,79,158,.12);
  --shadow-dark: 0 20px 50px rgba(0,0,0,.4);
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-title); line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
[class^="ri-"], [class*=" ri-"] { font-weight: 400 !important; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 16px; color: var(--bg-dark); }
.section-header.diferenciais h2 {color: var(--bg) !important; }
.section-header p { font-size: 1.1rem; color: var(--text-light); }
.section-dark .section-header p { color: rgba(255,255,255,.7); }
.section-tag { display: inline-block; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 12px; padding: 6px 16px; background: rgba(11,79,158,.08); border-radius: 50px; }
.section-dark .section-tag { color: var(--accent); background: rgba(0,212,222,.1); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; transition: var(--transition); justify-content: center; text-align: center; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,79,158,.3); }
.btn-accent { background: var(--accent); color: var(--bg-dark); }
.btn-accent:hover { background: var(--secondary); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.site-header.scrolled { box-shadow: 0 4px 24px rgba(10,22,40,.1); }

.header-main { background: var(--bg-dark); transition: var(--transition); }
.site-header.scrolled .header-main { background: rgba(10,22,40,.96); backdrop-filter: blur(10px); box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 88px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; object-fit: contain; transition: var(--transition); }
.site-header.scrolled .brand img { height: 46px; }
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link { font-weight: 500; font-size: .88rem; color: rgba(255,255,255,.85); padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(255,255,255,.08); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { font-family: inherit; font-weight: 500; font-size: .88rem; color: rgba(255,255,255,.85); background: none; border: none; padding: 8px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle:hover, .nav-dropdown-toggle[aria-expanded="true"] { color: var(--accent); background: rgba(255,255,255,.08); }
.nav-dropdown-toggle i { font-size: 1.1rem; transition: var(--transition); }
.nav-dropdown.open .nav-dropdown-toggle i { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 280px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); z-index: 100; }
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .88rem; color: var(--text); transition: var(--transition); }
.nav-dropdown-menu a:hover { background: var(--bg-alt); color: var(--primary); }
.nav-dropdown-menu a i { font-size: 1.2rem; color: var(--primary); }
.header-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .85rem; color: var(--white); background: var(--whatsapp); padding: 10px 20px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; }
.header-cta:hover { background: #1DA851; transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; padding: 4px; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; padding-top: 88px; }
.hero-swiper { width: 100%; }
.hero-slide { background-size: cover; background-position: center; display: flex; align-items: center; position: relative; min-height: 680px; }
.hero-slide-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(11,79,158,.82) 50%, rgba(0,163,180,.6) 100%); }
.hero-slide-inner { position: relative; z-index: 2; width: 100%; padding: 60px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); background: rgba(0,212,222,.12); border: 1px solid rgba(0,212,222,.3); padding: 8px 18px; border-radius: 50px; margin-bottom: 24px; }
.hero-title { font-size: clamp(1.7rem, 4.5vw, 3.2rem); color: var(--white); max-width: 860px; margin-bottom: 20px; line-height: 1.2; }
.hero-title .highlight { color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 720px; margin-bottom: 28px; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-swiper .swiper-pagination { z-index: 4; bottom: 30px; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.5); width: 10px; height: 10px; opacity: 1; transition: var(--transition); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--accent); width: 30px; border-radius: 5px; }
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next { color: var(--white); background: rgba(255,255,255,.12); width: 48px; height: 48px; border-radius: 50%; backdrop-filter: blur(4px); z-index: 4; transition: var(--transition); }
.hero-swiper .swiper-button-prev:hover, .hero-swiper .swiper-button-next:hover { background: rgba(0,212,222,.4); }
.hero-swiper .swiper-button-prev::after, .hero-swiper .swiper-button-next::after { font-size: 1.2rem; }

/* ===== HERO SEALS BAR ===== */
.hero-seals-bar { background: var(--bg-dark); padding: 24px 0; }
.hero-seals { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.hero-seal { display: flex; align-items: center; gap: 12px; }
.hero-seal i { font-size: 2rem; color: var(--accent); }
.hero-seal-value { font-weight: 700; font-size: 1.3rem; color: var(--white); line-height: 1; }
.hero-seal-label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ===== ABOUT / PRESENTATION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.about-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 20px; color: var(--bg-dark); }
.about-text .about-lead { font-size: 1.15rem; color: var(--primary); margin-bottom: 20px; font-weight: 500; }
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-text p strong { color: var(--text); }
.about-cta { margin-top: 32px; }

/* ===== MVV ===== */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.mvv-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border-top: 4px solid var(--primary); transition: var(--transition); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mvv-card:nth-child(2) { border-top-color: var(--secondary); }
.mvv-card:nth-child(3) { border-top-color: var(--accent); }
.mvv-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 1.6rem; margin-bottom: 20px; background: rgba(11,79,158,.08); color: var(--primary); }
.mvv-card:nth-child(2) .mvv-icon { background: rgba(0,163,180,.08); color: var(--secondary); }
.mvv-card:nth-child(3) .mvv-icon { background: rgba(0,212,222,.08); color: var(--secondary); }
.mvv-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--bg-dark); }
.mvv-card p { color: var(--text-light); font-size: .95rem; }
.mvv-card ul { margin-top: 12px; }
.mvv-card ul li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: .9rem; color: var(--text-light); }
.mvv-card ul li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.mvv-card ul li strong { color: var(--text); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.service-card-image { aspect-ratio: 16/10; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-header { padding: 28px 28px 0; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.service-card-header .service-icon { font-size: 1.8rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0; color: var(--bg-dark); }
.service-card > p { padding: 0 28px 20px; color: var(--text-light); font-size: .95rem; }
.service-list { padding: 0 28px 20px; }
.service-list h4 { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px; }
.service-list ul li { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: .9rem; color: var(--text-light); }
.service-list ul li i { color: var(--secondary); margin-top: 4px; flex-shrink: 0; }
.service-card-link { display: flex; align-items: center; gap: 6px; padding: 16px 28px; margin-top: auto; font-weight: 600; font-size: .85rem; color: var(--primary); transition: var(--transition); border-top: 1px solid var(--border); }
.service-card-link:hover { color: var(--secondary); gap: 10px; }

/* ===== WHY / DIFFERENTIALS ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 36px; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); border-color: rgba(0,212,222,.3); }
.why-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 1.6rem; margin-bottom: 20px; background: rgba(0,212,222,.1); color: var(--accent); }
.why-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-swiper { padding: 12px 4px 56px; }
.testimonials-swiper .swiper-wrapper { align-items: stretch; }
.testimonials-swiper .swiper-slide { height: auto; display: flex; }
.testimonials-swiper .swiper-slide .testimonial-card { width: 100%; height: 100%; display: flex; flex-direction: column; }
.testimonials-swiper .swiper-pagination { bottom: 0; }
.testimonials-swiper .swiper-button-next, .testimonials-swiper .swiper-button-prev { color: var(--primary); background: var(--white); border-radius: 50%; width: 40px; height: 40px; box-shadow: var(--shadow); }
.testimonials-swiper .swiper-button-next::after, .testimonials-swiper .swiper-button-prev::after { font-size: 1rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); position: relative; transition: var(--transition); display: flex; flex-direction: column; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote { font-size: 3rem; color: var(--primary); opacity: .15; position: absolute; top: 16px; right: 24px; line-height: 1; }
.testimonial-text { font-size: 1rem; color: var(--text); margin-bottom: 20px; font-style: italic; line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.1rem; color: var(--white); flex-shrink: 0; background: var(--primary); }
.testimonial-card:nth-child(4n+2) .testimonial-avatar { background: var(--secondary); }
.testimonial-card:nth-child(4n+3) .testimonial-avatar { background: var(--accent); color: var(--bg-dark); }
.testimonial-name { font-weight: 600; font-size: .95rem; color: var(--bg-dark); }
.testimonial-role { font-size: .85rem; color: var(--text-light); }

/* ===== PORTFOLIO / OBRAS ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; }
.portfolio-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-image { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.portfolio-card:hover .portfolio-image img { transform: scale(1.06); }
.portfolio-tag { position: absolute; top: 16px; left: 16px; font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); background: var(--primary); padding: 6px 14px; border-radius: 50px; }
.portfolio-body { padding: 28px; }
.portfolio-body h3 { font-size: 1.2rem; color: var(--bg-dark); margin-bottom: 16px; }
.portfolio-meta { display: flex; flex-direction: column; gap: 12px; }
.portfolio-meta-item { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-light); }
.portfolio-meta-item strong { color: var(--primary); font-weight: 700; min-width: 80px; flex-shrink: 0; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-tag { position: absolute; top: 14px; left: 14px; font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); background: var(--primary); padding: 6px 14px; border-radius: 50px; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.1rem; color: var(--bg-dark); margin-bottom: 10px; }
.blog-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-card .blog-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .85rem; color: var(--primary); transition: var(--transition); }
.blog-card .blog-link:hover { gap: 10px; color: var(--secondary); }

/* ===== BLOG ARTICLE ===== */
.blog-article { max-width: 780px; margin: 0 auto; }
.blog-article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.blog-article-category { font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); background: var(--primary); padding: 6px 14px; border-radius: 50px; }
.blog-article-body p { margin-bottom: 18px; color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }
.blog-article-body p strong { color: var(--text); }
.blog-article-body h2 { font-size: 1.5rem; color: var(--bg-dark); margin: 32px 0 16px; }
.blog-article-body h3 { font-size: 1.3rem; color: var(--bg-dark); margin: 28px 0 14px; }
.blog-article-body ul { margin-bottom: 18px; padding-left: 0; }
.blog-article-body ul li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.blog-article-body ul li i { color: var(--primary); margin-top: 5px; flex-shrink: 0; }
.blog-article-body a { color: var(--primary); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(11,79,158,.3); text-underline-offset: 3px; transition: var(--transition); }
.blog-article-body a:hover { text-decoration-color: var(--primary); }
.blog-article-image { margin: 24px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.blog-article-image img { width: 100%; height: auto; }
.blog-article-image figcaption { padding: 12px 16px; font-size: .85rem; color: var(--text-light); text-align: center; }
.blog-related { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.blog-related h2 { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.contact-info-card h3 { font-size: 1.1rem; color: var(--bg-dark); margin-bottom: 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: 1.2rem; background: rgba(11,79,158,.08); color: var(--primary); flex-shrink: 0; }
.contact-icon.green { background: rgba(37,211,102,.1); color: var(--whatsapp); }
.contact-icon.red { background: rgba(220,38,38,.08); color: var(--error); }
.contact-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px; }
.contact-value { font-weight: 600; font-size: .95rem; color: var(--bg-dark); }
a.contact-value:hover { color: var(--primary); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--primary); }
.contact-form-wrap h3 { font-size: 1.3rem; color: var(--bg-dark); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 28px; font-size: .95rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; color: var(--bg-dark); margin-bottom: 6px; }
.form-group label .optional { font-weight: 400; font-size: .75rem; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem; color: var(--text); transition: var(--transition); background: var(--bg-alt); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(11,79,158,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; margin-top: 8px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; display: none; line-height: 1.6; }
.form-status.success { display: block; background: rgba(22,163,74,.08); border: 1px solid var(--success); color: #15803D; }
.form-status.success a { color: #15803D; font-weight: 700; }
.form-status.error { display: block; background: rgba(220,38,38,.08); border: 1px solid var(--error); color: #B91C1C; }
.form-status.error a { color: #B91C1C; font-weight: 700; }
.form-status i { margin-right: 6px; }
.form-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-checks label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: .9rem; color: var(--text); cursor: pointer; padding: 10px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); }
.form-checks label:hover { border-color: var(--primary-light); }
.form-checks input { width: 18px; height: 18px; accent-color: var(--primary); flex-shrink: 0; }
.form-checks label:has(input:checked) { border-color: var(--primary); background: rgba(11,79,158,.04); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--secondary) 100%); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E"); }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; color: var(--whatsapp); transition: var(--transition); }
.footer-whatsapp:hover { color: var(--white); }
.footer-grid h3 { font-size: 1rem; color: var(--white); margin-bottom: 20px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a { font-size: .9rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-grid ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.5); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-dark); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer-bottom .inovaside { font-size: .8rem; color: rgba(255,255,255,.35); margin-top: 8px; }
.footer-bottom .inovaside strong { color: var(--accent); font-weight: 600; }

/* ===== WHATSAPP FLOAT ===== */
#whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; align-items: center; gap: 10px; background: var(--whatsapp); color: var(--white); padding: 14px 22px; border-radius: 50px; font-weight: 600; font-size: .9rem; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: var(--transition); animation: pulse 2s infinite; }
#whatsapp-float:hover { background: #1DA851; transform: scale(1.05); }
#whatsapp-float i { font-size: 1.6rem; }
@keyframes pulse { 0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); } 50% { box-shadow: 0 6px 32px rgba(37,211,102,.65); } }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--secondary) 100%); padding: 140px 0 64px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E"); }
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 20px; font-size: .85rem; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: .8rem; }

/* ===== PROSE / SERVICE DETAIL ===== */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { margin-bottom: 18px; color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }
.prose p strong { color: var(--text); }
.prose h2 { font-size: 1.6rem; color: var(--bg-dark); margin: 36px 0 16px; }
.prose h3 { font-size: 1.3rem; color: var(--bg-dark); margin: 28px 0 14px; }
.prose ul { margin-bottom: 18px; padding-left: 0; }
.prose ul li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; color: var(--text-light); font-size: 1rem; line-height: 1.7; }
.prose ul li i { color: var(--primary); margin-top: 5px; flex-shrink: 0; }
.prose ul li strong { color: var(--text); }

/* ===== FEATURE GRID (service pages) ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feature-card .feature-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 1.5rem; background: rgba(11,79,158,.08); color: var(--primary); margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; color: var(--bg-dark); margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ===== PROCESS / FLOW (interfonia GPRS) ===== */
.process-flow { display: flex; align-items: stretch; gap: 0; margin-top: 40px; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 160px; text-align: center; padding: 24px 16px; position: relative; }
.process-step .step-icon { width: 64px; height: 64px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.8rem; background: var(--primary); color: var(--white); }
.process-step:nth-child(2) .step-icon { background: var(--secondary); }
.process-step:nth-child(3) .step-icon { background: var(--accent); color: var(--bg-dark); }
.process-step:nth-child(4) .step-icon { background: var(--primary-dark); }
.process-step:nth-child(5) .step-icon { background: var(--success); }
.process-step h4 { font-size: 1rem; color: var(--bg-dark); margin-bottom: 6px; }
.process-step p { font-size: .85rem; color: var(--text-light); }
.process-arrow { display: flex; align-items: center; color: var(--primary-light); font-size: 1.5rem; padding: 0 4px; }

/* ===== COMPARISON ===== */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.comparison-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border-top: 4px solid var(--primary); }
.comparison-card:nth-child(2) { border-top-color: var(--secondary); }
.comparison-card-header { padding: 24px 28px; background: var(--bg-alt); }
.comparison-card-header h3 { font-size: 1.2rem; color: var(--bg-dark); }
.comparison-card-body { padding: 24px 28px; }
.comparison-card-body ul li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: .92rem; color: var(--text-light); border-bottom: 1px solid var(--border); }
.comparison-card-body ul li:last-child { border-bottom: none; }
.comparison-card-body ul li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.comparison-card:nth-child(2) .comparison-card-body ul li i { color: var(--secondary); }

/* ===== PROBLEM-SOLUTION ===== */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.ps-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.ps-card.problem { border-left: 4px solid var(--error); }
.ps-card.solution { border-left: 4px solid var(--success); }
.ps-card h3 { font-size: 1.15rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.ps-card.problem h3 { color: var(--error); }
.ps-card.solution h3 { color: var(--success); }
.ps-card ul li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: .92rem; color: var(--text-light); }
.ps-card.problem ul li i { color: var(--error); margin-top: 4px; }
.ps-card.solution ul li i { color: var(--success); margin-top: 4px; }

/* ===== SPIN ===== */
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .header-nav { position: fixed; top: 88px; left: 0; right: 0; background: var(--bg-dark); flex-direction: column; padding: 16px 24px; gap: 4px; transform: translateY(-200%); transition: transform .3s ease; max-height: calc(100vh - 88px); overflow-y: auto; box-shadow: var(--shadow-dark); z-index: 999; }
  .header-nav.open { transform: translateY(0); }
  .nav-link { width: 100%; padding: 12px 16px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 16px; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0; min-width: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 400px; padding: 4px 0 8px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .ps-grid { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-checks { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .contact-form-wrap { padding: 28px; }
  .hero-slide { min-height: 560px; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  #whatsapp-float span { display: none; }
  #whatsapp-float { padding: 16px; }
  #whatsapp-float i { font-size: 1.8rem; }
  .brand img { height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
