feature/footer #3

Merged
cainamilech merged 13 commits from feature/footer into develop 2023-01-10 14:49:35 +00:00
47 changed files with 1091 additions and 20 deletions

View File

@ -19,6 +19,7 @@
"node-sass": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-headless-accordion": "^1.0.2",
"react-input-mask": "^2.0.4",
"react-modal": "^3.16.1",
"react-router-dom": "^6.6.1",
@ -15097,6 +15098,14 @@
"resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz",
"integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw=="
},
"node_modules/react-headless-accordion": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/react-headless-accordion/-/react-headless-accordion-1.0.2.tgz",
"integrity": "sha512-wKBTB/+aAr9MGX5RYi3sdmKOSzevKdmbGRw9JTe7XONiHlTo+pC1OiggL9NUxp5QeQcTnX0rryhuySeGsqBfBg==",
"peerDependencies": {
"react": "^18.2.0"
}
},
"node_modules/react-input-mask": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/react-input-mask/-/react-input-mask-2.0.4.tgz",
@ -29284,6 +29293,12 @@
"resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz",
"integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw=="
},
"react-headless-accordion": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/react-headless-accordion/-/react-headless-accordion-1.0.2.tgz",
"integrity": "sha512-wKBTB/+aAr9MGX5RYi3sdmKOSzevKdmbGRw9JTe7XONiHlTo+pC1OiggL9NUxp5QeQcTnX0rryhuySeGsqBfBg==",
"requires": {}
},
"react-input-mask": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/react-input-mask/-/react-input-mask-2.0.4.tgz",

View File

@ -14,6 +14,7 @@
"node-sass": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-headless-accordion": "^1.0.2",
"react-input-mask": "^2.0.4",
"react-modal": "^3.16.1",
"react-router-dom": "^6.6.1",

View File

@ -1,3 +1,5 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
:root {
--font-roboto: "Roboto", sans-serif;

View File

@ -0,0 +1,26 @@
import developed from "./assets/modules/Developed.module.scss";
import vtex from "./assets/svgs/vtex.svg";
import m3 from "./assets/svgs/m3.svg";
const Developed = () => {
return (
<div className={developed["developed"]}>
<span>Powered By</span>
<a href="https://vtex.com/br-pt/" target="_blank">
<figure>
<img className={developed["vtex"]} src={vtex} alt="Logo VTEX" />
</figure>
</a>
<span>Developed By</span>
<a href="https://agenciam3.com/" target="_blank">
<figure>
<img className={developed["m3"]} src={m3} alt="Logo M3" />
</figure>
</a>
</div>
);
};
export { Developed };

View File

@ -1,9 +1,23 @@
import { Newsletter } from "./Newsletter";
import { SitemapAccordion } from "./SitemapAccordion";
import { Sitemap } from "./Sitemap";
import { SocialMedias } from "./SocialMedias";
import { FooterBottom } from "./FooterBottom";
import footer from "./assets/modules/Footer.module.scss";
const Footer = () => {
return (
<footer>
<Newsletter />
<div className={footer["wrapper"]}>
<Sitemap />
<SitemapAccordion />
<SocialMedias />
</div>
<FooterBottom />
</footer>
);
};

View File

@ -0,0 +1,46 @@
import footer from "./assets/modules/FooterBottom.module.scss";
import { Payments } from "./Payments";
import { Developed } from "./Developed";
import master from "./assets/svgs/master.svg";
import visa from "./assets/svgs/visa.svg";
import diners from "./assets/svgs/diners.svg";
import elo from "./assets/svgs/elo.svg";
import hiper from "./assets/svgs/hiper.svg";
import paypal from "./assets/svgs/paypal.svg";
import boleto from "./assets/svgs/boleto.svg";
import vtexPci from "./assets/svgs/vtex-pci.svg";
const FooterBottom = () => {
return (
<div className={footer["footer"]}>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor
</p>
<div className={footer["footer__icons"]}>
<ul>
<Payments icon={master} alt="Cartão MasterCard" />
<Payments icon={visa} alt="Cartão Visa" />
<Payments icon={diners} alt="Cartão Diners" />
<Payments icon={elo} alt="Cartão Elo" />
<Payments icon={hiper} alt="Cartão HiperCard" />
<Payments icon={paypal} alt="Cartão Paypal" />
<Payments icon={boleto} alt="Boleto" />
</ul>
<div></div>
<figure>
<img src={vtexPci} alt="Vtex PCI" />
</figure>
</div>
<Developed />
</div>
);
};
export { FooterBottom };

View File

@ -0,0 +1,16 @@
interface ILink {
href: string;
text: string;
}
const Link = (props: ILink) => {
const { href, text } = props;
return (
<li>
<a href={href}>{text}</a>
</li>
);
};
export { Link };

View File

@ -2,20 +2,12 @@ import newsletter from "./assets/modules/Newsletter.module.scss";
import { Formik, Form, Field, ErrorMessage } from "formik";
import * as Yup from "yup";
const NewsletterSchema = Yup.object().shape({
email: Yup.string().required("*Campo obrigatório").email("Email inválido"),
});
import NewsletterSchema from "./assets/schemas/NewsletterSchema";
interface IEmailType {
email: string;
}
/*const initialValues = {
email: "",
};*/
const Newsletter = () => {
return (
<div className={newsletter["newsletter"]}>

View File

@ -0,0 +1,18 @@
interface IPayments {
icon: string;
alt: string;
}
const Payments = (props: IPayments) => {
const { icon, alt } = props;
return (
<li>
<figure>
<img src={icon} alt={alt} />
</figure>
</li>
);
};
export { Payments };

View File

@ -0,0 +1,47 @@
import sitemap from "./assets/modules/Sitemap.module.scss";
import { Link } from "./Link";
const Sitemap = () => {
return (
<div className={sitemap["sitemap"]}>
<div className={sitemap["sitemap__col"]}>
<h4>Institucional</h4>
<ul>
<Link text="Quem Somos" href="/" />
<Link text="Política de Privacidade" href="/" />
<Link text="Segurança" href="/" />
<Link text="Seja um Revendedor" href="/" />
</ul>
</div>
<div className={sitemap["sitemap__col"]}>
<h4>Dúvidas</h4>
<ul>
<Link text="Entrega" href="/" />
<Link text="Pagamento" href="/" />
<Link text="Trocas e Devoluções" href="/" />
<Link text="Dúvidas Frequentes" href="/" />
</ul>
</div>
<div className={sitemap["sitemap__col"]}>
<h4>Fale Conosco</h4>
<ul>
<li>
<span>Atendimento Ao Consumidor</span>
</li>
<Link text="(11) 4159 9504" href="tel:1141599504" />
<li>
<span>Atendimento Online</span>
</li>
<Link text="(11) 99433-8825" href="tel:11994338825" />
</ul>
</div>
</div>
);
};
export { Sitemap };

View File

@ -0,0 +1,71 @@
import {
Accordion,
AccordionBody,
AccordionHeader,
AccordionItem,
} from "react-headless-accordion";
import { Link } from "./Link";
import links from "./assets/modules/SitemapAccordion.module.scss";
import more from "./assets/svgs/more.svg";
const SitemapAccordion = () => {
return (
<Accordion className={links["accordion"]} alwaysOpen={true}>
<AccordionItem>
<AccordionHeader>
<h4>Institucional</h4>
<img src={more} alt="Icone de +" />
</AccordionHeader>
<AccordionBody>
<ul>
<Link text="Quem Somos" href="/" />
<Link text="Política de Privacidade" href="/" />
<Link text="Segurança" href="/" />
<Link text="Seja um Revendedor" href="/" />
</ul>
</AccordionBody>
</AccordionItem>
<AccordionItem>
<AccordionHeader>
<h4>Dúvidas</h4>
<img src={more} alt="Icone de +" />
</AccordionHeader>
<AccordionBody>
<ul>
<Link text="Entrega" href="/" />
<Link text="Pagamento" href="/" />
<Link text="Trocas e Devoluções" href="/" />
<Link text="Dúvidas Frequentes" href="/" />
</ul>
</AccordionBody>
</AccordionItem>
<AccordionItem>
<AccordionHeader>
<h4>Fale Conosco</h4>
<img src={more} alt="Icone de +" />
</AccordionHeader>
<AccordionBody>
<ul>
<li>
<span>Atendimento Ao Consumidor</span>
</li>
<Link text="(11) 4159 9504" href="tel:1141599504" />
<li>
<span>Atendimento Online</span>
</li>
<Link text="(11) 99433-8825" href="tel:11994338825" />
</ul>
</AccordionBody>
</AccordionItem>
</Accordion>
);
};
export { SitemapAccordion };

View File

@ -0,0 +1,46 @@
import social from "./assets/modules/SocialMedias.module.scss";
import facebook from "./assets/svgs/facebook.svg";
import instagram from "./assets/svgs/instagram.svg";
import twitter from "./assets/svgs/twitter.svg";
import youtube from "./assets/svgs/youtube.svg";
import linkedin from "./assets/svgs/linkedin.svg";
const SocialMedias = () => {
return (
<div className={social["social"]}>
<div className={social["social__medias"]}>
<figure>
<a href="/">
<img src={facebook} alt="Ícone do facebook" />
</a>
</figure>
<figure>
<a href="/">
<img src={instagram} alt="Ícone do instagram" />
</a>
</figure>
<figure>
<a href="/">
<img src={twitter} alt="Ícone do twitter" />
</a>
</figure>
<figure>
<a href="/">
<img src={youtube} alt="Ícone do youtube" />
</a>
</figure>
<figure>
<a href="/">
<img src={linkedin} alt="Ícone do linkedin" />
</a>
</figure>
</div>
<div className={social["social__website"]}>
<a href="/">www.loremipsum.com</a>
</div>
</div>
);
};
export { SocialMedias };

View File

@ -0,0 +1,53 @@
.developed {
display: flex;
align-items: center;
gap: 13px;
@media screen and (min-width: 2500px) {
gap: 12px;
}
@media screen and (max-width: 1024px) {
order: 2;
}
span {
font-weight: 400;
font-size: 10px;
line-height: 12px;
color: var(--white);
@media screen and (min-width: 2500px) {
font-size: 20px;
line-height: 23px;
}
}
a {
display: contents;
figure {
display: contents;
.vtex {
width: 44.92px;
height: 16px;
@media screen and (min-width: 2500px) {
width: 84.22px;
height: 30px;
}
}
.m3 {
width: 28.66px;
height: 15.65px;
@media screen and (min-width: 2500px) {
width: 54.95px;
height: 30px;
}
}
}
}
}

View File

@ -0,0 +1,10 @@
.wrapper {
padding: 50px 100px;
display: flex;
justify-content: space-between;
@media screen and (max-width: 1024px) {
padding: 24px 16px;
flex-direction: column;
}
}

View File

@ -0,0 +1,126 @@
.footer {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--black);
padding: 15px 100px;
@media screen and (max-width: 1024px) {
padding: 15px 16px;
flex-direction: column;
align-items: flex-start;
gap: 15px;
}
p {
width: 234px;
font-weight: 400;
font-size: 10px;
line-height: 12px;
color: var(--white);
text-transform: capitalize;
@media screen and (min-width: 2500px) {
width: 467px;
font-size: 20px;
line-height: 23px;
}
@media screen and (max-width: 1024px) {
order: 1;
}
}
&__icons {
display: flex;
align-items: center;
gap: 12px;
@media screen and (min-width: 1025px) and (max-width: 1070px) {
gap: 6px;
}
@media screen and (max-width: 599px) {
gap: 11px;
}
@media screen and (max-width: 361px) {
gap: 6px;
}
ul {
list-style: none;
display: flex;
align-items: center;
gap: 12px;
@media screen and (min-width: 1025px) and (max-width: 1070px) {
gap: 6px;
}
@media screen and (max-width: 599px) {
gap: 11px;
}
@media screen and (max-width: 361px) {
gap: 6px;
}
li {
display: contents;
figure {
display: contents;
img {
@media screen and (min-width: 2500px) {
width: 70px;
height: 40px;
}
@media screen and (max-width: 599px) {
width: 30px;
height: 17px;
}
@media screen and (max-width: 361px) {
width: 24px;
height: 15px;
}
}
}
}
}
div {
background-color: var(--gray-100);
width: 1px;
height: 24px;
@media screen and (max-width: 599px) {
height: 20px;
}
}
figure {
display: contents;
img {
@media screen and (min-width: 2500px) {
width: 106px;
height: 66px;
}
@media screen and (max-width: 599px) {
width: 45px;
height: 28px;
}
@media screen and (max-width: 361px) {
width: 35px;
height: 25px;
}
}
}
}
}

View File

@ -6,7 +6,17 @@
display: flex;
justify-content: center;
@media screen and (max-width: 1024px) {
margin-top: 80px;
justify-content: left;
padding: 16px 16px;
}
&__wrapper {
@media screen and (max-width: 1024px) {
width: 100%;
}
h3 {
color: var(--black-200);
font-weight: 500;
@ -14,10 +24,26 @@
line-height: 21px;
letter-spacing: 0.05em;
margin-bottom: 8px;
@media screen and (min-width: 2500px) {
font-size: 36px;
line-height: 42px;
}
@media screen and (max-width: 1024px) {
font-size: 14px;
line-height: 16px;
margin-bottom: 16px;
}
}
form {
position: relative;
display: flex;
@media screen and (max-width: 1024px) {
display: inherit;
}
input {
padding: 13px 16px;
@ -31,11 +57,34 @@
height: 42px;
margin-right: 8px;
@media screen and (min-width: 2500px) {
width: 668px;
height: 59px;
font-size: 28px;
line-height: 33px;
}
@media screen and (max-width: 1024px) {
padding: 17px 16px;
height: 50px;
margin-right: 0;
margin-bottom: 16px;
width: 100%;
border-radius: unset;
}
&::placeholder {
font-weight: 400;
font-size: 14px;
line-height: 16px;
color: var(--gray-100);
@media screen and (min-width: 2500px) {
width: 668px;
height: 59px;
font-size: 28px;
line-height: 33px;
}
}
}
@ -51,7 +100,34 @@
font-weight: 700;
font-size: 12px;
line-height: 14px;
letter-spacing: 0.05em;
cursor: pointer;
transition: all 0.2s linear;
&:hover {
background-color: var(--black-100);
}
&:active {
background: var(--black);
}
@media screen and (min-width: 2500px) {
width: 246px;
height: 59px;
font-size: 24px;
line-height: 28px;
}
@media screen and (max-width: 1024px) {
width: 100%;
height: 50px;
border-radius: unset;
box-shadow: none;
font-size: 14px;
line-height: 16px;
padding: 17px;
}
}
}
@ -63,6 +139,18 @@
font-size: 10px;
line-height: 12px;
color: var(--red-100);
@media screen and (min-width: 2500px) {
top: 60px;
font-size: 13px;
line-height: 15px;
}
@media screen and (max-width: 1024px) {
left: unset;
right: 2px;
top: 50px;
}
}
.success {
@ -73,6 +161,18 @@
font-size: 10px;
line-height: 12px;
color: var(--green-100);
@media screen and (min-width: 2500px) {
top: 60px;
left: 250px;
font-size: 13px;
line-height: 15px;
}
@media screen and (max-width: 1024px) {
left: 2px;
top: 50px;
}
}
}
}

