/* Extracted CSS from index.html - do NOT edit inline.
   Original styles were moved here for maintainability. */

html {
  scroll-behavior: smooth;
}


/* --- Extracted style blocks --- */

@font-face {
      font-family: 'FontAwesome';
      src: url('fonts/fontawesome-webfont.eot?v=4.7.0');
      src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
           url('fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
           url('fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
           url('fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
           url('fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
      font-weight: normal;
      font-style: normal;
    }
    .fa {
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    /* Critical icons used in site */
    .info-icon { font-family: 'FontAwesome' !important; }

.fa { display: inline-block; font: normal normal normal 14px/1 FontAwesome; }

@keyframes simpleCurtain { 0% {opacity:1;} 100% {opacity:0;} }
  @keyframes simpleLight { 0% {transform:scale(0.5);opacity:0;} 50% {opacity:0.5;} 100% {transform:scale(1.5);opacity:0;} }
  @keyframes simpleFadeIn { to {opacity:1;} }

    /* Flexbox responsivo */
.section {
    display: flex;
    flex-direction: column; /* "Empilha" em mobile */
}

@media (min-width: 768px) {
    .section {
        flex-direction: row; /* Lateral em telas maiores */
    }
}

/* CSS Grid responsivo */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

body.page-home {
  animation: fadeIn 1s ease-in-out;
  padding-top: 100px;
}
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .footer-logo {
      height: 30px;
      margin: 0 10px;
      vertical-align: middle;
      transition: transform 0.3s ease;
    }
    .footer-logo:hover {
      transform: scale(1.1);
    }

/* ===== Home page section helpers ===== */
#nosso-trabalho {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#nosso-trabalho .bg-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

#nosso-trabalho .bg-blob--1 {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(197, 152, 27, 0.03) 0%, rgba(232, 199, 102, 0.05) 100%);
}

#nosso-trabalho .bg-blob--2 {
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(197, 152, 27, 0.02) 0%, rgba(232, 199, 102, 0.04) 100%);
}

#nosso-trabalho .work-container {
  position: relative;
  z-index: 1;
}

#nosso-trabalho .section-title {
  font-size: clamp(28px, 8vw, 42px);
  margin-bottom: clamp(30px, 8vw, 60px);
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
}

#nosso-trabalho .section-title strong:first-child {
  color: var(--text-dark);
  font-weight: 800;
}

#nosso-trabalho .section-title strong:nth-child(2) {
  color: var(--primary-gold);
  font-weight: 700;
}

#nosso-trabalho .section-title .section-underline {
  position: absolute;
  bottom: clamp(-10px, -2vw, -15px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 10vw, 100px);
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
  border-radius: 3px;
}

#portfolio {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.text-black {
  color: #000 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

    /* ajustes simples para mobile */
@media (max-width: 768px) {
        .gallery-grid { grid-template-columns: 1fr; gap: 15px; }
        .section { padding: 20px 0; }
        .footer-logo { height: 25px; }
        .floating-budget-button { bottom: 20px; right: 20px; padding: 10px 20px; font-size: 14px; }
        
        /* STEP 3: Halve mobile paddings for all sections (<768px) */
        #nosso-trabalho { padding: 50px 0 40px !important; }
        #portfolio { padding: 40px 0 !important; }
        .company-profile-section { padding: 3rem 1rem !important; }
        .contact-section { padding: 3rem 1rem !important; }
        .modern-footer { padding: 3rem 0 0 !important; }
        .templatemo-home { padding: 40px 0 !important; }
    }

/* MODERN HEADER - Fixed, Clean, Professional */
:root {
  --header-height: 90px;
  --gold: #D4AF37;
  --dark: #1a1a1a;
  --text-light: #666;
  --bg-light: rgba(255,255,255,0.95);
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-light);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.header-logo {
  height: 50px;
  width: auto;
}

.brand-info {
  flex: 1;
}

.brand-title {
  margin: 0 0 0.25rem 0;
  font-size: clamp(1.3rem, 5vw, 1.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.brand-subtitle {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-phrase {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 400px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icons {
  display: flex;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: black;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  transform: translateY(-1px);
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header-cta {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
  color: #111;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
  color: #000;
}

/* BODY PADDING (only for home page header) */
body.page-home {
  padding-top: var(--header-height);
  padding-bottom: 0;
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .header-left {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .brand-title {
    font-size: 1.6rem;
  }
  
  .brand-phrase {
    font-size: 0.9rem;
    text-align: center;
  }
  
  .contact-icons {
    order: -1;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .contact-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.5rem;
  }

  /* Mobile-only: ocultar informações de contato no header para evitar sobreposição */
  .modern-header .contact-icons {
    display: none !important;
  }

  .modern-header .header-cta {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  :root {
    --header-height: 120px;
  }

  body.page-home,
  body.page-contact {
    padding-top: var(--header-height);
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  :root {
    --header-height: 120px;
  }
  .modern-header {
    height: var(--header-height) !important;
  }
  body.page-home {
    padding-top: var(--header-height) !important;
  }
  .header-container {
    padding: 0.75rem 1.25rem;
    gap: 1rem;
  }
  .header-left {
    gap: 0.75rem;
  }
  .contact-icons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .contact-item {
    padding: 0.75rem 1.25rem;
    min-height: 44px;
    font-size: 0.9rem;
  }
  .header-cta {
    padding: 0.875rem 1.5rem;
    min-height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 160px;
  }
  .modern-header {
    height: var(--header-height) !important;
  }
  body.page-home {
    padding-top: var(--header-height) !important;
  }
  .header-container {
    flex-direction: column !important;
    padding: 0.5rem 0.75rem !important;
    gap: 0.75rem !important;
  }
  .header-left {
    order: 2;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
  }
  .header-logo {
    height: clamp(32px, 10vw, 40px) !important;
  }
  .brand-title {
    font-size: clamp(1.1rem, 8vw, 1.3rem) !important;
    margin: 0;
  }
  .brand-subtitle {
    font-size: clamp(0.7rem, 4vw, 0.8rem) !important;
    margin: 0;
  }
  .header-right {
    order: 1;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-icons {
    order: 2;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    padding: 1rem 1.25rem !important;
    min-height: 48px;
    font-size: clamp(0.85rem, 5vw, 0.95rem) !important;
    justify-content: flex-start !important;
    border-radius: 12px;
    width: 100%;
  }
  .contact-icon {
    width: 20px !important;
    height: 20px !important;
  }
  .header-cta {
    order: 3;
    padding: 1rem 2rem;
    min-height: 48px;
    font-size: clamp(0.95rem, 5vw, 1.05rem);
    width: 100%;
    max-width: 300px;
    align-self: center;
  }
}

@media (max-width: 360px) {
  .header-container {
    padding: 0.5rem 0.5rem !important;
  }
  .contact-item {
    padding: 0.875rem 1rem !important;
  }
}

/* ESTILO DO BOTÃO FLUTUANTE - MODERNO E DOURADO */
  .floating-budget-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #b88b22 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    border: 2px solid #ffd54f;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 999;
    transform: scale(1);
  }

  .floating-budget-button:hover {
    background: linear-gradient(135deg, #ffd54f 0%, #d4af37 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }

  .floating-budget-button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  /* Classe para esconder o botão */
  .floating-budget-button.hidden {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
  }

  /* RESPONSIVIDADE PARA MOBILE */
  @media (max-width: 768px) {
    .floating-budget-button {
      padding: 12px 22px;
      font-size: 14px;
      bottom: 20px;
      right: 20px;
    }
  }

/* ==============================
   Manutenção do estilo original
   ============================== */

/* OBS: Nenhuma cor ou estilo foi alterado em relação ao original.
   Apenas removi o botão, mantendo títulos e posicionamento. */

/* ===== VARIÁVEIS E CONFIGURAÇÕES GLOBAIS ===== */
    :root {
      --primary-gold: #c5981b;
      --secondary-gold: #e8c766;
      --dark-text: #2c3e50;
      --light-text: #7f8c8d;
      --card-bg: #ffffff;
      --shadow-light: 0 10px 30px rgba(0,0,0,0.08);
      --shadow-medium: 0 15px 40px rgba(0,0,0,0.12);
      --shadow-strong: 0 20px 50px rgba(0,0,0,0.15);
    }
    
    /* ===== LAYOUT E ESTRUTURA ===== */
    .service-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(240px, 1fr));
      gap: 14px;
      justify-items: center;
    }
    
    .service-col {
      width: 100%;
      padding: 0;
    }
    
    /* ===== CARDS MODERNOS ===== */
    .modern-service-card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 0;
      width: 100%;
      box-shadow: var(--shadow-light);
      text-align: center;
      border: 1px solid rgba(0,0,0,0.03);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }
    
    /* Efeito de brilho dourado no hover */
    .modern-service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.7s ease;
      z-index: 1;
    }
    
    /* Container de imagem com zoom */
    .image-container {
      position: relative;
      overflow: hidden;
      height: 240px;
    }
    
    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
      transform-origin: center;
    }
    
    /* Overlay gradiente na imagem */
    .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(transparent 0%, rgba(0,0,0,0.5) 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    /* Controles de Zoom */
    .zoom-controls {
      position: absolute;
      bottom: 10px;
      right: 10px;
      display: flex;
      gap: 8px;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 10;
    }
    
    .zoom-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }
    
    .zoom-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    /* Conteúdo do card */
    .card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;
    }
    
    /* ===== TIPOGRAFIA MODERNA ===== */
.modern-service-card h3 {
  text-transform: uppercase;
  margin: 0 0 15px;
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  color: var(--dark-text);
  letter-spacing: clamp(1px, 0.1em, 1.5px);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
    
    .modern-service-card h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
      transition: width 0.4s ease;
    }
    
    .modern-service-card p {
      color: var(--light-text);
      line-height: 1.7;
      font-size: 15px;
      margin-bottom: 0;
      transition: color 0.3s ease;
    }
    
    /* ===== EFEITOS DE INTERAÇÃO ===== */
    
    /* Hover para desktop */
    @media (hover: hover) {
      .modern-service-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-strong);
      }
      
      .modern-service-card:hover::before {
        left: 100%;
      }
      
      .modern-service-card:hover .image-overlay {
        opacity: 1;
      }
      
      .modern-service-card:hover .zoom-controls {
        opacity: 1;
      }
      
      .modern-service-card:hover h3::after {
        width: 80px;
      }
      
      .modern-service-card:hover h3 {
        color: var(--primary-gold);
      }
    }
    
    /* Estado ativo para mobile (toque) */
    .modern-service-card.active,
    .modern-service-card:active {
      transform: translateY(-8px);
      box-shadow: var(--shadow-medium);
    }
    
    .modern-service-card.active .zoom-controls,
    .modern-service-card:active .zoom-controls {
      opacity: 1;
    }
    
    .modern-service-card.active h3::after,
    .modern-service-card:active h3::after {
      width: 60px;
    }
    
    .modern-service-card.active h3,
    .modern-service-card:active h3 {
      color: var(--primary-gold);
    }
    
    /* ===== RESPONSIVIDADE ===== */
    @media (max-width: 1200px) {
      .service-row {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      .service-row {
        grid-template-columns: 1fr;
      }

      .image-container {
        height: 200px;
      }
      
      .zoom-controls {
        opacity: 1; /* Sempre visível em mobile para melhor UX */
        bottom: 8px;
        right: 8px;
      }
      
      .zoom-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
      }
    }
    
    /* ===== ANIMAÇÃO DE ENTRADA ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .modern-service-card {
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
    }
    
    .modern-service-card:nth-child(1) { animation-delay: 0.1s; }
    .modern-service-card:nth-child(2) { animation-delay: 0.2s; }
    .modern-service-card:nth-child(3) { animation-delay: 0.3s; }
    .modern-service-card:nth-child(4) { animation-delay: 0.4s; }

/* ======================
       ESTILOS DA GALERIA
       ====================== */
    .gallery-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
    .gallery-header { text-align: center; margin-bottom: 50px; }
.gallery-title { font: 800 clamp(22px, 7vw, 38px)/1.2 'Inter', sans-serif; letter-spacing: clamp(0.5px, 1vw, 1px); display: inline-block; position: relative; margin: 0; }
    .gallery-title .normal { color: #000; }
    .gallery-title .highlight { color: #c5981b; font-weight: 700; }
    .gallery-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: linear-gradient(90deg, #c5981b 0%, #e8c766 100%); }
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; justify-items: center; }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
    }
    .gallery-item { width: 280px; height: 300px; position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
    .gallery-item:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
    .gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-item:hover .gallery-img { transform: scale(1.05); }
    .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff; padding: 20px; transform: translateY(100%); transition: transform 0.3s ease; }
    .gallery-item:hover .gallery-overlay { transform: translateY(0); }
    .gallery-caption { font: 600 1.25rem/1.3 'Inter', sans-serif; margin-bottom: 10px; }
    .gallery-view-btn { background: linear-gradient(135deg, #c5981b, #e8c766); color: #fff; border: none; padding: 8px 16px; border-radius: 30px; font: 500 0.9rem 'Inter', sans-serif; cursor: pointer; transition: all 0.3s ease; }
    .gallery-view-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(197, 152, 27, 0.4); }
    .gallery-footer { text-align: center; margin-top: 50px; font: 1.1rem/1.5 'Inter', sans-serif; color: #c5981b; }

    /* ======================
       MODAL galeria
       ====================== */
    .modal { display: none; position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); animation: fadeIn 0.3s ease forwards; }
    .modal-content-container { display: flex; justify-content: center; align-items: center; height: 100%; position: relative; }
    .modal-content { max-width: 90%; max-height: 80vh; object-fit: contain; border: 2px solid #c5981b; border-radius: 8px; box-shadow: 0 0 40px rgba(197, 152, 27, 0.3); opacity: 0; transform: scale(0.95); transition: all 0.3s ease; }
    .modal.show .modal-content { opacity: 1; transform: scale(1); }
    .close { position: absolute; top: 30px; right: 40px; color: #c5981b; font-size: 40px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
    .close:hover { transform: rotate(90deg); color: #e8c766; }

    .prev, .next { position: absolute; top: 50%; transform: translateY(-50%); color: #c5981b; font-size: 50px; font-weight: 700; cursor: pointer; padding: 16px; background: rgba(0,0,0,0.3); border-radius: 50%; transition: all 0.3s ease; z-index: 1010; }
    .prev:hover, .next:hover { background: rgba(197, 152, 27, 0.2); color: #e8c766; }
    .prev { left: 40px; }
    .next { right: 40px; }

    /* Forçar exibição no mobile */
    @media (max-width: 768px) {
      .prev, .next { display: block; font-size: 40px; padding: 12px; }
    }

    #caption { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: #fff; font: 1.5rem/1.5 'Inter', sans-serif; text-shadow: 0 2px 5px rgba(0,0,0,0.5); padding: 10px; background: rgba(0,0,0,0.5); border-radius: 6px; }
    #imageCount { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); color: #e8c766; font: 1rem 'Inter', sans-serif; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

    /* ======================
       SEPARADOR MODELOS 3D
       ====================== */
    .models-header { text-align: center; margin: 60px 0 30px; }
.models-header h3 { font: 900 clamp(24px, 6vw, 32px)/1.3 'Inter', sans-serif; color: #000; margin-bottom: clamp(6px, 1.5vw, 8px); text-transform: uppercase; }
    .models-header p { font: 700 clamp(16px, 3vw, 18px)/1.4 'Inter', sans-serif; color: #c5981b; margin: 0; }

    /* ======================
       DESTAQUE MODELOS 3D NO MODAL
       ====================== */
    #modalModelsTitle {
      display: none; /* Escondido por padrão */
      position: absolute;
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
      font: 800 28px/1.3 'Inter', sans-serif;
      color: #c5981b;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
      padding: 8px 16px;
      border-radius: 8px;
      background: rgba(0,0,0,0.6);
      z-index: 1100;
      animation: fadeIn 0.4s ease forwards;
    }

    @media (max-width: 768px) {
      #modalModelsTitle {
        font-size: 20px;
        top: 60px;
        padding: 6px 12px;
      }
    }

/* VARIÁVEIS GLOBAIS */
  :root {
    --primary-gold: #d4af37;
    --gold-light: #f4e8c1;
    --gold-dark: #b8941f;
    --dark-bg: #0a0a0a;
    --light-bg: #ffffff;
    --card-bg: #fefefe;
    --text-dark: #1a1a1a;
    --text-medium: #444444;
    --text-light: #666666;
    --border-color: rgba(212, 175, 55, 0.15);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* SEÇÃO PRINCIPAL */
  .company-profile-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .company-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--primary-gold) 50%, 
      transparent 100%);
  }

  .profile-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  /* CABEÇALHO */
  .profile-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
  }

  .header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
  }

  .decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--primary-gold) 50%, 
      transparent 100%);
    opacity: 0.6;
  }

  .header-icon {
    width: 64px;
    height: 64px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold-light);
    color: var(--primary-gold);
  }

.profile-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

  .title-part-1 {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
  }

  .title-part-1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
  }

  .title-part-2 {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
  }

  .profile-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* CARTA DE APRESENTAÇÃO */
  .profile-content {
    display: grid;
    gap: 2.5rem;
  }

  .intro-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fcfcfc 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
  }

  .intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-dark));
  }

  .intro-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .intro-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    font-weight: 700;
  }

  .card-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0;
  }

  .text-bold {
    font-weight: 700 !important;
  }

  .card-body strong {
    color: var(--primary-gold);
    font-weight: 700;
  }

  .card-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
  }

  .badge {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
  }

  /* GRID DE INFORMAÇÕES */
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .info-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
  }

  .clickable-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .clickable-card:hover .info-content h4 {
    color: var(--primary-gold);
  }

  .info-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-gold);
    transition: var(--transition);
  }

  .info-card:hover .info-icon {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.1);
  }

  .info-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
  }

  .info-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .contact-numbers p {
    margin-bottom: 0.25rem;
    font-weight: 500;
  }

  .map-link {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: var(--transition);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    padding: 0.2rem 0.55rem;
  }

  .clickable-card:hover .map-link {
    transform: translateX(4px);
  }

  .info-border {
    position: absolute;
    bottom: 0;
    left: 1.75rem;
    right: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--gold-light) 50%, 
      transparent 100%);
    transition: var(--transition);
  }

  .info-card:hover .info-border {
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--primary-gold) 50%, 
      transparent 100%);
  }

  /* FRASE DE MISSÃO */
  .mission-statement {
    background: linear-gradient(135deg, #fffaf0 0%, #fef9e7 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--gold-light);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
  }

  .mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-gold), var(--gold-dark));
  }

  .quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--gold-light);
    opacity: 0.5;
  }

  .quote-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .mission-statement blockquote {
    color: #000 !important;
    font-weight: 700 !important;
    font-style: italic !important;
  }

  blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-gold);
    font-family: Georgia, serif;
    opacity: 0.3;
  }

  .quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }

  .author-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--primary-gold) 50%, 
      transparent 100%);
  }

  .quote-author span {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
  }

  /* BADGE DE QUALIDADE */
  .quality-badge {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 2px solid var(--primary-gold); /* borda dourada fixa */
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
    transition: var(--transition);
  }

  .quality-badge:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255, 255, 255, 0.5);
  }

  .quality-badge .badge-content h4 {
    text-align: center;
    font-weight: 700;
  }

  .badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
  }

  .badge-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
  }

  .badge-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
  }

  /* ANIMAÇÕES */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVIDADE */
  @media (max-width: 992px) {
    .profile-title {
      font-size: 2.8rem;
    }
    
    .info-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-statement {
      padding: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .company-profile-section {
      padding: 3rem 1rem;
    }
    
    .profile-title {
      font-size: 2.2rem;
    }
    
    .intro-card {
      padding: 2rem;
    }
    
    .info-grid {
      grid-template-columns: 1fr;
    }
    
    .mission-statement {
      padding: 2rem;
    }
    
    .header-decoration {
      gap: 1rem;
    }
    
    .decoration-line {
      width: 60px;
    }
    
    .header-icon {
      width: 56px;
      height: 56px;
    }
  }

  @media (max-width: 480px) {
    .profile-title {
      font-size: 1.8rem;
    }
    
    .intro-card {
      padding: 1.5rem;
    }
    
    .card-header {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    
    .mission-statement {
      padding: 1.5rem;
    }
    
    blockquote {
      font-size: 1.1rem;
      padding-left: 1rem;
    }
    
    .quote-author {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .author-line {
      width: 100px;
    }
  }

/* VARIÁVEIS DE CORES E ESPAÇAMENTOS */
  :root {
    --primary-gold: #d4af37;
    --gold-light: #f4e8c1;
    --gold-dark: #b8941f;
    --dark-bg: #0a0a0a;
    --light-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: rgba(212, 175, 55, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ESTILOS DA SEÇÃO */
  .contact-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--primary-gold) 50%, 
      transparent 100%);
  }

  .contact-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }

  /* CABEÇALHO */
  .contact-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold-light);
    transition: var(--transition);
  }

  .icon-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
  }

  .header-icon {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
  }

