/* Variáveis CSS para melhor manutenção */
:root {
    --max-width: 1280px;
    --padding-x: 1rem;
    --primary-color: #000; /* Ajuste para sua cor principal */
    --text-color: #333;
    --section-spacing: 6rem; /* Espaçamento padrão entre seções */
    --title-spacing: 2.5rem; /* Espaçamento padrão após títulos */
    --content-spacing: 1.5rem; /* Espaçamento padrão entre elementos de conteúdo */
    --title-to-subtitle-spacing: 0.5rem; /* Espaço entre título e subtítulo */
    --subtitle-to-content-spacing: 3rem; /* Espaço entre subtítulo e conteúdo */
}

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

/* Container principal */
.container {
    max-width: var(--max-width);
    padding: 0 var(--padding-x);
    margin: 0 auto;
    width: 100%;
}

/* Header */
.header {
    width: 100%;
    padding: 1rem 0;
    background: #fff;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: block;
}

.logo img {
    display: block;
    height: auto;
}

/* Navegação */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-family: 'Raleway', sans-serif;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Botão do menu mobile */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Estilo do botão hamburguer */
.hamburger {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: background 0.2s ease-out;
    left: 0;
    right: 0;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: var(--text-color);
    transition: transform 0.2s ease-out;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* Animação quando menu está ativo */
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    :root {
        --section-spacing: 4rem;
        --title-spacing: 2rem;
        --title-to-subtitle-spacing: 0.5rem;
        --subtitle-to-content-spacing: 2rem; /* Menor em mobile */
    }
}

/* Hero Section */
.hero {
    width: 100%;
    padding: 4rem 0;
    background: #fff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: clamp(16px, 5vw, 46px);
    line-height: 1.2;
    margin-bottom: var(--title-spacing);
    color: var(--text-color);
    padding-bottom: 25px;
    font-family: 'Raleway', sans-serif;
}

.highlight {
    color: #0066cc; /* Ou sua cor de destaque */
    display: inline-block;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #0066cc, #0088ff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Media Query para responsividade */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
}

/* Contact Bar Section */
.contact-bar {
    width: 100%;
    background: #0082F5;
    padding: 1rem 0;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    font-family: 'Arial', sans-serif; /* Fonte mais consistente para números */
}

.contact-item {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem; /* Aumentei o tamanho */
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

/* Alinhamento específico para primeiro e último item */
.contact-item:first-child {
    text-align: left;
}

.contact-item:nth-child(2) {
    text-align: center;
}

.contact-item:last-child {
    text-align: right;
}

.contact-item:hover {
    opacity: 0.9;
}

/* Media Query para responsividade da contact bar */
@media (max-width: 768px) {
    .contact-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .contact-item {
        font-size: 1rem;
        padding: 0.3rem;
        text-align: center !important; /* Força centralização em mobile */
    }
}

/* Services Section */
.services {
    width: 100%;
    padding: 4rem 0;
    background: #f8f9fa; /* Voltando para cinza claro */
}

.services-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-title {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.4;
    margin-bottom: var(--title-to-subtitle-spacing);
    color: var(--text-color);
    padding-bottom: 25px;
    font-family: 'Raleway', sans-serif;
}

.services-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--text-color);
    font-family: 'Raleway', sans-serif;
}

.text-muted {
    color: #666;
}

/* Media Query para responsividade */
@media (max-width: 768px) {
    .services {
        padding: 2rem 0;
    }

    .services-content {
        padding: 0 1rem;
    }
}

/* More Services Section */
.more-services {
    width: 100%;
    padding: 4rem 0;
    background: #fff; /* Fundo branco */
}

.more-services-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: var(--title-to-subtitle-spacing);
    color: var(--text-color);
    padding-bottom: 25px;
    font-family: 'Raleway', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: auto;
    height: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.service-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
}

/* Media Query para responsividade */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .more-services {
        padding: 2rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: auto;
        height: auto;
        margin-bottom: 1rem;
    }
}

/* About Section */
.about {
    width: 100%;
    padding: 4rem 0;
    background: #fff;
}

