/* ============================================================
   ABChicomo Services — pages.css
   Estilos específicos por página
   ============================================================ */

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.about-content .section-badge {
  margin-bottom: var(--space-3);
}
.about-content h2 {
  margin-bottom: var(--space-4);
}
.about-content p {
  color: var(--color-text-soft);
  margin-bottom: var(--space-3);
}
.about-stats {
  display: flex;
  gap: var(--space-7);
  margin-top: var(--space-5);
}
.about-stats .stat-item {
  display: flex;
  flex-direction: column;
}
.about-stats .stat-number {
  font-size: 1.6rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-accent);
}
.about-stats .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.founder-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  text-align: center;
}
.founder-image {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-accent);
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-card h3 {
  font-size: 1.2rem;
}
.founder-role {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
  margin-bottom: var(--space-2);
}
.founder-bio {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  margin-bottom: var(--space-3);
}
.founder-social {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}
.founder-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--color-text-soft);
}
.founder-social a:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

/* --- MVV --- */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1100px;
  margin: 0 auto;
}
.mvv-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  text-align: center;
  transition: all var(--transition-bounce);
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}
.mvv-icon {
  width: 72px;
  height: 72px;
  background: var(--color-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.8rem;
  color: #fff;
}
.mvv-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}
.mvv-card p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}
.values-list {
  text-align: left;
  margin-top: var(--space-2);
}
.values-list li {
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-soft);
  font-size: 0.9rem;
}
.values-list li i {
  color: var(--color-success);
  font-size: 0.8rem;
}

/* --- Advantages --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.advantage-item {
  text-align: center;
  padding: var(--space-5);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.advantage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-3);
  background: var(--color-accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
}
.advantage-item h3 {
  font-size: 1rem;
  margin-bottom: var(--space-1);
}
.advantage-item p {
  color: var(--color-text-soft);
  font-size: 0.85rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}
.contact-info .section-badge {
  margin-bottom: var(--space-2);
}
.contact-info h2 {
  margin-bottom: var(--space-3);
}
.contact-text {
  color: var(--color-text-soft);
  margin-bottom: var(--space-6);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-method:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method-icon.whatsapp {
  background: #25d366;
}
.contact-method-icon.phone {
  background: #2563eb;
}
.contact-method-icon.email {
  background: #db2777;
}
.contact-method-icon.location {
  background: #8b5cf6;
}
.contact-method-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}
.contact-method-info .highlight {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
}
.contact-method-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.contact-social h3 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
}
.social-links {
  display: flex;
  gap: var(--space-2);
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--color-text-soft);
}
.social-links a:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.contact-location {
  margin-top: var(--space-6);
}
.contact-location h3 {
  font-size: 1rem;
  margin-bottom: var(--space-1);
}
.contact-location h3 i {
  color: var(--color-accent);
  margin-right: var(--space-2);
}
.contact-location p {
  color: var(--color-text-soft);
  font-size: 0.9rem;
}
.contact-map {
  margin-top: var(--space-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.contact-form-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.contact-form-wrapper .section-badge {
  margin-bottom: var(--space-2);
}
.contact-form-wrapper h2 {
  margin-bottom: var(--space-1);
}
.form-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-5);
}

.form-group {
  margin-bottom: var(--space-4);
}
.form-label {
  display: block;
  margin-bottom: var(--space-1);
  font-weight: var(--font-weight-medium);
  font-size: 0.85rem;
  color: var(--color-text);
}
.form-label .required {
  color: var(--color-error);
}
.form-label i {
  color: var(--color-text-muted);
  width: 16px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--color-bg-input);
  color: var(--color-text);
  transition: all var(--transition);
  font-family: inherit;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--color-error);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-feedback {
  font-size: 0.8rem;
  margin-top: var(--space-1);
  display: none;
  color: var(--color-error);
}
.form-feedback.error {
  display: block;
}

/* --- Hours --- */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  max-width: 900px;
  margin: 0 auto;
}
.hours-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition);
}
.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.hours-card i {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.hours-card strong {
  display: block;
  font-size: 0.95rem;
}
.hours-card p {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  margin-top: var(--space-1);
}
.hours-card .highlight {
  color: var(--color-success);
  font-weight: var(--font-weight-semibold);
}

/* --- Products Page --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-4);
}
.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  transition: all var(--transition-bounce);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}
.product-card .product-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.6rem;
  color: var(--color-accent);
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}
.product-card .product-desc {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  margin-bottom: var(--space-3);
  flex: 1;
}
.product-card .product-features {
  text-align: left;
  margin-bottom: var(--space-4);
}
.product-card .product-features li {
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--color-text-soft);
}
.product-card .product-features li i {
  color: var(--color-success);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.product-card .product-price {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.product-card .btn {
  width: 100%;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* --- Price Table --- */
.price-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.price-table thead {
  background: var(--color-primary);
  color: #fff;
}
.price-table thead th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: var(--font-weight-semibold);
}
.price-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-card);
}
.price-table tbody tr:last-child {
  border-bottom: none;
}
.price-table tbody td {
  padding: var(--space-3) var(--space-5);
  color: var(--color-text-soft);
}
.price-table tbody td:first-child {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}
.price-table tbody td strong {
  color: var(--color-text);
}
.price-table .price-total td {
  background: var(--color-accent-soft);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}
