/* ============================================
KK Tec - Assistência Técnica
Template Moderno WordPress Style
============================================ */

/* Reset & Base */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
 background: #fff;
 color: #323232;
 line-height: 1.6;
 font-size: 16px;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

a {
 text-decoration: none;
 color: inherit;
 transition: color 0.2s;
}

a:hover {
 color: #0073aa;
}

ul {
 list-style: none;
}

img {
 max-width: 100%;
 height: auto;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
}

/* ============================================
Header Superior
============================================ */
.header-top {
 background: #0073aa;
 color: #fff;
 padding: 10px 0;
 font-size: 14px;
}

.header-top .container {
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.header-top-left {
 display: flex;
 align-items: center;
 gap: 8px;
 font-weight: 600;
}

.header-top-left i {
 font-size: 16px;
}

.header-top-right {
 display: flex;
 gap: 24px;
}

.header-top-right a {
 color: rgba(255,255,255,0.9);
 font-size: 13px;
}

.header-top-right a:hover {
 color: #fff;
}

/* ============================================
Main Header / Navigation
============================================ */
.main-header {
 background: #fff;
 border-bottom: 1px solid #eee;
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.main-header .container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 16px;
 padding-bottom: 16px;
}

.logo {
 display: flex;
 flex-direction: column;
 }

 .logo-img {
 max-height: 50px;
 max-width: 180px;
 width: auto;
 height: auto;
 object-fit: contain;
 }

 .logo h1 {
 font-size: 26px;
 font-weight: 700;
 color: #323232;
 margin: 0;
 line-height: 1.1;
 }

.logo h1 span {
 color: #0073aa;
}

.logo-tagline {
 font-size: 11px;
 color: #666;
 margin-top: 2px;
 letter-spacing: 0.5px;
 text-transform: uppercase;
}

.main-nav ul {
 display: flex;
 gap: 4px;
}

.main-nav a {
 display: block;
 padding: 10px 16px;
 color: #555;
 font-weight: 500;
 font-size: 14px;
 border-radius: 6px;
 transition: all 0.2s;
}

.main-nav a:hover {
 background: #f5f5f5;
 color: #0073aa;
}

.main-nav a.active {
 background: #0073aa;
 color: #fff;
}

.header-actions {
 display: flex;
 align-items: center;
 gap: 16px;
}

.btn-phone {
 display: flex;
 align-items: center;
 gap: 8px;
 background: #0073aa;
 padding: 10px 18px;
 border-radius: 6px;
 color: #fff;
 font-weight: 500;
 font-size: 14px;
 transition: background 0.2s;
}

.btn-phone:hover {
 background: #005a87;
 color: #fff;
}

.btn-phone i {
 font-size: 18px;
}

/* ============================================
Hero Section
============================================ */
.hero-section {
 background: #0073aa;
 color: #fff;
 padding: 60px 0 80px;
 position: relative;
}

.hero-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 opacity: 0.03;
 background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
 text-align: center;
 max-width: 800px;
 margin: 0 auto;
 position: relative;
 z-index: 1;
}

.hero-content h2 {
 font-size: 42px;
 font-weight: 700;
 margin-bottom: 16px;
 line-height: 1.2;
}

.hero-content > p {
 font-size: 18px;
 opacity: 0.92;
 margin-bottom: 36px;
 line-height: 1.6;
}

/* Quick Services Grid */
.quick-services {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 gap: 16px;
 margin-bottom: 40px;
}

.quick-service-item {
 display: flex;
 align-items: center;
 gap: 10px;
 background: rgba(255,255,255,0.12);
 padding: 14px 24px;
 border-radius: 8px;
 color: #fff;
 font-size: 15px;
 font-weight: 500;
 border: 1px solid rgba(255,255,255,0.15);
 transition: all 0.2s;
}

.quick-service-item:hover {
 background: rgba(255,255,255,0.2);
 transform: translateY(-2px);
}

.quick-service-item i {
 font-size: 22px;
}