View File

@ -0,0 +1,73 @@
.sitemap {
display: flex;
gap: 121px;
@media screen and (max-width: 1024px) {
display: none;
}
&__col {
width: 155px;
@media screen and (min-width: 2500px) {
width: 315px;
}
h4 {
margin-bottom: 12px;
font-weight: 500;
font-size: 14px;
line-height: 16px;
color: var(--black-200);
text-transform: uppercase;
@media screen and (min-width: 2500px) {
font-size: 28px;
line-height: 33px;
}
}
ul {
list-style: none;
li {
margin-bottom: 12px;
a {
font-weight: 400;
font-size: 12px;
line-height: 14px;
color: var(--black-200);
text-decoration: none;
&:hover {
background-color: var(--gray-500);
transition: 0.3s;
}
@media screen and (min-width: 2500px) {
font-size: 24px;
line-height: 28px;
}
}
span {
font-weight: 500;
font-size: 12px;
line-height: 14px;
color: var(--black-200);
@media screen and (min-width: 2500px) {
font-size: 24px;
line-height: 28px;
}
}
&:last-child {
text-decoration: underline;
margin-bottom: 0;
}
}
}
}
}

View File

@ -0,0 +1,51 @@
.accordion {
width: 100%;
@media screen and (min-width: 1025px) {
display: none;
}
button {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
border: none;
background: none;
margin-bottom: 12px;
cursor: pointer;
h4 {
font-weight: 500;
font-size: 14px;
line-height: 16px;
color: var(--black-200);
}
}
ul {
list-style: none;
li {
margin-bottom: 12px;
a {
font-weight: 400;
font-size: 12px;
line-height: 14px;
color: var(--black-200);
text-decoration: none;
}
span {
font-weight: 500;
font-size: 12px;
line-height: 14px;
color: var(--black-200);
}
&:last-child {
text-decoration: underline;
}
}
}
}

View File