.contact-title {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

  .highlight-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
  }

  .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--primary-gold) 50%, 
      transparent 100%);
    border-radius: 2px;
  }

  .contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }

  .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
      var(--primary-gold) 0%, 
      #ffd700 50%, 
      var(--primary-gold) 100%);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0.8;
  }

  /* CONTAINER DO FORMULÁRIO */
  .form-container {
    position: relative;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
    min-height: clamp(450px, 70vh, 650px);
    transition: var(--transition);
  }

  .form-container:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
  }

  /* ESTADO DE CARREGAMENTO */
  .form-loading-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2rem;
  }

  .spinner {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .spinner-circle {
    width: 100%;
    height: 100%;
    border: 4px solid var(--gold-light);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .loading-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .progress-bar {
    width: 200px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 2px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--primary-gold), #ffd700);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
  }

  @keyframes progress {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(200%); }
  }

  /* IFRAME DO FORMULÁRIO */
  .google-form-frame {
    width: 100%;
    height: clamp(450px, 70vh, 650px);
    border: none;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .google-form-frame.loaded {
    opacity: 1;
  }

  /* FALLBACK PARA ERRO */
  .form-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    z-index: 20;
  }

  .warning-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }

  .form-fallback h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
  }

  .form-fallback p {
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 300px;
  }

  .fallback-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  }

  .fallback-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    gap: 1rem;
  }

  /* BADGE DE SEGURANÇA */
  .security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto 2rem;
    transition: var(--transition);
  }

  .security-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
  }

  .security-icon img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
  }

  .security-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 700;
  }

