/* Extracted page styles. Loaded before index.css so the violet-emerald theme can override colors. */

/* index.html */
body {
            background-color: var(--surface-top, #faf7f5);
            color: #2b1b0d;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #9b612c; /* Azul mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-primary:hover {
            background-color: #2b1b0d; /* Azul ainda mais escuro para o hover */
        }

        .btn-success {
            background-color: #27d38d; /* Verde mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-success:hover {
            background-color: #1daa70; /* Verde ainda mais escuro para o hover */
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #2b1b0d;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: rgba(255, 255, 255, 0.58);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid rgba(155, 97, 44, 0.22);
        }

        .faq-question {
            color: #2b1b0d;
            font-size: 1.25rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .faq-answer {
            color: #9b612c;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

/* login.html */
body {
            background-color: var(--surface-top, #faf7f5);
            color: #2b1b0d;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #9b612c; /* Azul mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-primary:hover {
            background-color: #2b1b0d; /* Azul ainda mais escuro para o hover */
        }

        .btn-success {
            background-color: #27d38d; /* Verde mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-success:hover {
            background-color: #1daa70; /* Verde ainda mais escuro para o hover */
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #2b1b0d;
        }
        
        .login-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .login-method-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(155, 97, 44, 0.22);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .login-method-card:hover {
            transform: translateY(-5px);
            border-color: #9b612c;
            box-shadow: 0 8px 20px rgba(39, 211, 141, 0.22);
        }
        
        .login-method-icon {
            font-size: 42px;
            margin-bottom: 15px;
            display: block;
        }
        
        .login-method-card h3 {
            color: #2b1b0d;
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .login-method-card p {
            color: #9b612c;
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 14px;
        }
        
        .guest-login-box {
            background-color: rgba(95, 233, 78, 0.14);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
        }
        
        .guest-login-box h3 {
            color: #27d38d;
            margin-bottom: 20px;
        }
        
        .guest-login-box p {
            color: #2b1b0d;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .login-methods-grid {
                grid-template-columns: 1fr;
            }
        }

/* cadastro.html */
body {
            background-color: var(--surface-top, #faf7f5);
            color: #2b1b0d;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #9b612c; /* Azul mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-primary:hover {
            background-color: #2b1b0d; /* Azul ainda mais escuro para o hover */
        }

        .btn-success {
            background-color: #27d38d; /* Verde mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-success:hover {
            background-color: #1daa70; /* Verde ainda mais escuro para o hover */
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #2b1b0d;
        }
        
        .registration-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .registration-method-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(155, 97, 44, 0.22);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .registration-method-card:hover {
            transform: translateY(-5px);
            border-color: #27d38d;
            box-shadow: 0 8px 20px rgba(39, 211, 141, 0.22);
        }
        
        .registration-method-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .registration-method-card h3 {
            color: #2b1b0d;
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .registration-method-card p {
            color: #9b612c;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .registration-details {
            background-color: rgba(95, 233, 78, 0.14);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .registration-details p {
            color: #2b1b0d;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .registration-details strong {
            color: #27d38d;
        }
        
        .registration-steps {
            background-color: rgba(95, 233, 78, 0.14);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
        }
        
        .registration-steps h3 {
            color: #27d38d;
            margin-bottom: 20px;
        }
        
        .registration-steps ol {
            color: #2b1b0d;
            line-height: 2;
            padding-left: 20px;
        }
        
        .registration-steps li {
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            .registration-methods-grid {
                grid-template-columns: 1fr;
            }
        }

/* feedback.html */
body {
            background-color: var(--surface-top, #faf7f5);
            color: #2b1b0d;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #9b612c; /* Azul mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-primary:hover {
            background-color: #2b1b0d; /* Azul ainda mais escuro para o hover */
        }

        .btn-success {
            background-color: #27d38d; /* Verde mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-success:hover {
            background-color: #1daa70; /* Verde ainda mais escuro para o hover */
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #2b1b0d;
        }
        
        .feedback-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feedback-category-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(155, 97, 44, 0.22);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feedback-category-card:hover {
            transform: translateY(-5px);
            border-color: #9b612c;
            box-shadow: 0 8px 20px rgba(39, 211, 141, 0.22);
        }
        
        .feedback-category-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .feedback-category-card h3 {
            color: #2b1b0d;
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .feedback-category-card p {
            color: #9b612c;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .contact-info-box {
            background-color: rgba(95, 233, 78, 0.14);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }
        
        .contact-info-box h3 {
            color: #27d38d;
            margin-bottom: 20px;
        }
        
        .contact-info-box p {
            color: #2b1b0d;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .feedback-categories-grid {
                grid-template-columns: 1fr;
            }
        }

/* ajuda-online.html */
body {
            background-color: var(--surface-top, #faf7f5);
            color: #2b1b0d;
            margin: 0;
            padding: 0;
        }

        @media (min-width: 768px) {
            .container {
                max-width: 960px;
                margin: auto;
            }
        }

        .btn {
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            border: none;
        }

        .btn-primary {
            background-color: #9b612c; /* Azul mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-primary:hover {
            background-color: #2b1b0d; /* Azul ainda mais escuro para o hover */
        }

        .btn-success {
            background-color: #27d38d; /* Verde mais escuro */
            color: #2b1b0d; /* Texto branco */
        }

        .btn-success:hover {
            background-color: #1daa70; /* Verde ainda mais escuro para o hover */
        }

        .rounded-2 {
            border-radius: 2px;
        }

        .text-center {
            text-align: center;
        }

        .text-white {
            color: #2b1b0d;
        }
        
        .contact-methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .contact-method-card {
            background-color: rgba(255, 255, 255, 0.58);
            border: 2px solid rgba(155, 97, 44, 0.22);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .contact-method-card:hover {
            transform: translateY(-5px);
            border-color: #9b612c;
            box-shadow: 0 8px 20px rgba(39, 211, 141, 0.22);
        }
        
        .contact-method-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }
        
        .contact-method-card h3 {
            color: #2b1b0d;
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .contact-method-card p {
            color: #9b612c;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .contact-details {
            background-color: rgba(95, 233, 78, 0.14);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            text-align: left;
        }
        
        .contact-details p {
            color: #2b1b0d;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .contact-details strong {
            color: #27d38d;
        }
        
        @media (max-width: 768px) {
            .contact-methods-grid {
                grid-template-columns: 1fr;
            }
        }
/* Extracted inline attribute utilities */
.page-intro {
  margin: 30px 0;
}

.lead-copy {
  font-size: 18px;
  line-height: 1.8;
}

.lead-copy--accent,
.text-accent-bold {
  color: #27d38d;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading--compact {
  margin-bottom: 30px;
}

.narrow-prose {
  max-width: 800px;
  margin: 0 auto;
}

.ordered-steps {
  max-width: 700px;
  margin: 0 auto;
}

.prose-copy {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.mt-20 {
  margin-top: 20px;
}

.themed-link {
  color: #27d38d;
  text-decoration: underline;
}

.feedback-examples {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(95, 233, 78, 0.14);
  text-align: left;
}

.example-title {
  margin-bottom: 5px;
  color: #2b1b0d;
  font-size: 14px;
}

.example-line {
  margin-bottom: 3px;
  color: #9b612c;
  font-size: 13px;
}

.example-line--last {
  margin-bottom: 0;
}

.map-frame {
  border: 0;
}