:root {
    --primary-color: #616161;       /* cor normal */
    --secondary-color: #f5f5f5;
    --accent-color: #c72041;        /* cor de destaque */
    --light-color: #fafafa;
    --dark-color: #333;
    --text-color: #333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* =========================
   FONTES
========================= */
@font-face {
  font-family: 'GalanoGrotesqueRegular';
  src: url('/assets/fonts/GalanoGrotesqueRegular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GalanoGrotesqueBold';
  src: url('/assets/fonts/GalanoGrotesqueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GalanoGrotesqueItalic';
  src: url('/assets/fonts/GalanoGrotesqueItalic.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* =========================
   BASE
========================= */
body {
  margin: 0;
  font-family: 'GalanoGrotesqueRegular';
  background: #f9f9f9;
  color: var(--text-color);
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb-container {
  max-width: 1300px;
  margin: 20px auto 10px;
  padding: 0 25px;
}

.breadcrumb {
  font-family: 'GalanoGrotesqueRegular'; 
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 6px;
  color: #aaa;
}

.breadcrumb span {
  color: #333;
  font-weight: 600;
}

/* =========================
   CONTAINER PRINCIPAL
========================= */
.main-content {
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    font-family: 'GalanoGrotesqueRegular'; 
    display: grid;
    grid-template-columns: 1fr 1fr; /* duas colunas */
    gap: 40px;
}

/* =========================
   COLUNA ESQUERDA
========================= */
.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-family: 'GalanoGrotesqueBold';
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 10px;
    opacity: 0.9;
}

.submission-guide {
    background: #f9f9f9;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.guide-title {
    font-family: 'GalanoGrotesqueBold';
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.guide-list {
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.guide-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Botão "Ver lojas" outline custom */
.whatsapp-btn {
    padding: 8px 20px;
    margin-bottom: 20px;
    background: transparent; /* sem fundo */
    color: #c72041; 
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    border: 1px solid #c72041;
}

/* Hover -> aplica gradiente no fundo */
.whatsapp-btn:hover {
    background: #c72041;
    color: #fff; /* texto branco */
    transform: translateY(-2px);
}



.image-box {
  margin-top: 30px;
  text-align: center;
}

.image-box img {
  max-width: 100%;
  height: auto;

}


/* =========================
   COLUNA DIREITA (FORM)
========================= */
.formulario-container {
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.form-title {
    font-family: 'GalanoGrotesqueBold';
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'GalanoGrotesqueRegular';
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(199, 32, 65, 0.2);
}

/* Upload box */
.upload-box {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    background: #fff;
    color: #888;
    cursor: pointer;
    transition: var(--transition);
}

.upload-box.dragover {
    border-color: var(--accent-color);
    background: #fff5f7;
    color: var(--accent-color);
}

.upload-box p {
    margin: 0;
    font-size: 0.9rem;
}

.btn-enviar {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-family: 'GalanoGrotesqueBold';
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

.btn-enviar:hover {
    background: #a81a34;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
}