.security-content p {
    font-size: 0.875rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
    font-style: italic;
  }

  /* INFORMAÇÕES ADICIONAIS */
  .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
  }

  .info-item:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
  }

  .info-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
  }

.info-item p {
    font-size: 0.875rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 500;
  }

  /* ANIMAÇÕES */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
    .contact-section {
      padding: 3rem 1rem;
    }

    .contact-title {
      font-size: 2.2rem;
    }

    .contact-subtitle {
      font-size: 1rem;
      padding: 0 1rem;
    }

    .form-container {
      min-height: 700px;
    }

    .google-form-frame {
      height: 700px;
    }

    .contact-info {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 0 1rem;
    }

    .info-item {
      padding: 1.25rem;
    }
  }

  @media (max-width: 480px) {
    .contact-title {
      font-size: 1.8rem;
    }

    .icon-wrapper {
      width: 64px;
      height: 64px;
    }

    .header-icon {
      width: 28px;
      height: 28px;
    }

    .security-badge {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
    }

    .form-container {
      border-radius: var(--radius-md);
    }
  }

  /* ANIMAÇÃO DE ENTRADA */
  .contact-header,
  .form-container,
  .security-badge,
  .contact-info {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .form-container { animation-delay: 0.2s; }
  .security-badge { animation-delay: 0.4s; }
  .contact-info { animation-delay: 0.6s; }

/* === ROOT VARIABLES === */
:root {
  --gold-primary: #D4AF37;
  --gold-dark: #B8941F;
  --gold-light: #F4E8C1;
  --bg-dark: #0A0A0A;
  --bg-darker: #111;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(212,175,55,0.3);
  --text-light: rgba(255,255,255,0.9);
  --text-muted: rgba(255,255,255,0.6);
  --shadow-soft: 0 20px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(212,175,55,0.3);
  --radius-modern: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* STICKY HEADER */
.modern-header {
  transition: transform 0.25s ease, opacity 0.25s ease;
  will-change: transform, opacity;
}

.modern-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* === MAIN FOOTER === */
.modern-footer {
  background: linear-gradient(160deg, #0f172a 0%, #0b1223 100%);
  color: #e2e8f0;
  padding: 56px 20px 24px;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.modern-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 0 1.25rem;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-newsletter {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 20px;
}

.footer-logo {
  height: 44px;
  margin-bottom: 14px;
  filter: brightness(1.15);
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 14px;
}

.footer-social a {
  color: #94a3b8;
  padding: 0.2rem 0.3rem;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  margin-right: 8px;
}

.footer-social a:hover {
  color: #f8fafc;
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.16);
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
  color: #f8fafc;
  margin-bottom: 10px;
  font-size: 1.06rem;
  font-weight: 700;
}

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

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-contact p,
.footer-contact a,
.footer-newsletter p {
  color: #cbd5e1;
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-form input {
  flex: 1;
  min-width: 120px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  outline: none;
}

.footer-form input::placeholder {
  color: rgba(226, 232, 240, 0.76);
}

.footer-submit {
  border: none;
  border-radius: 999px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 700;
  padding: 0.56rem 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 16px 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.26);
  font-size: 0.86rem;
  color: #94a3b8;
}

.footer-dev {
  font-size: 0.86rem;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* === HERO CTA === */
.footer-hero-cta {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cta-card-modern {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-modern);
  padding: 2.5rem 3rem;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
  transition: left 0.8s ease;
}

.cta-card-modern:hover::before {
  left: 100%;
}

.cta-card-modern:hover {
  transform: translateY(-12px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-glow);
}

.cta-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid var(--gold-primary);
  font-size: 0.95rem;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}

.cta-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(212,175,55,0.5);
}

.cta-secondary {
  background: transparent;
  color: var(--gold-primary);
}

.cta-secondary:hover {
  background: var(--glass-bg);
  transform: translateY(-2px);
}

.cta-secondary.contatos-completos {
  color: #000 !important;
  border-color: #000 !important;
  background: rgba(255,255,255,0.8);
}

.cta-secondary.contatos-completos:hover {
  background: rgba(0,0,0,0.05);
}

.phone-icon {
  width: 22px;
  height: 22px;
}

/* === LOGOS SHOWCASE === */
.footer-logos-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.logo-item {
  position: relative;
  padding: 1rem;
  transition: var(--transition-smooth);
  cursor: default;
}

.logo-item img {
  height: clamp(30px, 8vw, 55px);
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  transition: var(--transition-smooth);
}

@media (max-width: 480px) {
  .footer-logos-showcase {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .logo-item img {
    height: clamp(25px, 7vw, 35px);
  }
}

.logo-item:hover img {
  transform: scale(1.15) translateY(-8px);
  filter: drop-shadow(0 15px 35px rgba(212,175,55,0.4));
}

.logo-item.featured img {
  filter: drop-shadow(0 12px 30px rgba(212,175,55,0.6));
}

/* === BOTTOM BAR === */
.footer-bottom-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  min-height: 60px;
}

@media (max-width: 768px) {
  .footer-bottom-bar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
  color: #000 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.copyright-text {
  color: #000 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.copyright-text strong {
  color: #000 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.designer {
  margin: 0;
  font-size: 0.85rem;
  color: #000 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.highlight {
  color: var(--gold-primary);
  font-weight: 700;
  font-family: 'Georgia', serif;
}

.contacts-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--glass-border);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  min-height: 44px;
}