@ -0,0 +1,42 @@
.social {
&__medias {
display: flex;
gap: 10px;
margin-bottom: 12px;
figure {
display: contents;
a {
display: contents;
img {
@media screen and (min-width: 2500px) {
width: 75px;
height: 75px;
}
}
}
}
}
&__website {
a {
font-weight: 400;
font-size: 14px;
line-height: 16px;
color: var(--black-200);
text-decoration: none;
&:hover {
background-color: var(--gray-500);
transition: 0.3s;
}
@media screen and (min-width: 2500px) {
font-size: 28px;
line-height: 33px;
}
}
}
}

View File

@ -0,0 +1,5 @@
import * as Yup from "yup";
export default Yup.object().shape({
email: Yup.string().required("*Campo obrigatório").email("Email inválido"),
});

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -0,0 +1,3 @@
<svg width="2" height="24" viewBox="0 0 2 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<line x1="0.908936" y1="2.18557e-08" x2="0.908934" y2="24" stroke="#C4C4C4"/>
</svg>

After

Width:  |  Height:  |  Size: 179 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,16 @@
<svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6214_894)">
<g clip-path="url(#clip1_6214_894)">
<path d="M19.1778 27.4911V18.544H22.1734L22.6228 15.0561H19.1778V12.8296C19.1778 11.8201 19.4564 11.1321 20.9026 11.1321L22.7441 11.1314V8.01166C22.4256 7.97019 21.3325 7.87511 20.0602 7.87511C17.4034 7.87511 15.5845 9.50026 15.5845 12.4842V15.0561H12.5799V18.544H15.5845V27.4911H19.1778Z" fill="#303030"/>
</g>
<circle cx="17.5" cy="17.5" r="16.5" stroke="#303030" stroke-width="2"/>
</g>
<defs>
<clipPath id="clip0_6214_894">
<rect width="35" height="35" fill="white"/>
</clipPath>
<clipPath id="clip1_6214_894">
<rect width="19.574" height="19.616" fill="white" transform="translate(7.87497 7.87509)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 803 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,18 @@
<svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6214_899)">
<g clip-path="url(#clip1_6214_899)">
<path d="M22.0996 7.87509H13.2966C10.3071 7.87509 7.87497 10.3036 7.87497 13.2884V22.0777C7.87497 25.0626 10.3071 27.491 13.2966 27.491H22.0996C25.0893 27.491 27.5214 25.0625 27.5214 22.0777V13.2884C27.5215 10.3036 25.0893 7.87509 22.0996 7.87509ZM25.7784 22.0777C25.7784 24.103 24.1281 25.7506 22.0997 25.7506H13.2966C11.2683 25.7507 9.6181 24.103 9.6181 22.0777V13.2884C9.6181 11.2632 11.2683 9.61551 13.2966 9.61551H22.0996C24.128 9.61551 25.7783 11.2632 25.7783 13.2884V22.0777H25.7784Z" fill="#303030"/>
<path d="M17.6982 12.6288C14.9067 12.6288 12.6358 14.8962 12.6358 17.6833C12.6358 20.4703 14.9067 22.7376 17.6982 22.7376C20.4896 22.7376 22.7606 20.4703 22.7606 17.6833C22.7606 14.8962 20.4896 12.6288 17.6982 12.6288ZM17.6982 20.9971C15.868 20.9971 14.3789 19.5105 14.3789 17.6832C14.3789 15.8558 15.8679 14.3691 17.6982 14.3691C19.5285 14.3691 21.0175 15.8558 21.0175 17.6832C21.0175 19.5105 19.5284 20.9971 17.6982 20.9971Z" fill="#303030"/>
<path d="M22.9729 11.1531C22.6371 11.1531 22.3072 11.2889 22.07 11.5267C21.8317 11.7634 21.6946 12.0929 21.6946 12.4294C21.6946 12.7648 21.8318 13.0942 22.07 13.3321C22.3071 13.5688 22.6371 13.7057 22.9729 13.7057C23.3099 13.7057 23.6388 13.5688 23.877 13.3321C24.1153 13.0942 24.2512 12.7647 24.2512 12.4294C24.2512 12.0929 24.1153 11.7634 23.877 11.5267C23.64 11.2889 23.3099 11.1531 22.9729 11.1531Z" fill="#303030"/>
</g>
<circle cx="17.5" cy="17.5" r="16.5" stroke="#303030" stroke-width="2"/>
</g>
<defs>
<clipPath id="clip0_6214_899">
<rect width="35" height="35" fill="white"/>
</clipPath>
<clipPath id="clip1_6214_899">
<rect width="19.6465" height="19.616" fill="white" transform="translate(7.87497 7.87509)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,18 @@
<svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6214_914)">
<circle cx="17.5" cy="17.5" r="16.5" stroke="#303030" stroke-width="2"/>
<g clip-path="url(#clip1_6214_914)">
<path d="M13.4447 13.8592H10.2981C10.1584 13.8592 10.0453 13.9724 10.0453 14.112V24.2205C10.0453 24.3602 10.1584 24.4733 10.2981 24.4733H13.4447C13.5843 24.4733 13.6975 24.3602 13.6975 24.2205V14.112C13.6975 13.9724 13.5843 13.8592 13.4447 13.8592Z" fill="#303030"/>
<path d="M11.8725 8.83394C10.7276 8.83394 9.7962 9.76436 9.7962 10.908C9.7962 12.0521 10.7276 12.9829 11.8725 12.9829C13.0165 12.9829 13.9472 12.0521 13.9472 10.908C13.9473 9.76436 13.0165 8.83394 11.8725 8.83394Z" fill="#303030"/>
<path d="M21.4482 13.6079C20.1844 13.6079 19.2502 14.1512 18.6835 14.7685V14.112C18.6835 13.9724 18.5704 13.8592 18.4307 13.8592H15.4174C15.2777 13.8592 15.1646 13.9724 15.1646 14.112V24.2205C15.1646 24.3602 15.2777 24.4733 15.4174 24.4733H18.557C18.6967 24.4733 18.8098 24.3602 18.8098 24.2205V19.2191C18.8098 17.5338 19.2676 16.8772 20.4425 16.8772C21.722 16.8772 21.8236 17.9298 21.8236 19.3058V24.2206C21.8236 24.3602 21.9368 24.4734 22.0764 24.4734H25.2173C25.3569 24.4734 25.4701 24.3602 25.4701 24.2206V18.6759C25.4701 16.1698 24.9922 13.6079 21.4482 13.6079Z" fill="#303030"/>
</g>
</g>
<defs>
<clipPath id="clip0_6214_914">
<rect width="35" height="35" fill="white"/>
</clipPath>
<clipPath id="clip1_6214_914">
<rect width="15.6739" height="15.6739" fill="white" transform="translate(9.7962 8.8167)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,4 @@
<svg width="29" height="16" viewBox="0 0 29 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.0307 5.52928C16.5833 4.93587 16.0213 4.44237 15.3795 4.0793C14.7376 3.71622 14.0296 3.49127 13.2992 3.41835C12.5688 3.34544 11.8315 3.42611 11.1328 3.65537C10.4342 3.88464 9.78905 4.25763 9.23731 4.7513L8.76065 4.38176C5.48598 2.02835 0.900479 4.0268 0.471483 8.05773C0.34098 9.99969 0.307571 11.9472 0.371384 13.8926C0.360856 14.1423 0.400742 14.3914 0.488564 14.6247C0.576387 14.858 0.710272 15.0703 0.88191 15.2486C1.05355 15.4269 1.25928 15.5673 1.48632 15.6611C1.71337 15.7549 1.95689 15.8 2.20177 15.7938C2.44143 15.7927 2.6784 15.7423 2.89845 15.6454C3.11851 15.5486 3.31709 15.4073 3.48227 15.2302C3.64746 15.0531 3.77583 14.8437 3.85968 14.6147C3.94352 14.3856 3.98111 14.1417 3.97019 13.8975C3.97019 12.4971 3.97019 11.0967 3.97019 9.69149C3.96633 9.2749 3.99502 8.85866 4.05599 8.44672C4.13287 8.0251 4.3634 7.64881 4.70121 7.39352C5.03901 7.13823 5.45905 7.02288 5.87684 7.07066C6.28524 7.10207 6.66838 7.28435 6.95445 7.58333C7.24052 7.88231 7.40987 8.27746 7.43076 8.6947C7.45459 9.21012 7.43076 9.72553 7.43076 10.2409C7.43076 11.4954 7.43076 12.7499 7.43076 14.0044C7.42587 14.3683 7.53195 14.7247 7.73434 15.0244C7.93673 15.3241 8.22541 15.5521 8.56045 15.6771C9.77594 16.1925 11.0153 15.2881 11.0391 13.8634C11.0391 12.2054 11.0391 10.5473 11.0868 8.8892C11.1028 8.48838 11.2229 8.0991 11.4347 7.76112C11.6364 7.4631 11.9287 7.24114 12.2665 7.12952C12.6042 7.01791 12.9685 7.02285 13.3032 7.1436C13.6808 7.25154 14.0109 7.48776 14.2388 7.81317C14.4668 8.13857 14.579 8.53364 14.5569 8.93296C14.5569 10.6105 14.5569 12.288 14.5569 13.9655C14.5569 14.2063 14.6033 14.4446 14.6937 14.6671C14.784 14.8895 14.9163 15.0915 15.0832 15.2618C15.2501 15.432 15.4482 15.567 15.6662 15.6591C15.8842 15.7513 16.1179 15.7987 16.3539 15.7987C16.5899 15.7987 16.8236 15.7513 17.0416 15.6591C17.2596 15.567 17.4577 15.432 17.6246 15.2618C17.7914 15.0915 17.9238 14.8895 18.0141 14.6671C18.1044 14.4446 18.1509 14.2063 18.1509 13.9655C18.1509 12.2491 18.1509 10.5619 18.1509 8.82113C18.1542 7.62603 17.7592 6.46529 17.0307 5.52928Z" fill="white"/>
<path d="M26.035 6.5015L25.4678 6.26325C26.0302 5.8159 26.5641 5.43177 27.0407 4.99416C27.4642 4.65403 27.8298 4.24496 28.1228 3.78342C28.9808 2.14966 27.77 0.248458 25.8491 0.204696C24.0759 0.180384 22.3075 0.180384 20.5343 0.180384C20.3171 0.165073 20.0992 0.19678 19.8949 0.273425C19.6905 0.350069 19.5044 0.46992 19.3486 0.625113C19.1929 0.780306 19.0711 0.967335 18.9912 1.17393C18.9113 1.38052 18.8751 1.60202 18.8851 1.82387C18.8638 2.04985 18.891 2.27783 18.9648 2.49201C19.0385 2.7062 19.157 2.90146 19.3121 3.06428C19.4671 3.22709 19.6551 3.35356 19.8628 3.43492C20.0706 3.51627 20.2932 3.55057 20.5152 3.53544C21.3828 3.53544 22.2503 3.53544 23.1178 3.53544C23.2656 3.58406 23.4181 3.58406 23.7041 3.58406C22.5268 4.55654 21.44 5.4804 20.3675 6.39453C19.6763 6.97802 19.4666 7.61499 19.7097 8.33949C19.8388 8.6971 20.0794 9.00161 20.3946 9.20627C20.7097 9.41093 21.082 9.50443 21.4543 9.47243C22.3742 9.47243 23.2989 9.47243 24.2189 9.47243C24.4252 9.43352 24.6374 9.44139 24.8404 9.4955C25.0434 9.54961 25.2322 9.64862 25.3935 9.78551C25.5548 9.92241 25.6846 10.0938 25.7736 10.2876C25.8627 10.4814 25.9089 10.6928 25.9089 10.9068C25.9089 11.1209 25.8627 11.3323 25.7736 11.5261C25.6846 11.7198 25.5548 11.8913 25.3935 12.0282C25.2322 12.1651 25.0434 12.2641 24.8404 12.3182C24.6374 12.3723 24.4252 12.3802 24.2189 12.3412C23.0273 12.3412 21.8356 12.3412 20.6439 12.3412C20.2262 12.3643 19.833 12.5498 19.5453 12.8596C19.2576 13.1694 19.0972 13.5799 19.0972 14.0066C19.0972 14.4334 19.2576 14.8439 19.5453 15.1537C19.833 15.4635 20.2262 15.649 20.6439 15.672C21.888 15.672 23.1369 15.672 24.381 15.672C25.4738 15.6437 26.5239 15.2331 27.3553 14.5089C28.1867 13.7848 28.7488 12.7912 28.9474 11.6945C29.1057 10.6209 28.9043 9.52417 28.3758 8.58176C27.8473 7.63936 27.0225 6.90642 26.035 6.5015Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,3 @@
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.625 3.32031H7.79688V4.6875H4.625V8.28125H3.17188V4.6875H0V3.32031H3.17188V0H4.625V3.32031Z" fill="#303030"/>
</svg>