.about-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: var(--title-to-subtitle-spacing);
    color: var(--text-color);
    padding-bottom: 25px;
    font-family: 'Raleway', sans-serif;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text {
    color: #666;
    line-height: 1.8;
    font-family: 'Raleway', sans-serif;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Gallery */
.gallery {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners Section */
.partners {
    width: 100%;
    padding: 4rem 0;
    background: #fff;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: var(--title-to-subtitle-spacing);
    color: var(--text-color);
    padding-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.partners-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: var(--subtitle-to-content-spacing);
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
}

.partners-slider {
    width: 100%;
    background: #f8f9fa;
    overflow: hidden;
    padding: 3rem 0;
}

.slider-track {
    display: flex;
    width: fit-content;
    animation: slide 40s linear infinite;
}

.slide {
    flex-shrink: 0;
    width: 280px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 200px;
    height: 60px;
    aspect-ratio: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Efeito hover */
.slide:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .slide {
        width: 200px;
    }
}

/* Contact Section */
.contact {
    width: 100%;
    padding: 4rem 0;
    background: #fff;
}

.contact-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: var(--title-to-subtitle-spacing);
    color: var(--text-color);
    padding-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: var(--subtitle-to-content-spacing);
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Aumentando a proporção do formulário */
    gap: 4rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Aumentando espaço entre campos */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem; /* Campos maiores */
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f8f9fa;
    font-family: inherit;
    font-size: 1.1rem; /* Texto maior */
}

.form-group textarea {
    resize: vertical;
    min-height: 150px; /* Área de texto maior */
}

.submit-button {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background: #333;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: 'Roboto Mono', monospace; /* Mesma fonte do footer */
    font-size: 0.9rem; /* Mesmo tamanho do footer */
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.icon-link {
    color: #0066cc;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    transform: scale(1.1);
}

.contact-info-item i {
    font-size: 1.2rem; /* Tamanho padronizado para todos os ícones */
    width: 20px; /* Largura fixa para alinhamento */
}

/* Removendo estilos anteriores que não são mais necessários */
.social-link,
.social-link:hover,
.social-link i,
.social-link:hover i {
    all: unset;
}

.map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem; /* Adicionando espaço após o mapa */
}

/* Footer */
.footer {
    width: 100%;
    padding: 2rem 0; /* Aumentado o padding */
    background: #f8f9fa;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-family: 'Roboto Mono', monospace; /* Fonte monoespaçada para o CNPJ */
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .submit-button {
        width: 100%;
    }

    .map {
        height: 300px;
    }
}

/* Botões Flutuantes */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 80px;
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: none; /* Removida a sombra */
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    color: white;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #0066cc;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: none; /* Removida a sombra */
    z-index: 100;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #0052a3;
}

/* Atualização do ícone do Instagram */
.social-link {
    font-size: 32px;
    color: #666;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #0066cc;
}

/* Media Query para ajustar em telas menores */
@media (max-width: 768px) {
    .whatsapp-float,
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 15px;
    }

    .whatsapp-float {
        bottom: 70px;
        font-size: 22px;
    }

    .back-to-top {
        bottom: 15px;
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }
}

/* Ajuste global para todas as seções */
section {
    padding: var(--section-spacing) 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Imagem de rolagem em mobile */
.scroll-indicator {
    display: none;
}

.scroll-indicator-text {
    display: none;
}

@media (max-width: 768px) {
    .scroll-indicator {
        position: relative;
        display: block;
        width: 50px;
        height: auto;
        margin: 35px auto 5px; /* Reduzido margin-bottom para aproximar do texto */
        opacity: 0.6;
        animation: floatUpDown 1.5s ease-in-out infinite;
    }

    .scroll-indicator-text {
        display: block;
        text-align: center;
        font-size: 12px;
        width: 100%;
        color: #666;
        font-family: 'Roboto Mono', monospace;
        margin-bottom: 20px; /* Espaço após o texto */
        opacity: 0.6;
        margin-top: 10px;
    }

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

/* Adicionar no início do arquivo CSS */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px; /* Reduzido para altura do header + pequena margem */
}

/* Âncoras das seções */
.section-anchor {
    position: relative;
    top: -85px; /* Mesmo valor do scroll-padding-top */
    visibility: hidden;
    pointer-events: none;
    margin: 0;
    padding: 0;
    line-height: 0;
}

/* Adicionar ID no body para o link "Início" */
body {
    scroll-margin-top: 0;
}

/* cyrillic-ext */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* vietnamese */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* vietnamese */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* vietnamese */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  /* cyrillic-ext */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCAIT5lu.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCkIT5lu.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* vietnamese */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCIIT5lu.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyCMIT5lu.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptug8zYS_SKggPNyC0ITw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  /* cyrillic-ext */
@font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SeW4Ep0.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  }
  /* cyrillic */
  @font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_QOW4Ep0.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  }
  /* greek */
  @font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_R-W4Ep0.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  }
  /* vietnamese */
  @font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_S-W4Ep0.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SuW4Ep0.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/robotomono/v23/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_ROW4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }