/* Estilos para o site repaginado da Grafik Online */
:root {
  --primary-color: #1A3E6C;
  --secondary-color: #FF6B35;
  --accent-color: #00cc99;
  --text-color: #333333;
  --light-color: #ffffff;
  --dark-color: #222222;
  --gray-color: #f5f5f5;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

/* Estilos para a página inicial */
.home-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: var(--light-color);
  box-shadow: var(--shadow);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo-container {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

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

.footer-logo-img {
  max-height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 30px;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-color);
}

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

.main-nav a:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 20px;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* Hero Section com Slider */
.hero-section {
  padding-top: 90px;
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--light-color);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button a {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.cta-button a:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--light-color);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-section {
  background-color: var(--gray-color);
}

.about-section h2,
.services-section h2,
.gallery-section h2,
.testimonials-section h2,
.contact-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  color: var(--primary-color);
}

.about-section h2::after,
.services-section h2::after,
.gallery-section h2::after,
.testimonials-section h2::after,
.contact-section h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.mission-vision-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.mvv-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mvv-card h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 24px;
  position: relative;
  padding-bottom: 15px;
}

.mvv-card h3::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 0;
}

.mvv-card ul {
  padding-left: 20px;
}

.mvv-card li {
  margin-bottom: 10px;
}

.services-section {
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--gray-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 22px;
}

.service-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 20px;
  font-weight: 500;
  transition: var(--transition);
}

.service-link:hover {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

/* Galeria de Imagens */
.gallery-section {
  background-color: var(--gray-color);
  padding: 80px 0;
}

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

.gallery-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-tab {
  padding: 8px 20px;
  background-color: var(--light-color);
  color: var(--text-color);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay-content {
  color: var(--light-color);
  text-align: center;
}

.gallery-overlay-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.view-more-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--secondary-color);
  color: var(--light-color);
  border-radius: 20px;
  margin-top: 10px;
  transition: var(--transition);
}

.view-more-btn:hover {
  background-color: var(--primary-color);
}

/* Vídeos */
.video-section {
  background-color: var(--light-color);
  padding: 80px 0;
}

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

.video-container h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  color: var(--primary-color);
}

.video-container h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  background-color: var(--secondary-color);
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 18px solid var(--primary-color);
  border-bottom: 10px solid transparent;
  margin-left: 5px;
}

.video-content {
  padding: 20px;
  background-color: var(--light-color);
}

.video-content h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 18px;
}

.video-content p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-color);
}

/* Depoimentos */
.testimonials-section {
  background-color: var(--gray-color);
  padding: 80px 0;
}

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

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

.testimonial-slide {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 50px;
  color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
}

.testimonial-content::before {
  top: -20px;
  left: -15px;
}

.testimonial-content::after {
  bottom: -40px;
  right: -15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

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

.contact-section {
  background-color: var(--light-color);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.contact-item {
  flex: 1;
  min-width: 250px;
  background-color: var(--gray-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid var(--primary-color);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.contact-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: var(--light-color);
  padding: 10px 25px;
  border-radius: 30px;
  margin-top: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.whatsapp-button:hover {
  background-color: #128C7E;
  color: var(--light-color);
  transform: scale(1.05);
}

.map-container {
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-links h3 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--light-color);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

.footer-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Instagram Feed */
.instagram-feed {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

.instagram-container h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  color: var(--primary-color);
}

.instagram-container h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.instagram-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.instagram-icon {
  color: var(--light-color);
  font-size: 30px;
}

.instagram-follow {
  text-align: center;
  margin-top: 30px;
}

.instagram-follow a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.instagram-follow a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    padding: 10px;
  }
  
  .main-nav ul {
    margin-top: 15px;
  }
  
  .main-nav li {
    margin: 0 10px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .section-container {
    padding: 60px 20px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .mission-vision-values,
  .services-grid,
  .contact-info {
    flex-direction: column;
  }
  
  .mvv-card,
  .service-card,
  .contact-item {
    margin-bottom: 20px;
  }
  
  .gallery-grid,
  .video-grid,
  .instagram-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: 5px 0;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .gallery-grid,
  .video-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}