.contacts-link-modern:hover {
  background: var(--glass-bg);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.icon-small {
  width: 18px;
  height: 18px;
}

/* === BACK TO TOP === */
.back-to-top-modern {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: 1px solid rgba(0, 0, 0, 0.25); /* borda sutil preta */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(212,175,55,0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 1001;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  min-height: 44px;
  min-width: 44px;
}

.back-to-top-modern.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.back-to-top-modern:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 25px 50px rgba(212,175,55,0.6);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  color: #000;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .modern-footer {
    padding: 3rem 0 2rem;
  }
  
  .cta-card-modern {
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logos-showcase {
    gap: 1rem;
  }
  
  .logo-item img {
    height: 40px;
  }
  
  .back-to-top-modern {
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .cta-card-modern {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.1rem;
  }
  
  /* Already handled above */
}

/* === PROFESSIONAL CLEAN FINISH === */
:root {
  --clean-bg: #f5f7fb;
  --clean-surface: #ffffff;
  --clean-text: #172337;
  --clean-muted: #64748b;
  --clean-border: #e2e8f0;
  --clean-brand: #c59d22;
  --clean-brand-dark: #9b7e1b;
  --clean-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  --clean-shadow-hover: 0 12px 30px rgba(15, 23, 42, 0.12);
}

body {
  background: var(--clean-bg);
  color: var(--clean-text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.015em;
  font-size: 16px;
}

header.modern-header {
  background: var(--clean-surface);
  border-bottom: 1px solid var(--clean-border);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.modern-footer {
  background: var(--clean-surface);
  border-top: 1px solid var(--clean-border);
  box-shadow: 0 -4px 10px rgba(15, 23, 42, 0.03);
}

.section, .work-section, .company-profile-section, .contact-section {
  background: transparent;
}

#nosso-trabalho, #portfolio, .work-section {
  background: var(--clean-surface);
  border: 1px solid var(--clean-border);
  border-radius: 16px;
  box-shadow: var(--clean-shadow);
}

.modern-service-card,
.profile-card,
.info-card,
.contact-card,
.cta-card-modern,
.gallery-item {
  background: var(--clean-surface);
  border: 1px solid var(--clean-border);
  border-radius: 12px;
  box-shadow: var(--clean-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.modern-service-card:hover,
.profile-card:hover,
.info-card:hover,
.contact-card:hover,
.cta-card-modern:hover,
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--clean-shadow-hover);
}

.profile-card.intro-card .card-body p {
  color: #000 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.profile-card.intro-card .card-body p strong {
  color: #000 !important;
  font-weight: 700 !important;
  font-style: italic !important;
}

.gallery-overlay,
.modal-content,
#caption,
#imageCount {
  box-shadow: none !important;
  background: rgba(0,0,0,0.5) !important;
}

#modalModelsTitle {
  display: none !important;
}

.work-container,
.container {
  position: relative;
  z-index: 1;
}

.section-title,
.profile-title,
.cta-title,
.contact-title {
  color: var(--clean-text);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-black {
  color: #0f172a !important;
}

ul, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

img {
  image-rendering: optimizeQuality;
  border-radius: 8px;
}

.btn, .cta-primary, .header-cta {
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clean-brand), var(--clean-brand-dark));
  color: #102a43;
  font-weight: 700;
  text-transform: uppercase;
}

