/* Google Imports */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Importing global styles */
@import url("/src/css/desktop/header.css") (min-width:1000px);
@import url("/src/css/desktop/main.css") (min-width:1000px);
@import url("/src/css/desktop/start-section.css") (min-width:1000px);
@import url("/src/css/desktop/solutions-section.css") (min-width:1000px);
@import url("/src/css/desktop/projects-section.css") (min-width:1000px);
@import url("/src/css/desktop/contact-section.css") (min-width:1000px);
@import url("/src/css/desktop/modal-content.css") (min-width:1000px);
@import url("/src/css/desktop/footer.css") (min-width:1000px);

@import url("/src/css/mobile/header.css") (max-width:1000px);
@import url("/src/css/mobile/main.css") (max-width:1000px);
@import url("/src/css/mobile/start-section.css") (max-width:1000px);
@import url("/src/css/mobile/solutions-section.css") (max-width:1000px);
@import url("/src/css/mobile/projects-section.css") (max-width:1000px);
@import url("/src/css/mobile/contact-section.css") (max-width:1000px);
@import url("/src/css/mobile/modal-content.css") (max-width:1000px);
@import url("/src/css/mobile/footer.css") (max-width:1000px);

* {
  padding: 0;
  margin: 0;
}

:root {
  --AzulProfundo: rgb(0, 0, 255);
  --AzulEletrico: rgb(40, 100, 255);
  --AzulCeleste: rgb(80, 200, 255);
  --AzulClaro: rgb(236, 241, 255);
  --Branco: rgb(255, 255, 255);
  --GhostWhite: rgb(251, 252, 255);
  --Verde: rgb(118, 203, 147);
  --DarkGray: rgb(64, 64, 64);
  --LightBlueWithOpacity: rgba(236, 241, 255, 0.4);
}

.light-theme {
  --PageBackground: var(--Branco);
  --HighlightBackground: var(--GhostWhite);
  --HighlightBackgroundTransparent: rgba(251, 252, 255, 0.8);
  --TextColor: var(--DarkGray);
  --HoverColor: var(--LightBlueWithOpacity);
  --BorderColor: var(--AzulClaro);
  --ImgDevices: url("/src/img/devicesBGWhite.png");
}

.dark-theme {
  --PageBackground: #181818;
  --HighlightBackground: #1f1f1f;
  --HighlightBackgroundTransparent: rgba(31, 31, 31, 0.8);
  --TextColor: var(--AzulClaro);
  --HoverColor: var(--LightBlueWithOpacity);
  --BorderColor: #2B2B2B;
  --ImgDevices: url("/src/img/devicesBGBlack.png");
}

body {
  width: 100%;
  height: 100dvh;
  background-color: var(--PageBackground);
  transition: 0.4s;
}

body::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar-thumb {
    display: none;
}

@keyframes openModal {
    0% {
        transform: translateY(400px);
    }

    100% {
        transform: translateY(0px);
    }
}