@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
/*font-family: 'Rubik', sans-serif;*/

/* RESET COMPLETO E OTIMIZADO */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #000;
    width: 100%;
    max-width: 100%;
    line-height: 1;
}

/* Elementos de bloco */
div, main, section, article, header, footer, nav, aside, figure, figcaption {
    display: block;
    max-width: 100%;
}

/* Imagens e mídia */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
    border-style: none;
}

/* Links */
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

/* Listas */
ol, ul {
    list-style: none;
}

/* Formulários */
button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    border: none;
    background: none;
}

/* Tabelas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Elementos de texto */
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd {
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    line-height: inherit;
}

/* Garantir que elementos hidden fiquem realmente escondidos */
[hidden] {
    display: none !important;
}

/* Prevenir problemas com flexbox */
[style*="display: flex"] {
    min-height: 0;
    min-width: 0;
}

/* Correção específica para iframes em formulários */
iframe {
    border: none;
    max-width: 100%;
}