.btn:hover, .cta-primary:hover, .header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
}

/* AK - clean safe force overrides */
:root {
  --shadow: none;
}

.sample-danger {
  box-shadow: none !important;
  transform: none !important;
}


@media (max-width: 360px) {
  .modern-footer {
    padding: 2rem 1rem !important;
  }
  
  .cta-title {
    font-size: clamp(1rem, 5vw, 1.1rem);
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-bottom-bar {
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  .logo-item img {
    height: clamp(22px, 6vw, 30px);
  }
  
  /* Tighter touch targets still >=44px but reduced padding */
  .cta-primary, .cta-secondary, .contacts-link-modern {
    padding: 0.875rem 1.25rem;
    font-size: 0.85rem;
  }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-top: 1px solid #EFBF04;
    display: none;
  }
  
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .cookie-text {
    flex: 1;
    min-width: 300px;
  }
  
  .cookie-text h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .gold-text {
    color: #EFBF04;
  }
  
  .gold-link {
    color: #EFBF04;
    text-decoration: none;
    font-weight: 500;
  }
  
  .gold-link:hover {
    text-decoration: underline;
  }
  
  .gold-button {
    background-color: #EFBF04;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .gold-button:hover {
    background-color: #e6c04d;
  }
  
  .outline-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .outline-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .text-button {
    background-color: transparent;
    color: #EFBF04;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .text-button:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 765px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }
    
    .cookie-buttons {
      width: 100%;
      justify-content: center;
    }
  }

/* Contact page styles moved to css/contact.css */