/* Hero Stats */
.hero-stats {
 display: flex;
 justify-content: center;
 gap: 48px;
 flex-wrap: wrap;
}

.hero-stat {
 text-align: center;
}

.hero-stat i {
 font-size: 32px;
 opacity: 0.9;
 margin-bottom: 8px;
 display: block;
}

.hero-stat .stat-number {
 display: block;
 font-size: 32px;
 font-weight: 700;
 line-height: 1;
}

.hero-stat .stat-label {
 display: block;
 font-size: 14px;
 opacity: 0.85;
 margin-top: 4px;
}

/* ============================================
Section Styles
============================================ */
.section {
 padding: 80px 0;
}

.section-white {
 background: #fff;
}

.section-gray {
 background: #f8f9fa;
}

.section-header {
 text-align: center;
 margin-bottom: 48px;
}

.section-header h2 {
 font-size: 32px;
 font-weight: 700;
 color: #323232;
 margin-bottom: 12px;
}

.section-header p {
 font-size: 16px;
 color: #666;
 max-width: 600px;
 margin: 0 auto;
}

/* ============================================
Features / Diferenciais
============================================ */
.features-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}

.feature-box {
 background: #fff;
 padding: 32px 24px;
 border-radius: 8px;
 text-align: center;
 border: 1px solid #eee;
 transition: all 0.2s;
}

.feature-box:hover {
 border-color: #0073aa;
 box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.feature-box .feature-icon {
 font-size: 40px;
 color: #0073aa;
 margin-bottom: 20px;
}

.feature-box h3 {
 font-size: 18px;
 font-weight: 600;
 color: #323232;
 margin-bottom: 12px;
}

.feature-box p {
 font-size: 14px;
 color: #666;
 line-height: 1.6;
}

/* ============================================
About Section
============================================ */
.about-section {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 64px;
 align-items: center;
}

.about-content h2 {
 font-size: 32px;
 font-weight: 700;
 color: #323232;
 margin-bottom: 20px;
}

.about-content > p {
 font-size: 16px;
 color: #555;
 line-height: 1.7;
 margin-bottom: 24px;
}

.about-stats {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 margin: 32px 0;
}

.about-stat {
 background: #f8f9fa;
 padding: 20px;
 border-radius: 8px;
 text-align: center;
}

.about-stat .stat-number {
 display: block;
 font-size: 28px;
 font-weight: 700;
 color: #0073aa;
}

.about-stat .stat-label {
 display: block;
 font-size: 13px;
 color: #666;
 font-weight: 500;
 text-transform: uppercase;
 margin-top: 4px;
}

.about-image {
 display: flex;
 justify-content: center;
}

.about-image-box {
 background: #0073aa;
 padding: 48px;
 border-radius: 12px;
 text-align: center;
 color: #fff;
 max-width: 300px;
}

.about-image-box i {
 font-size: 64px;
 margin-bottom: 16px;
 display: block;
}

.about-image-box h3 {
 font-size: 24px;
 font-weight: 600;
 margin-bottom: 8px;
}

.about-image-box p {
 opacity: 0.9;
 font-size: 14px;
}

/* ============================================
Services Grid
============================================ */
.services-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 24px;
}

.service-card {
 background: #fff;
 padding: 28px;
 border-radius: 8px;
 border: 1px solid #eee;
 transition: all 0.2s;
}

.service-card:hover {
 border-color: #0073aa;
 box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-card .service-icon {
 font-size: 36px;
 color: #0073aa;
 margin-bottom: 18px;
}

.service-card h3 {
 font-size: 18px;
 font-weight: 600;
 color: #323232;
 margin-bottom: 16px;
}

.service-card ul li {
 padding: 8px 0;
 border-bottom: 1px solid #f0f0f0;
 font-size: 14px;
 color: #555;
}

.service-card ul li:last-child {
 border-bottom: none;
}

/* ============================================
CTA Section
============================================ */
.cta-section {
 background: #0073aa;
 color: #fff;
 padding: 64px 0;
 text-align: center;
}

.cta-section h2 {
 font-size: 32px;
 font-weight: 700;
 margin-bottom: 16px;
}

.cta-section p {
 font-size: 16px;
 opacity: 0.92;
 margin-bottom: 32px;
}

.cta-buttons {
 display: flex;
 justify-content: center;
 gap: 16px;
 flex-wrap: wrap;
}

.btn {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 14px 28px;
 border-radius: 6px;
 font-weight: 600;
 font-size: 15px;
 transition: all 0.2s;
}

.btn-primary {
 background: #fff;
 color: #0073aa;
}

.btn-primary:hover {
 background: #f0f0f0;
 color: #005a87;
}

.btn-secondary {
 background: transparent;
 border: 2px solid rgba(255,255,255,0.5);
 color: #fff;
}

.btn-secondary:hover {
 background: rgba(255,255,255,0.1);
 border-color: #fff;
}

/* ============================================
Footer
============================================ */
.footer {
 background: #1a1a1a;
 color: #fff;
 padding: 64px 0 0;
}

.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 48px;
 margin-bottom: 48px;
}

.footer-col h4 {
 font-size: 18px;
 font-weight: 600;
 margin-bottom: 20px;
 color: #fff;
}

.footer-col > p {
 font-size: 14px;
 color: #999;
 line-height: 1.7;
 margin-bottom: 20px;
}

.footer-social {
 display: flex;
 gap: 12px;
}

.footer-social a {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 40px;
 height: 40px;
 background: rgba(255,255,255,0.1);
 border-radius: 6px;
 font-size: 18px;
 transition: background 0.2s;
}

.footer-social a:hover {
 background: #0073aa;
 color: #fff;
}

.footer-links li {
 margin-bottom: 12px;
}

.footer-links a {
 color: #999;
 font-size: 14px;
}

.footer-links a:hover {
 color: #fff;
}

.footer-contact li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 color: #999;
 font-size: 14px;
 margin-bottom: 14px;
}

.footer-contact i {
 color: #0073aa;
 font-size: 16px;
 margin-top: 3px;
}

.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.1);
 padding: 24px 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 14px;
 color: #666;
}

.footer-bottom a {
 color: #0073aa;
}

/* ============================================
Banner Placeholder
============================================ */
.secondary-banner {
 background: #f8f9fa;
 padding: 32px 0;
 text-align: center;
}

.banner-placeholder {
 background: #fff;
 border: 2px dashed #ddd;
 border-radius: 8px;
 padding: 24px;
 color: #999;
 font-size: 14px;
}

.banner-placeholder.small {
 max-width: 728px;
 margin: 0 auto;
 display: inline-block;
 width: 100%;
}

.banner-placeholder i {
 margin-right: 8px;
}

/* ============================================
Responsive
============================================ */
@media (max-width: 1100px) {
 .features-grid,
 .services-grid {
  grid-template-columns: repeat(2, 1fr);
 }
 
 .footer-grid {
  grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 900px) {
 .about-section {
  grid-template-columns: 1fr;
  gap: 40px;
 }
 
 .about-image {
  order: -1;
 }
 
 .header-top-right {
  display: none;
 }
}

@media (max-width: 768px) {
 .hero-content h2 {
  font-size: 32px;
 }
 
 .hero-content > p {
  font-size: 16px;
 }
 
 .main-nav {
  display: none;
 }
 
 .hero-stats {
  gap: 32px;
 }
 
 .section {
  padding: 60px 0;
 }
 
 .section-header h2 {
  font-size: 26px;
 }
 
 .features-grid,
 .services-grid {
  grid-template-columns: 1fr;
 }
 
 .about-stats {
  grid-template-columns: 1fr;
  gap: 12px;
 }
 
 .footer-grid {
  grid-template-columns: 1fr;
  gap: 32px;
 }
 
 .footer-bottom {
  flex-direction: column;
  gap: 12px;
  text-align: center;
 }
}