/* ==========================================================================
   FILIBRANCA - Artes de Impressão, Lda.
   Styles for faithful website replica
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-primary: #4e283f;       /* Brand deep wine / purple */
  --color-primary-dark: #3b2e36;  /* Footer & dark background */
  --color-secondary: #67b1e4;     /* Sky blue accent */
  --color-secondary-hover: #4fa0d8;
  --color-text-dark: #333333;
  --color-text-muted: #6c757d;
  --color-text-light: #a7a7a7;
  --color-topbar-bg: #1e1e1e;
  --color-bg-light: #f9f9f9;
  --color-border: #e9ecef;
  
  --font-heading: 'Maven Pro', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --container-max-width: 1170px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* Accessibility / Screen Reader Only Utility for SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-topbar-bg);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-social a {
  color: #ffffff;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0.85;
}

.top-bar-social a:hover {
  color: var(--color-secondary);
  opacity: 1;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  transition: var(--transition);
}

.top-bar-contact-item i {
  color: var(--color-secondary);
  font-size: 0.9rem;
}

.top-bar-contact-item a {
  color: #ffffff;
}

.top-bar-contact-item a:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   MAIN HEADER / NAVIGATION
   ========================================================================== */
.main-header {
  background-color: #ffffff;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.main-header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.35s ease-out;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #222222;
  text-transform: capitalize;
  padding: 10px 0;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--color-primary);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #222222;
  cursor: pointer;
  padding: 5px;
}

/* Offcanvas Mobile Menu */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 10000;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  padding: 30px 25px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.offcanvas-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offcanvas-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  padding: 8px 0;
  border-bottom: 1px solid #f2f2f2;
  display: block;
}

.offcanvas-link.active,
.offcanvas-link:hover {
  color: var(--color-secondary);
}

.offcanvas-contact {
  margin-top: auto;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.offcanvas-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   PAGE BANNER / BREADCRUMBS
   ========================================================================== */
.page-title-section {
  padding: 40px 0 20px 0;
  background-color: #ffffff;
}

.page-title-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.page-title-heading span {
  color: var(--color-secondary);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--color-secondary);
}