After

Width:  |  Height:  |  Size: 220 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,11 @@
<svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6214_906)">
<circle cx="17.5" cy="17.5" r="16.5" stroke="#303030" stroke-width="2"/>
<path d="M29.9915 10.1563C29.0947 10.5497 28.1392 10.8104 27.143 10.937C28.1679 10.3251 28.95 9.36358 29.3178 8.20462C28.3623 8.7743 27.3073 9.1767 26.183 9.40126C25.2757 8.43521 23.9826 7.83688 22.572 7.83688C19.8351 7.83688 17.6317 10.0584 17.6317 12.7817C17.6317 13.1735 17.6648 13.5503 17.7462 13.909C13.6363 13.7086 9.99968 11.7388 7.55666 8.73813C7.13015 9.47812 6.87997 10.3251 6.87997 11.2369C6.87997 12.949 7.76163 14.4666 9.07583 15.3453C8.28158 15.3302 7.50241 15.0996 6.8423 14.7364C6.8423 14.7515 6.8423 14.7711 6.8423 14.7907C6.8423 17.193 8.55588 19.1884 10.803 19.6481C10.4006 19.7581 9.96201 19.8108 9.50686 19.8108C9.19037 19.8108 8.87086 19.7928 8.57095 19.7264C9.21147 21.6842 11.029 23.1235 13.1902 23.1702C11.5083 24.4859 9.37273 25.2786 7.06083 25.2786C6.65541 25.2786 6.26658 25.2605 5.87775 25.2108C8.06757 26.623 10.6628 27.4293 13.4615 27.4293C22.5584 27.4293 27.5319 19.8937 27.5319 13.3619C27.5319 13.1434 27.5243 12.9324 27.5138 12.7229C28.4949 12.0266 29.3193 11.157 29.9915 10.1563Z" fill="#303030"/>
</g>
<defs>
<clipPath id="clip0_6214_906">
<rect width="35" height="35" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,9 @@
<svg width="56" height="34" viewBox="0 0 56 34" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect x="0.408936" width="54.6061" height="34" fill="url(#pattern0)"/>
<defs>
<pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_6214_933" transform="translate(0 -0.00590909) scale(0.005 0.0080303)"/>
</pattern>
<image id="image0_6214_933" width="200" height="126" xlink:href="data:image/png;base64,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"/>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -0,0 +1,7 @@
<svg width="46" height="16" viewBox="0 0 46 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M32.8807 5.99083H31.2736V11.4557C31.2736 11.558 31.1851 11.6456 31.0819 11.6456H29.8433C29.7401 11.6456 29.6517 11.558 29.6517 11.4557V5.99083H28.0298C27.9855 5.99083 27.9265 5.97622 27.8971 5.94699C27.8676 5.91777 27.8381 5.87394 27.8381 5.81549V4.8511C27.8381 4.80727 27.8528 4.74882 27.8971 4.7196C27.9265 4.69037 27.9855 4.66115 28.0298 4.67576H32.8807C32.9839 4.67576 33.0724 4.74882 33.0724 4.8511V5.81549C33.0724 5.91777 32.9839 5.99083 32.8807 5.99083Z" fill="white"/>
<path d="M38.0559 11.6017C37.4219 11.6894 36.7732 11.7332 36.1391 11.7186C34.9153 11.7186 33.839 11.4118 33.839 9.70216V6.58983C33.839 4.88024 34.9301 4.588 36.1539 4.588C36.7879 4.57339 37.4219 4.61723 38.0559 4.7049C38.1886 4.71951 38.2476 4.77796 38.2476 4.89485V5.77157C38.2476 5.87385 38.1592 5.96152 38.0559 5.96152H36.0654C35.6231 5.96152 35.4609 6.10764 35.4609 6.60444V7.45193H37.9822C38.0854 7.45193 38.1739 7.53961 38.1739 7.64189V8.53321C38.1739 8.6355 38.0854 8.72317 37.9822 8.72317H35.4609V9.71678C35.4609 10.199 35.6231 10.3597 36.0654 10.3597H38.0559C38.1592 10.3597 38.2476 10.4474 38.2476 10.5497V11.4264C38.2476 11.5286 38.1886 11.5871 38.0559 11.6017Z" fill="white"/>
<path d="M45.1925 11.6455H43.6885C43.5853 11.6601 43.4821 11.6016 43.4379 11.4993L42.1256 9.45367L40.946 11.4555C40.8871 11.5724 40.8133 11.6455 40.7101 11.6455H39.3094C39.2799 11.6455 39.2357 11.6455 39.2062 11.6162C39.1767 11.587 39.1619 11.5578 39.1619 11.5139C39.1619 11.4847 39.1767 11.4701 39.1767 11.4555L41.2262 8.06555L39.1472 4.85094C39.1324 4.83632 39.1324 4.8071 39.1324 4.79249C39.1324 4.71943 39.2062 4.66098 39.2799 4.67559H40.8281C40.9313 4.67559 41.005 4.76327 41.064 4.85094L42.273 6.75048L43.4526 4.85094C43.4969 4.74865 43.5853 4.69021 43.6885 4.67559H45.0893C45.163 4.67559 45.2367 4.71943 45.2367 4.79249C45.2367 4.8071 45.222 4.83632 45.222 4.85094L43.1577 8.09477L45.3104 11.4555C45.3252 11.4847 45.3399 11.5139 45.3399 11.5432C45.3252 11.6016 45.2662 11.6455 45.1925 11.6455Z" fill="white"/>
<path d="M25.5821 4.69058C25.5084 4.69058 25.4494 4.73442 25.4347 4.80748L24.0634 9.84857C24.0487 9.95085 24.0192 9.99469 23.9307 9.99469C23.8423 9.99469 23.8128 9.95085 23.798 9.84857L22.4268 4.80748C22.412 4.73442 22.353 4.69058 22.2793 4.69058H20.9228C20.8786 4.69058 20.8344 4.70519 20.8049 4.74903C20.7754 4.77825 20.7606 4.82209 20.7754 4.86592C20.7754 4.86592 22.4563 10.6522 22.471 10.7107C22.6922 11.3974 23.2377 11.7335 23.9307 11.7335C24.5942 11.7627 25.1988 11.339 25.3904 10.7107C25.4199 10.6376 27.0566 4.86592 27.0566 4.86592C27.0713 4.82209 27.0566 4.77825 27.0271 4.74903C26.9976 4.71981 26.9534 4.69058 26.9091 4.69058H25.5821Z" fill="white"/>
<path d="M17.9149 0H3.80434C3.28828 0 2.81645 0.277625 2.56579 0.70137C2.30039 1.13973 2.28565 1.68037 2.52156 2.11872L3.93704 4.77808H1.37148C1.0471 4.77808 0.737464 4.93881 0.560528 5.21644C0.383593 5.49406 0.383593 5.84475 0.531039 6.13699L5.07237 14.6411C5.23457 14.9479 5.55895 15.1379 5.89807 15.1379C6.2372 15.1379 6.56158 14.9479 6.72377 14.6411L7.96232 12.3324L9.5105 15.2402C9.76116 15.7078 10.2625 16 10.7933 16C11.3241 16 11.8254 15.7078 12.0761 15.2402L19.1535 2.04566C19.3894 1.60731 19.3746 1.08128 19.1092 0.672146C18.8733 0.248402 18.4015 0 17.9149 0ZM11.6042 5.56712L8.50787 11.3242C8.40465 11.5288 8.19823 11.6457 7.96232 11.6457C7.7264 11.6457 7.51998 11.5142 7.41677 11.3242L4.36463 5.62557C4.27617 5.45023 4.27617 5.24566 4.37938 5.07032C4.48259 4.89498 4.67427 4.79269 4.86595 4.79269H11.1177C11.3093 4.79269 11.4863 4.88036 11.5747 5.0411C11.6927 5.20183 11.6927 5.40639 11.6042 5.56712Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -0,0 +1,11 @@
<svg width="35" height="35" viewBox="0 0 35 35" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_6214_911)">
<circle cx="17.5" cy="17.5" r="16.5" stroke="#303030" stroke-width="2"/>
<path d="M27.8027 12.2486C27.5447 11.2896 26.7886 10.5336 25.8297 10.2754C24.0779 9.79604 17.0706 9.79604 17.0706 9.79604C17.0706 9.79604 10.0636 9.79604 8.31176 10.2572C7.3713 10.5152 6.59672 11.2897 6.33875 12.2486C5.87775 14.0003 5.87775 17.633 5.87775 17.633C5.87775 17.633 5.87775 21.284 6.33875 23.0174C6.59699 23.9763 7.35285 24.7323 8.31189 24.9905C10.082 25.47 17.0709 25.47 17.0709 25.47C17.0709 25.47 24.0779 25.47 25.8297 25.0088C26.7887 24.7507 27.5447 23.9947 27.803 23.0358C28.2638 21.284 28.2638 17.6514 28.2638 17.6514C28.2638 17.6514 28.2823 14.0003 27.8027 12.2486ZM14.8396 20.989V14.277L20.6665 17.633L14.8396 20.989Z" fill="#303030"/>
</g>
<defs>
<clipPath id="clip0_6214_911">
<rect width="35" height="35" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 976 B

