/**
 * Estilos principais para o site da Gráfica AMEI
 * Autor: Manus AI
 * Data: Maio 2025
 */

/* Importação de estilos base */
@import 'colors.css';
@import 'typography.css';

/* Reset e estilos base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: var(--lh-base);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Container e grid */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
}

/* Utilitários */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-justify { text-align: justify; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 2rem; padding-bottom: 2rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 2rem; padding-right: 2rem; }

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

.section-header {
  margin-bottom: 3rem;
}

.section-header .subtitle {
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-weight: var(--fw-medium);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-dark);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline-light:hover {
  background-color: var(--text-light);
  color: var(--secondary);
}

/* Top Bar */
.top-bar {
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

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

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Header */
.main-header {
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: var(--neutral-light);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--secondary);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-light);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  
  .dropdown-menu li a {
    padding-left: 2rem;
  }
  
  .cta-button {
    margin-left: 1rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .logo {
    flex: 1;
  }
  
  .cta-button {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.hero-content .subtitle {
  margin-bottom: 2rem;
  color: var(--text-light);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.hero-prev,
.hero-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
  background-color: var(--primary);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot.active {
  background-color: var(--primary);
}

@media (max-width: 768px) {
  .hero-slide {
    height: 500px;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    height: 400px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.service-card .btn-text {
  color: var(--primary);
  font-weight: var(--fw-medium);
  position: relative;
  display: inline-block;
}

.service-card .btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.service-card .btn-text:hover::after {
  width: 100%;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Sobre Nós */
.about-section {
  position: relative;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-images {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-image {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: var(--fw-medium);
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-images, .about-text {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about-images {
    flex-direction: column;
  }
  
  .about-image {
    width: 100%;
  }
}

/* Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.quantity {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Depoimentos */
.testimonials-section {
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.testimonial-rating {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.1;
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: var(--fw-semibold);
  margin-bottom: 0.25rem;
}

.author-company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary);
  color: var(--text-dark);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--neutral);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--primary);
}

/* Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-title {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.gallery-category {
  color: var(--primary);
  font-size: 0.9rem;
}

.gallery-icon {
  margin-bottom: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

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

.cta-content h2 {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.cta-content p {
  margin-bottom: 2rem;
  color: var(--text-light);
  opacity: 0.9;
}

/* Footer */
.main-footer {
  background-color: var(--secondary-dark);
  color: var(--text-light);
  padding: 5rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
}

.footer-about p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.25rem;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  background-color: var(--primary);
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Estilo para a assinatura do desenvolvedor */
.developer-signature {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-right: auto;
}

.developer-signature a {
  font-family: 'Pacifico', cursive, 'Brush Script MT', 'Brush Script Std', cursive;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  transform: rotate(-1deg);
  letter-spacing: 0.5px;
}

.developer-signature a:hover {
  color: var(--primary);
  opacity: 1;
}

.developer-signature a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.developer-signature a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .developer-signature {
    margin: 0 auto 0.5rem;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

/* Página de Contato */
.contact-section {
  position: relative;
}

.contact-info-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: var(--text-muted);
}

.contact-form-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--fw-medium);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--neutral);
  background-color: var(--bg-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid var(--neutral);
  background-color: var(--bg-light);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Utilitários adicionais */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent-light); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }
.text-muted { color: var(--text-muted); }

.shadow-sm { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

.rounded { border-radius: 4px; }
.rounded-lg { border-radius: 8px; }
.rounded-full { border-radius: 9999px; }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }


/* Estilos para Centralizar a Seção Newsletter */
.newsletter-section {
  padding: 3rem 0; /* Ajuste de padding se necessário */
}

.newsletter-content {
  display: flex;
  flex-direction: column; /* Empilha texto e formulário verticalmente */
  align-items: center; /* Centraliza os itens horizontalmente */
  text-align: center; /* Centraliza o texto dentro de .newsletter-text */
  gap: 1.5rem; /* Espaço entre o texto e o formulário */
}

.newsletter-text {
  max-width: 600px; /* Limita a largura do texto para melhor leitura */
}

.newsletter-form .form-group {
  display: flex;
  justify-content: center; /* Centraliza o input e botão dentro do form-group */
  align-items: center; /* Alinha verticalmente input e botão */
  gap: 0.5rem; /* Espaço entre input e botão */
  width: 100%; /* Garante que o form-group ocupe espaço */
  max-width: 500px; /* Define uma largura máxima para o formulário */
  margin: 0 auto; /* Centraliza o form-group se tiver largura máxima */
}

.newsletter-form .form-control {
  flex-grow: 1; /* Permite que o input cresça */
  min-width: 200px; /* Largura mínima para o input */
}

.newsletter-form .btn {
  flex-shrink: 0; /* Impede que o botão encolha */
}

/* Ajustes responsivos para o formulário */
@media (max-width: 576px) {
  .newsletter-form .form-group {
    flex-direction: column; /* Empilha input e botão em telas pequenas */
    gap: 1rem;
    max-width: 100%; /* Ocupa toda a largura */
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    width: 100%; /* Input e botão ocupam toda a largura */
  }
}

/* Importação da fonte Pacifico do Google Fonts para a assinatura */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');



/* Ajuste para centralizar o copyright no rodapé (telas maiores) */
.footer-bottom .copyright {
  text-align: center;
  flex-grow: 1; /* Permite que o elemento cresça e ocupe o espaço disponível, ajudando na centralização entre os outros itens */
}




/* Missão, Visão e Valores (Princípios) */
.mission-vision-values {
  /* Existing styles */
}

.principles-content .row {
  /* Ensure alignment if needed */
}

.principle-card {
  background-color: var(--bg-light); /* Or var(--bg-white) if preferred */
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center; /* Center icon and title */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards in the same row have equal height */
  display: flex; /* Use flexbox for better alignment */
  flex-direction: column; /* Stack elements vertically */
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.principle-icon {
  margin: 0 auto 1.5rem; /* Center horizontally and add bottom margin */
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-rgb), 0.1); /* Lighter primary background */
  color: var(--primary); /* Example icon color */
  border-radius: 50%; /* Make it circular */
  font-size: 1.8rem; /* Adjust icon size */
}

.principle-card h3.heading-4 {
  margin-bottom: 1rem;
  color: var(--secondary); /* Match heading color */
}

.principle-card p.body-text {
  color: var(--text-muted); /* Match paragraph color */
  text-align: justify; /* Keep text justified as per original */
  flex-grow: 1; /* Allow paragraph to take remaining space */
}

/* Responsive adjustments (already handled by col-* classes, but can add specifics if needed) */
@media (max-width: 767px) {
  .principle-card {
    /* margin-bottom: 1.5rem; Already handled by mb-4 class */
  }
}




/* Nossa Equipe - Ajustes */
.team-section {
  /* Existing styles */
}

.team-content {
  /* Existing styles */
}

.team-image-main.mx-auto {
  /* Bootstrap class handles centering */
}

.team-description {
  background-color: var(--bg-light); /* Match other cards or use var(--bg-white) */
  padding: 2rem; /* Add padding inside the card */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow like other cards */
  /* max-width: 800px; Already set inline, but could be moved here */
  /* margin: 2rem auto 0; Adjust top margin if needed, mx-auto handles horizontal centering */
}

.team-description p.body-text {
  /* Keep text justified as it was */
  text-align: justify;
  margin-bottom: 1rem; /* Ensure spacing between paragraphs */
}

.team-description p.body-text:last-child {
  margin-bottom: 0; /* Remove bottom margin from the last paragraph */
}




/* --- REVISÃO: Estilos para a Seção Nossa Equipe --- */

/* Garante que o container flex centralize os itens */
.team-content.d-flex.flex-column.align-items-center {
    /* As classes Bootstrap já devem fazer isso, mas reforçamos se necessário */
}

/* Estilo do card para a descrição da equipe */
.team-description {
    background-color: var(--bg-light); /* Fundo claro, consistente com outros cards */
    padding: 2rem;                     /* Espaçamento interno */
    border-radius: 8px;                /* Cantos arredondados */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra sutil */
    /* max-width e width são definidos inline no HTML para controle específico */
    margin-top: 2rem; /* Garante espaço acima do card de texto (ajustado de mt-5 para consistência) */
}

/* Estilo para os parágrafos dentro do card */
.team-description p.body-text {
    text-align: justify; /* Mantém justificado */
    margin-bottom: 1rem; /* Espaço entre parágrafos */
    color: var(--text-muted); /* Cor do texto padrão para parágrafos */
}

/* Remove margem inferior do último parágrafo */
.team-description p.body-text:last-child {
    margin-bottom: 0;
}

/* --- FIM REVISÃO: Estilos para a Seção Nossa Equipe --- */




/* --- REVISÃO FINAL: Estilos para a Seção Nossa Equipe (Estrutura Replicada) --- */

/* Garante que o container text-center funcione como esperado */
.text-center {
    text-align: center;
}

/* Estilo para a imagem (centralizada via inline-block e text-align: center no pai) */
.team-image-main {
    /* Estilos inline: display: inline-block; max-width: 800px; margin-bottom: 2rem; */
}

/* Estilo do card para a descrição da equipe (centralizado via margin: 0 auto) */
.team-description {
    background-color: var(--bg-light); /* Fundo claro */
    padding: 2rem;                     /* Espaçamento interno */
    border-radius: 8px;                /* Cantos arredondados */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra sutil */
    /* max-width e margin são definidos inline no HTML */
    text-align: justify; /* Alinha o texto interno */
}

/* Estilo para os parágrafos dentro do card */
.team-description p.body-text {
    margin-bottom: 1rem; /* Espaço entre parágrafos */
    color: var(--text-muted);
}

/* Remove margem inferior do último parágrafo */
.team-description p.body-text:last-child {
    margin-bottom: 0;
}

/* --- FIM REVISÃO FINAL --- */




/* --- Estilos para a Seção Nossa Infraestrutura (Cards) --- */

/* Centralização do texto do Parque Gráfico Moderno */
.infrastructure-text.text-center {
    /* Estilos inline: max-width: 800px; margin: 0 auto 3rem auto; */
    text-align: center; /* Garante centralização do texto interno se necessário */
}

.infrastructure-text h3.heading-3 {
    margin-bottom: 1rem; /* Espaço abaixo do título */
}

/* Container dos cards de features */
.infrastructure-features-container .row {
    /* A classe justify-content-center já centraliza os cards na linha */
}

/* Estilo para os cards de features (serviços) */
.feature-card {
    background-color: var(--bg-light); /* Fundo claro */
    padding: 2rem;                     /* Espaçamento interno */
    border-radius: 8px;                /* Cantos arredondados */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra sutil */
    text-align: center;                /* Centraliza ícone e título */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;                      /* Garante altura igual (com h-100) */
    display: flex;                     /* Flexbox para alinhamento interno */
    flex-direction: column;            /* Empilha ícone e texto */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Ícone dentro do card */
.feature-card .feature-icon {
    margin: 0 auto 1.5rem; /* Centraliza e adiciona margem inferior */
    width: 60px;           /* Tamanho do ícone */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--primary-rgb), 0.1); /* Fundo levemente colorido */
    color: var(--primary);     /* Cor do ícone */
    border-radius: 50%;      /* Ícone circular */
    font-size: 1.8rem;       /* Tamanho da fonte do ícone */
}

/* Texto dentro do card */
.feature-card .feature-text {
    flex-grow: 1; /* Faz o texto ocupar espaço restante */
}

.feature-card .feature-text h4.heading-5 {
    margin-bottom: 0.5rem; /* Espaço abaixo do título do card */
    color: var(--secondary); /* Cor do título */
}

.feature-card .feature-text p.body-text {
    color: var(--text-muted); /* Cor do texto descritivo */
    font-size: 0.9rem;      /* Tamanho da fonte */
    text-align: center;     /* Centraliza o texto do parágrafo */
}

/* --- FIM Estilos Infraestrutura --- */


/* --- REVISÃO: Estilos para Cards Quadrados na Infraestrutura --- */

/* Estilo para os cards de features (serviços) - Tentativa Quadrada */
.feature-card {
    background-color: var(--bg-light);
    padding: 1.5rem; /* Ajustar padding para card quadrado */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza conteúdo horizontalmente */
    justify-content: center; /* Centraliza conteúdo verticalmente */
    aspect-ratio: 1 / 1; /* Força a proporção quadrada */
    /* h-100 é removido implicitamente pela definição de aspect-ratio */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Ícone dentro do card */
.feature-card .feature-icon {
    margin: 0 auto 1rem; /* Margem inferior menor */
    width: 50px; /* Ajustar tamanho do ícone */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem; /* Ajustar tamanho da fonte do ícone */
    flex-shrink: 0; /* Impede que o ícone encolha */
}

/* Texto dentro do card */
.feature-card .feature-text {
    /* flex-grow: 1; Removido pois o conteúdo é centralizado */
}

.feature-card .feature-text h4.heading-5 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 1rem; /* Ajustar tamanho se necessário */
}

.feature-card .feature-text p.body-text {
    color: var(--text-muted);
    font-size: 0.85rem; /* Ajustar tamanho se necessário */
    text-align: center;
    line-height: 1.3; /* Ajustar espaçamento entre linhas */
}

/* --- FIM REVISÃO --- */

/* Estilos para a Logo */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.logo-img {
    height: 80px; /* Aumentando a altura da logo */
    width: auto;
    max-width: 240px; /* Largura máxima para evitar que fique muito larga */
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* Um pouco menor em telas menores */
    }
}

