/* Espaçamento institucional para cabeçalho das páginas */
.page-header {
    padding-top: 140px;
}
/* --- Estilos da página de contato (whatsapp) --- */
.whatsapp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .whatsapp-grid { grid-template-columns: 1fr; }
}
.whatsapp-box {
  background: #e9f9f1;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.08);
}
.whatsapp-box h3 { color: #25D366; margin-bottom: 12px; }
.whatsapp-qrcode { border: 4px solid #25D366; border-radius: 8px; }

/* --- Estilos da página de serviços --- */
.services-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .services-categories { grid-template-columns: 1fr; }
}
.service-category {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(55,155,205,0.08);
  padding: 32px 24px;
}
.service-category h2 {
  color: #379BCD;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-category ul {
  padding-left: 18px;
}
.service-category li {
  margin-bottom: 12px;
  color: #334155;
  line-height: 1.6;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 204, 240, 0.3);
}

.btn-secondary {
    background: #25d366;
    color: white;
}

.btn-secondary:hover {
    background: #20b656;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #379BCD;
    color: #379BCD;
}

.btn-outline:hover {
    background: #379BCD;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #379BCD;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #379BCD;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-description {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-features i {
    color: #25d366;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: #379BCD;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #718096;
    margin: 0;
    font-size: 0.95rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 100px 0 60px;
}

.footer-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #379BCD;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #a0aec0;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #379BCD;
    width: 16px;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #379BCD;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: #a0aec0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #379BCD;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #379BCD;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(55, 155, 205, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        text-align: left;
    }

    .service-icon {
        margin: 0 0 1.5rem 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-menu {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .about-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1;
        min-width: 250px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .footer-content {
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: #f8fafc;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 120px;
    text-align: center;
    z-index: 2;
}

.timeline-year h3 {
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(60, 204, 240, 0.3);
}

.timeline-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 2rem;
    color: #379BCD;
}

.timeline-text {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #379BCD;
}

.timeline-item:nth-child(even) .timeline-text {
    border-left: none;
    border-right: 4px solid #379BCD;
}

.timeline-text h4 {
    color: #379BCD;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-text p:last-child {
    margin-bottom: 0;
}

/* Mission Vision Values Section */
.mvv-section {
    padding: 80px 0;
    background: white;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mvv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #379BCD;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mvv-icon i {
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.mvv-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 80px 80px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-intro {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #379BCD;
}

.privacy-section h3 {
    color: #334155;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.privacy-section h4 {
    color: #379BCD;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.glossary-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #379BCD;
}

.glossary-item h4 {
    color: #1e293b;
    margin-bottom: 10px;
}

.glossary-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.privacy-list {
    list-style: none;
    margin: 20px 0;
}

.privacy-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #475569;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #379BCD;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.data-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.data-category {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #379BCD;
}

.data-category h4 {
    color: #1e293b;
    margin-bottom: 20px;
}

.data-category ul {
    list-style: none;
}

.data-category li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.data-category li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #379BCD;
    font-weight: bold;
}

.contact-box {
    background: linear-gradient(135deg, #379BCD 0%, #2B7CB3 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-box h4 {
    color: white;
    margin-bottom: 20px;
}

.contact-box p,
.contact-box li {
    color: rgba(255, 255, 255, 0.9);
}

.contact-box a {
    color: white;
    text-decoration: underline;
}

.contact-box ul {
    list-style: none;
    margin-top: 15px;
}

.contact-box li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.contact-box li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: white;
}

.privacy-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
    margin-top: 50px;
}

.privacy-footer p {
    font-size: 1.1rem;
    color: #379BCD;
    font-weight: 600;
}

/* Active Navigation Link */
.nav-link.active {
    color: #379BCD !important;
    font-weight: 600;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: column;
        text-align: center;
        padding: 0;
        margin-left: 60px;
    }

    .timeline-year {
        width: 100px;
        margin-bottom: 20px;
    }

    .timeline-year h3 {
        font-size: 1.2rem;
        padding: 12px 16px;
    }

    .timeline-text,
    .timeline-item:nth-child(even) .timeline-text {
        border-left: 4px solid #379BCD;
        border-right: none;
        margin-top: 20px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mvv-card {
        padding: 30px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .content-wrapper {
        padding: 40px 18px;
    }

    .glossary-grid {
        grid-template-columns: 1fr;
    }

    .data-collection {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .timeline-section {
        padding: 60px 0;
    }

    .mvv-section {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 60px 0;
    }

    .content-wrapper {
        padding: 18px 6px;
    }

    .timeline-content {
        margin-left: 40px;
    }
}
.nav-list {
    align-items: center;
}
.nav-list .btn-primary {
    font-weight: 500;
    border-radius: 8px;
    margin-left: 0;
    box-shadow: none;
    transition: background 0.3s;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 16px;
}
@media (max-width: 1023px) {
    .nav-list .btn-primary {
        width: 100%;
        margin: 1rem 0 0 0;
    }
}
.btn-large,
.nav-list .btn-primary {
    padding: 12px 20px !important;
    min-height: 40px !important;
    height: auto !important;
}