.breadcrumbs a {
  color: var(--color-secondary);
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.breadcrumbs .separator {
  color: #999999;
}

.breadcrumbs .current {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Featured Top Banner on Inner Pages */
.inner-hero-banner {
  margin: 25px 0 40px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.inner-hero-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ==========================================================================
   HOMEPAGE HERO SLIDESHOW
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background-color: #f6f6f6;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
  max-height: 650px;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 550px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slider Controls & Thumbnails */
.slider-thumbnails-wrapper {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.slider-thumbnails {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.thumb-btn {
  width: 90px;
  height: 55px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  transition: var(--transition);
  opacity: 0.7;
}

.thumb-btn.active,
.thumb-btn:hover {
  border-color: var(--color-secondary);
  opacity: 1;
  transform: scale(1.04);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Partner Logo Bar below Slider */
.partner-logo-bar {
  padding: 25px 0 10px 0;
  text-align: center;
  background: #ffffff;
}

.partner-logo-bar img {
  max-width: 320px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION HEADINGS & DECORATION
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.section-title span {
  color: var(--color-secondary);
}

/* Decorative Wavy Lines */
.wavy-line {
  display: inline-block;
  width: 50px;
  height: 12px;
  margin-top: 10px;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 12px 6px;
  background-image: radial-gradient(circle at 6px 0px, transparent 4px, #cccccc 5px, transparent 6px),
                    radial-gradient(circle at 0px 6px, transparent 4px, #cccccc 5px, transparent 6px);
  opacity: 0.8;
}

.wavy-line-double {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 10px auto 0 auto;
}

.wavy-line-double span {
  display: block;
  width: 45px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q 5 0, 10 4 T 20 4 T 30 4 T 40 4' fill='none' stroke='%23d1d5db' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 6px;
}

/* ==========================================================================
   A NOSSA VISÃO SECTION
   ========================================================================== */
.vision-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.vision-content {
  max-width: 920px;
  margin: 0 auto;
}

.vision-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555555;
  margin-top: 25px;
  margin-bottom: 35px;
}

.btn-primary-blue {
  display: inline-block;
  background-color: var(--color-secondary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 3px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(103, 177, 228, 0.35);
}

.btn-primary-blue:hover {
  background-color: var(--color-secondary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(103, 177, 228, 0.45);
}

/* ==========================================================================
   A NOSSA CRIATIVIDADE SECTION
   ========================================================================== */
.creativity-section {
  padding: 50px 0 70px 0;
  background-color: #ffffff;
}

.creativity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.creativity-card {
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.creativity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #e2e8f0;
}

.creativity-card-image {
  background: #f8fafc;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.creativity-card-image img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.creativity-card:hover .creativity-card-image img {
  transform: scale(1.06);
}

.creativity-card-body {
  padding: 25px 20px 30px 20px;
  background: #ffffff;
  flex-grow: 1;
}

.creativity-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 5px;
}

/* ==========================================================================
   ALGUNS TRABALHOS (PORTFOLIO GALLERY)
   ========================================================================== */
.works-section {
  padding: 60px 0 80px 0;
  background-color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 35px;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #fdfdfd;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-thumb {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.5s ease;
}

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

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

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

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* Gallery Pagination */
.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 45px;
}

.page-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f3f5;
  color: #495057;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover {
  background: #e2e8f0;
  color: #212529;
}

.page-btn.active {
  background-color: var(--color-secondary);
  color: #ffffff;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
  z-index: 100000;
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* ==========================================================================
   SOBRE NÓS PAGE
   ========================================================================== */
.about-section {
  padding: 30px 0 80px 0;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

.about-text {
  font-size: 1.05rem;
  line-height: 2;
  color: #4a4a4a;
  text-align: justify;
  margin-bottom: 25px;
}

/* ==========================================================================
   SERVIÇOS PAGE
   ========================================================================== */
.services-section {
  padding: 30px 0 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #dbeafe;
}

.service-card-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 30px 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.service-card-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #666666;
  margin-top: 15px;
}

/* ==========================================================================
   CONTACTOS PAGE
   ========================================================================== */
.contacts-section {
  padding: 30px 0 80px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-info-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 4px;
  transition: var(--transition);
}

.contact-info-icon {
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.contact-info-desc a {
  color: #555555;
}

.contact-info-desc a:hover {
  color: var(--color-secondary);
}

/* Contact Form Section */
.contact-form-wrapper {
  max-width: 820px;
  margin: 0 auto 60px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #333333;
  background-color: #fafafa;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(103, 177, 228, 0.2);
}

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

.form-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

/* reCAPTCHA Mockup Box */
.recaptcha-box {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 10px 16px;
  box-shadow: 0 0 4px rgba(0,0,0,0.08);
}

.recaptcha-checkbox {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--color-secondary);
}

.recaptcha-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  margin-right: 20px;
}

.recaptcha-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  color: #888888;
}

.recaptcha-brand i {
  font-size: 1.3rem;
  color: #1a73e8;
  margin-bottom: 2px;
}

/* Map Section */
.map-section {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   QUALIFICAÇÃO DA FILIBRANCA PAGE
   ========================================================================== */
.qualificacao-section {
  padding: 30px 0 80px 0;
}

.qualificacao-banner {
  text-align: center;
  margin-bottom: 40px;
}

.qualificacao-banner img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.qualificacao-card {
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 35px 40px;
  margin-bottom: 30px;
}

.qualificacao-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.qualificacao-table th,
.qualificacao-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
}

.qualificacao-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  width: 32%;
  background: #fafafa;
}

.qualificacao-table td {
  color: #444444;
}

.qualificacao-subtitle {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
}

.qualificacao-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  margin-top: 15px;
}

.qualificacao-list li {
  position: relative;
  padding-left: 24px;
  color: #495057;
  font-size: 0.98rem;
  line-height: 1.6;
}

.qualificacao-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 70px 0 35px 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 5px;
}

.footer-brand .brand-fili {
  color: #ffffff;
  font-weight: 900;
}

.footer-brand .brand-branca {
  color: #e5e5e5;
  font-weight: 400;
  font-size: 1.5rem;
  margin-left: 2px;
}

.newsletter-box {
  margin-top: 5px;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 10px 16px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: #bbbbbb;
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
  border-color: var(--color-secondary);
}

.newsletter-btn {
  background: var(--color-secondary);
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.copyright-text {
  font-size: 0.88rem;
  color: #999999;
  margin-top: 15px;
  line-height: 1.6;
}

.copyright-text a {
  color: var(--color-secondary);
  font-weight: 600;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-contact-info {
  line-height: 1.8;
  color: #cccccc;
}

.footer-contact-info strong {
  color: #ffffff;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

.footer-contact-info a {
  color: #cccccc;
}

.footer-contact-info a:hover {
  color: var(--color-secondary);
}

.footer-partners {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-partners img {
  max-width: 320px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
}

.footer-link-qualificacao {
  color: #e0e0e0;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-link-qualificacao:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #2e7d32;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  font-family: var(--font-body);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .creativity-grid,
  .services-grid,
  .gallery-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .qualificacao-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-contact {
    display: none;
  }
  
  .top-bar .container {
    justify-content: center;
  }
  
  .creativity-grid,
  .services-grid,
  .gallery-grid,
  .contact-info-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-title-heading {
    font-size: 2.2rem;
  }
  
  .hero-slider,
  .slider-track {
    height: 380px;
    min-height: 380px;
  }
  
  .slider-thumbnails-wrapper {
    display: none;
  }
  
  .contact-form-wrapper {
    padding: 25px 20px;
  }
  
  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary-blue {
    width: 100%;
    text-align: center;
  }
  
  .qualificacao-card {
    padding: 20px 15px;
  }
  
  .qualificacao-table th {
    width: 40%;
  }
}