View File

@ -14,6 +14,10 @@
width: 97.4609%;
height: 585px;
@media screen and (max-width: 599px) {
width: 90.4%;
}
&__top {
display: flex;
justify-content: space-between;

View File

@ -24,6 +24,7 @@
@media screen and (max-width: 1024px) {
width: 100%;
height: 36px;
}
&::placeholder {
@ -45,6 +46,10 @@
padding: 1px;
}
@media screen and (max-width: 1024px) {
top: 8px;
}
img {
@media screen and (min-width: 2500px) {
width: 35.15px;

View File

@ -8,12 +8,16 @@ const Breadcrumb = () => {
<div className={breadcrumb["breadcrumb"]}>
<a href="/">
<figure>
<img src={iconHome} alt="Icone Home" />
<img className={breadcrumb["home"]} src={iconHome} alt="Icone Home" />
</figure>
</a>
<figure>
<img src={iconArrow} alt="Icone Flecha para direita" />
<img
className={breadcrumb["arrow"]}
src={iconArrow}
alt="Icone Flecha para direita"
/>
</figure>
<span>INSTITUCIONAL</span>
</div>

View File

@ -64,8 +64,6 @@ const phoneNumberMask = [
/\d/,
];
const insta = ["@"];
const Contato = () => {
return (
<div className={contato["forms"]}>
@ -136,7 +134,7 @@ const Contato = () => {
/>
</div>
<div className={contato["forms__form-col"]}>
<label htmlFor="date">Data de Nascimento</label>
<label htmlFor="date">Data de Nascimento:</label>
<Field
name="date"
render={({ field }: any) => (
@ -158,7 +156,7 @@ const Contato = () => {
/>
</div>
<div className={contato["forms__form-col"]}>
<label htmlFor="telefone">Telefone</label>
<label htmlFor="telefone">Telefone:</label>
<Field
name="telefone"
render={({ field }: any) => (

View File

@ -3,8 +3,6 @@ import { NavLink } from "react-router-dom";
import navigation from "./assets/modules/Navigation.module.scss";
const Navigation = () => {
/*let activeClassName = "ativo";*/
return (
<ul className={navigation["items"]}>
<li>

View File

@ -4,12 +4,30 @@
gap: 9.72px;
margin-bottom: 80px;
@media screen and (min-width: 2500px) {
gap: 12px;
}
a {
display: contents;
}
figure {
display: contents;
.home {
@media screen and (min-width: 2500px) {
width: 31.25px;
height: 31.25px;
}
}
.arrow {
@media screen and (min-width: 2500px) {
width: 8.9px;
height: 15.62px;
}
}
}
span {
@ -17,5 +35,10 @@
font-weight: 400;
font-size: 12px;
line-height: 14px;
@media screen and (min-width: 2500px) {
font-size: 24px;
line-height: 28px;
}
}
}

View File

@ -8,6 +8,15 @@
line-height: 28px;
color: var(--black);
margin-bottom: 12px;
@media screen and (min-width: 2500px) {
font-size: 48px;
line-height: 56px;
}
@media screen and (max-width: 1024px) {
text-align: center;
}
}
&__form-col {
@ -22,6 +31,11 @@
font-size: 14px;
line-height: 16px;
color: var(--black-300);
@media screen and (min-width: 2500px) {
font-size: 28px;
line-height: 33px;
}
}
input {
@ -35,11 +49,21 @@
color: var(--gray-400);
padding: 15px 20px;
@media screen and (min-width: 2500px) {
font-size: 28px;
line-height: 33px;
}
&::placeholder {
font-weight: 400;
font-size: 14px;
line-height: 16px;
color: var(--gray-400);
@media screen and (min-width: 2500px) {
font-size: 28px;
line-height: 33px;
}
}
}
}
@ -53,6 +77,13 @@
span {
color: var(--red-100);
margin-right: 2px;
font-weight: 400;
font-size: 14px;
line-height: 16px;
@media screen and (min-width: 2500px) {
font-size: 28px;
line-height: 33px;
}
}
label {
@ -62,6 +93,10 @@
margin-right: 4.28px;
position: relative;
text-decoration: underline;
@media screen and (min-width: 2500px) {
font-size: 28px;
line-height: 33px;
}
label {
position: absolute;
@ -70,6 +105,12 @@
border: 1px solid #000000;
border-radius: 3px;
right: -26px;
@media screen and (min-width: 2500px) {
width: 36.4px;
height: 35.15px;
right: -50px;
}
}
}
input {
@ -79,6 +120,16 @@
margin-left: 1px;
margin-top: 1.5px;
@media screen and (min-width: 2500px) {
width: 30px;
height: 28.5px;
margin-left: 8px;
}
@media screen and (max-width: 599px) {
margin-left: 1.6px;
}
&:checked {
opacity: 1;
}
@ -93,6 +144,11 @@
font-size: 12px;
line-height: 14px;
color: var(--red-100);
@media screen and (min-width: 2500px) {
font-size: 24px;
line-height: 28px;
}
}
button {
@ -106,6 +162,12 @@
letter-spacing: 0.05em;
color: var(--white);
cursor: pointer;
@media screen and (min-width: 2500px) {
font-size: 32px;
line-height: 38px;
height: 71px;
}
}
&__success {
@ -117,5 +179,10 @@
font-size: 12px;
line-height: 14px;
color: var(--green-100);
@media screen and (min-width: 2500px) {
font-size: 24px;
line-height: 28px;
}
}
}

View File

@ -4,6 +4,11 @@
margin-right: 100px;
margin-top: 29px;
@media screen and (max-width: 1024px) {
margin-left: 16px;
margin-right: 16px;
}
&__title {
color: var(--black-100);
font-style: normal;
@ -13,11 +18,24 @@
letter-spacing: 0.1em;
text-align: center;
margin-bottom: 80px;
@media screen and (min-width: 2500px) {
font-size: 48px;
line-height: 56px;
}
@media screen and (max-width: 1024px) {
margin-bottom: 40px;
}
}
&__wrapperNav {
display: flex;
@media screen and (max-width: 1024px) {
display: inherit;
}
.content {
align-self: center;
@ -26,7 +44,15 @@
font-weight: 700;
font-size: 24px;
line-height: 28px;
margin-bottom: 12px;
@media screen and (min-width: 2500px) {
font-size: 48px;
line-height: 56px;
}
@media screen and (max-width: 1024px) {
text-align: center;
}
}
p {
@ -34,7 +60,18 @@
font-weight: 400;
font-size: 13px;
line-height: 15px;
margin-bottom: 13px;
margin-top: 12px;
@media screen and (min-width: 2500px) {
font-size: 26px;
line-height: 30px;
}
@media screen and (max-width: 1024px) {
text-align: justify;
font-size: 12px;
line-height: 18px;
}
}
}
}

View File

@ -5,6 +5,19 @@
height: 285px;
margin-right: 30px;
@media screen and (min-width: 2500px) {
width: 590px;
height: 465px;
}
@media screen and (max-width: 1024px) {
width: 100%;
height: unset;
margin-right: 0;
border: none;
margin-bottom: 30px;
}
li {
width: inherit;
@ -17,7 +30,13 @@
font-size: 16px;
line-height: 19px;
@media screen and (min-width: 2500px) {
font-size: 32px;
line-height: 38px;
}
&.ativo {
font-weight: 700;
color: var(--white);
background-color: var(--black);
}

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB