/* --- Variáveis de Cores (Baseadas na imagem 3 e identidade da marca) --- */
:root {
  --primary-blue: #002f5d; /* Azul marinho profundo dos títulos/logos */
  --accent-teal: #009ca6; /* Ciano/Teal de destaque */
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f4f7f9; /* Fundo cinza claro da página */
  --bg-white: #ffffff; /* Fundo do cartão */
  --whatsapp-green: #25d366;
  --status-open: #28a745;
  --status-closed: #dc3545;
}

/* --- Reset Básico e Tipografia --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Cabeçalho --- */
.main-header {
  background-color: var(--bg-white);
  padding: 2rem 0; /* Aumentei um pouco o padding vertical (era 1.5rem) para dar mais espaço */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-logo {
  /* AQUI ESTÁ A MUDANÇA PRINCIPAL */
  max-width: 500px; /* Aumentado de 250px para 350px. Ajuste este valor se quiser maior ou menor. */
  height: auto;
  display: block;
}

/* --- Conteúdo Principal --- */
.main-content {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* --- Cartão de Informação (O container principal) --- */
.info-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 47, 93, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Telas maiores: Layout lado a lado */
@media (min-width: 768px) {
  .info-card {
    flex-direction: row;
  }
}

/* --- Lado Esquerdo (Visual) --- */
.visual-side {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  color: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Forma curva decorativa usando CSS */
.visual-side::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40%;
  animation: rotate 20s infinite linear;
  z-index: 0;
}

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

.status-indicator {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.status-indicator.open {
  background-color: var(--status-open);
}
.status-indicator.closed {
  background-color: var(--status-closed);
}

.illustration-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.support-icon {
  font-size: 8rem;
  opacity: 0.9;
}

.help-bubble {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--accent-teal);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 3px solid white;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Lado Direito (Conteúdo) --- */
.content-side {
  padding: 3rem;
  flex: 1.5;
}

.page-title {
  color: var(--primary-blue);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.subtitle {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* --- Blocos de Horário --- */
.schedules-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.schedule-block {
  display: flex;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 12px;
  background-color: var(--bg-light);
  border-left: 5px solid transparent;
  transition: all 0.3s ease;
}

/* Destaca o dia atual via JS */
.schedule-block.active-day {
  background-color: #e6f7f8; /* Um tom muito claro do teal */
  border-left-color: var(--accent-teal);
  box-shadow: 0 4px 12px rgba(0, 156, 166, 0.15);
}

.schedule-icon {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-right: 1.2rem;
  padding-top: 5px;
}

.schedule-block.active-day .schedule-icon {
  color: var(--accent-teal);
}

.schedule-details h2 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.3rem;
}

.schedule-details p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.divider {
  height: 2px;
  background-color: #eee;
  margin: 2.5rem 0;
  width: 50px;
  border-radius: 2px;
}

/* --- Contato --- */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item i {
  margin-right: 12px;
  font-size: 1.3rem;
}

.email-link {
  color: var(--primary-blue);
}

.phone-link {
  color: var(--primary-blue);
}

.phone-link i {
  color: var(--whatsapp-green);
}

/* Responsividade para telas menores */
@media (max-width: 767px) {
  .visual-side {
    padding: 2rem;
  }
  .support-icon {
    font-size: 5rem;
  }
  .content-side {
    padding: 2rem;
  }
  .page-title {
    font-size: 1.8rem;
  }
}