.price-table .price-total td:last-child {
  color: var(--color-accent);
}
.price-note {
  text-align: center;
  margin-top: var(--space-4);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.price-note i {
  color: var(--color-accent);
  margin-right: var(--space-2);
}

@media screen and (max-width: 768px) {
  .price-table {
    font-size: 0.8rem;
  }
  .price-table thead th,
  .price-table tbody td {
    padding: var(--space-2) var(--space-3);
  }
  .price-table .btn-sm {
    padding: var(--space-1) var(--space-3);
    font-size: 0.7rem;
    min-height: 32px;
  }
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-7);
}
.legal-section {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}
.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
}
.legal-section h2 i {
  color: var(--color-accent);
  margin-right: var(--space-2);
}
.legal-section p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}
.legal-section ul {
  list-style: none;
}
.legal-section ul li {
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-soft);
  font-size: 0.9rem;
}
.legal-section ul li i {
  color: var(--color-accent);
  font-size: 0.8rem;
}
.legal-highlight {
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-6);
  color: var(--color-text);
}
.legal-highlight i {
  color: var(--color-accent);
  margin-right: var(--space-2);
}

/* --- Error Pages --- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.error-content {
  max-width: 500px;
}
.error-icon {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.error-icon.success {
  color: var(--color-success);
}
.error-icon i.fa-spin {
  animation: spin 2s linear infinite;
}
.error-code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: var(--font-weight-black);
  color: var(--color-accent);
  line-height: 1;
}
.error-page h1 {
  font-size: 1.8rem;
  margin: var(--space-2) 0 var(--space-3);
}
.error-page p {
  color: var(--color-text-soft);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto var(--space-6);
}
.error-page p strong {
  color: var(--color-text);
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* --- Responsive pages --- */
@media screen and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .hours-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .about-stats {
    justify-content: center;
  }
  .contact-form-wrapper {
    padding: var(--space-5);
  }
  .contact-method {
    padding: var(--space-3) var(--space-4);
  }
}

@media screen and (max-width: 480px) {
  .hours-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .contact-map iframe {
    height: 180px;
  }
  .contact-form-wrapper {
    padding: var(--space-4);
  }
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .error-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-search {
  max-width: 500px;
  margin: 0 auto 24px;
}

.search-bar {
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.search-bar:focus-within {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.search-bar i {
  color: var(--color-text-muted);
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.search-bar input::placeholder {
  color: var(--color-text-muted);
}

#clearSearch {
  cursor: pointer;
  display: none;
  color: var(--color-text-muted);
  transition: var(--transition);
  background: none;
  border: none;
  padding: 4px;
}

#clearSearch:hover {
  color: var(--color-error);
}

.blog-search-stats {
  text-align: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: none;
}

.blog-search-stats.show {
  display: block;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  display: none;
}

.no-results.show {
  display: block;
}

.no-results i {
  font-size: 3rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.no-results h3 {
  margin-bottom: 4px;
}

.no-results p {
  color: var(--color-text-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-bounce);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .blog-content {
  padding: 24px;
}

.blog-card .blog-category {
  display: inline-block;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card .blog-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.blog-card .blog-content p {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.blog-card .blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.blog-card .blog-meta i {
  margin-right: 4px;
}

.read-more-btn {
  color: var(--color-accent);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.read-more-btn:hover {
  gap: 12px;
}

.blog-expanded {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.blog-card.expanded .blog-expanded {
  display: block;
}

.blog-expanded p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.blog-expanded .btn {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ============================================================
   INDEX — FULL-SCREEN SECTIONS
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 40px;
  background: var(--color-gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(99, 102, 241, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

/* Showcase */
.showcase {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-bg-soft);
}

/* Process */
.process {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-bg);
}

/* Services Grid */
.services {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-bg-soft);
}

/* Portfolio Preview */
.portfolio-preview {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-bg);
}

/* Testimonials */
.testimonials {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-bg-soft);
}

/* FAQ */
.faq {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-bg);
}

/* CTA Final */
.cta-final {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-gradient-hero);
  color: #fff;
  text-align: center;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 40px;
  }
  .showcase,
  .services,
  .portfolio-preview {
    min-height: auto;
    padding: 60px 0;
  }
  .process,
  .testimonials,
  .faq {
    min-height: auto;
    padding: 60px 0;
  }
  .cta-final {
    min-height: 50vh;
    padding: 60px 0;
  }
}

/* ============================================================
   FULL-SCREEN PAGES
   ============================================================ */

/* Páginas de serviço */
.service-page .page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 0 40px;
}

.service-page .section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.service-page .section-soft {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Sobre */
.about-page .section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Portfólio */
.portfolio-page .section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Blog */
.blog-page .section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Contactos */
.contact-page .section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Preços */
.prices-page .section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .service-page .section,
  .service-page .section-soft,
  .about-page .section,
  .portfolio-page .section,
  .blog-page .section,
  .contact-page .section,
  .prices-page .section {
    min-height: auto;
    padding: 40px 0;
  }
  .service-page .page-hero {
    min-height: 50vh;
    padding: calc(var(--header-height) + 20px) 0 30px;
  }
}
