/* style.css for Conheça Mais Page */

:root {
  --primary-color: #0b51a6;
  /* Logico Blue */
  --primary-light: #488ac9;
  --primary-dark: #073570;
  --secondary-color: #f2b705;
  /* Logico Yellow */
  --bg-color: #f9fbfd;
  --text-main: #333333;
  --text-muted: #555555;
  --white: #ffffff;
  --border-color: #e0e6ed;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Base Layout */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--secondary-color);
}

.header-content {
  position: relative;
  z-index: 2;
}

.logo-container img {
  max-width: 200px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 60px 0;
}

section:nth-child(even) {
  background-color: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text Content */
.text-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

/* Features List */
.features-list {
  list-style: none;
}

.features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

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

/* Badge / Logos */
.badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.badge-container img {
  max-width: 150px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.badge-container img:hover {
  opacity: 1;
}

/* Call to Action */
.cta-section {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-title::after {
  background-color: var(--secondary-color);
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-dark);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
}

.btn:hover {
  background-color: #ffd033;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.4);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Print Layout */
@media print {
  @page {
    size: A5;
    margin: 1.5cm;
  }

  body {
    background: white;
    font-size: 10pt;
    line-height: 1.4;
  }

  header {
    background: white;
    box-shadow: none;
    padding: 5px 0;
  }

  .logo-container img {
    max-width: 120px;
    filter: none;
  }

  section {
    padding: 10px 0;
    page-break-inside: auto;
  }

  .section-title {
    font-size: 14pt;
    margin-bottom: 10px;
    text-align: left;
  }

  .section-title::after {
    margin: 5px 0 0;
  }

  .grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
  }

  .grid-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .card {
    border: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 10px;
    page-break-inside: avoid;
    border-left: 2px solid var(--primary-color);
    padding-left: 10px;
    border-radius: 0;
  }

  .card-icon {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .card-title {
    font-size: 11pt;
    margin-bottom: 5px;
  }

  .cta-section,
  .btn,
  .tour-cta {
    display: none !important;
  }

  .text-content p {
    font-size: 9pt;
    margin-bottom: 5px;
  }

  img {
    max-height: 200px;
    object-fit: contain;
    page-break-inside: avoid;
  }

  .badge-container {
    justify-content: flex-start;
    margin-top: 5px;
  }

  .badge-container img {
    max-width: 80px;
  }

  hr {
    margin: 15px 0 !important;
  }
}