/* ============================================
Home Page Custom Styles
============================================ */

/* Hero Section Override */
.hero-section {
 background: #0073aa;
 padding: 80px 0 100px;
}

/* ============================================
Features Section
============================================ */
.section-diferenciais {
 padding: 80px 0;
 background: #fff;
}

.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;
 margin: 0;
}

/* ============================================
About Section
============================================ */
.section-sobre {
 padding: 80px 0;
 background: #f8f9fa;
}

.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: #fff;
 padding: 24px 16px;
 border-radius: 8px;
 text-align: center;
 border: 1px solid #eee;
}

.about-stat .stat-number {
 display: block;
 font-size: 32px;
 font-weight: 700;
 color: #0073aa;
 line-height: 1;
}

.about-stat .stat-label {
 display: block;
 font-size: 13px;
 color: #666;
 font-weight: 500;
 text-transform: uppercase;
 margin-top: 8px;
}

.about-image-box {
 background: #0073aa;
 padding: 48px;
 border-radius: 12px;
 text-align: center;
 color: #fff;
 max-width: 300px;
 margin: 0 auto;
}

.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;
 color: #fff;
}

.about-image-box p {
 opacity: 0.9;
 font-size: 14px;
 margin: 0;
}

/* ============================================
Services Section
============================================ */
.section-servicos {
 padding: 80px 0;
 background: #fff;
}

.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 {
 list-style: none;
 padding: 0;
 margin: 0;
}

.service-card ul li {
 padding: 10px 0;
 border-bottom: 1px solid #f0f0f0;
 font-size: 14px;
 color: #555;
}

.service-card ul li:last-child {
 border-bottom: none;
}

/* ============================================
Page Content - Generic
============================================ */
.page-content {
 padding: 60px 0;
 background: #fff;
}

.page-content h1 {
 font-size: 36px;
 font-weight: 700;
 color: #323232;
 margin-bottom: 16px;
}

.page-content p {
 font-size: 16px;
 color: #555;
 line-height: 1.7;
 margin-bottom: 16px;
}

/* ============================================
Form Styles
============================================ */
.form-section {
 max-width: 600px;
 margin: 0 auto;
}

.form-group {
 margin-bottom: 24px;
}

.form-group label {
 display: block;
 font-weight: 600;
 color: #323232;
 margin-bottom: 8px;
 font-size: 14px;
}

.form-group label span {
 color: #dc3545;
}

.form-control {
 width: 100%;
 padding: 12px 16px;
 font-size: 15px;
 border: 1px solid #ddd;
 border-radius: 6px;
 background: #fff;
 color: #323232;
 transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
 outline: none;
 border-color: #0073aa;
 box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

.form-control::placeholder {
 color: #999;
}

textarea.form-control {
 min-height: 120px;
 resize: vertical;
}

.btn-submit {
 background: #0073aa;
 color: #fff;
 border: none;
 padding: 14px 32px;
 font-size: 15px;
 font-weight: 600;
 border-radius: 6px;
 cursor: pointer;
 transition: background 0.2s;
}

.btn-submit:hover {
 background: #005a87;
}

/* ============================================
Contact Info
============================================ */
.contact-info-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 margin-bottom: 48px;
}

.contact-info-box {
 background: #f8f9fa;
 padding: 32px;
 border-radius: 8px;
 text-align: center;
 border: 1px solid #eee;
}

.contact-info-box i {
 font-size: 40px;
 color: #0073aa;
 margin-bottom: 16px;
 display: block;
}

.contact-info-box h3 {
 font-size: 18px;
 font-weight: 600;
 color: #323232;
 margin-bottom: 12px;
}

.contact-info-box p {
 font-size: 14px;
 color: #666;
 margin: 0;
}

.contact-info-box a {
 color: #0073aa;
 font-weight: 500;
}

/* ============================================
Map
============================================ */
.map-container {
 background: #f8f9fa;
 padding: 24px;
 border-radius: 8px;
 border: 1px solid #eee;
 text-align: center;
 color: #999;
 margin-top: 48px;
}

/* ============================================
Responsive
============================================ */
@media (max-width: 1100px) {
 .features-grid,
 .services-grid {
  grid-template-columns: repeat(2, 1fr);
 }
}

@media (max-width: 900px) {
 .about-section {
  grid-template-columns: 1fr;
  gap: 40px;
 }
 
 .about-image {
  order: -1;
 }
 
 .contact-info-grid {
  grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 .hero-section {
  padding: 60px 0 80px;
 }
 
 .hero-content h2 {
  font-size: 28px;
 }
 
 .section-diferenciais,
 .section-sobre,
 .section-servicos {
  padding: 60px 0;
 }
 
 .features-grid,
 .services-grid {
  grid-template-columns: 1fr;
 }
 
 .about-content h2 {
  font-size: 26px;
 }
 
 .about-stats {
  grid-template-columns: 1fr;
  gap: 12px;
 }
}