/* ===== FONT FACES ===== */
@font-face {
  font-family: Glorich-Regular;
  src: url(fonts/Glorich-Regular.ttf);
}
@font-face {
  font-family: Glorich-Bold;
  src: url(fonts/Glorich-Bold.ttf);
}
@font-face {
  font-family: Glorich-ExtraBold;
  src: url(fonts/Glorich-ExtraBold.ttf);
}
@font-face {
  font-family: Glorich-ExtraLight;
  src: url(fonts/Glorich-ExtraLight.ttf);
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-light: rgba(0, 0, 0, 0.3);
  --color-overlay: rgba(0, 0, 0, 0.75);
  
  /* Fonts */
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Barlow Semi Condensed", sans-serif;
  --font-glorich-light: Glorich-ExtraLight;
  --font-glorich-bold: Glorich-Bold;
  
  /* Spacing */
  --space-xs: 10px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 65px;
  --space-xl: 85px;
  
  /* Sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1.4em;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 3.5rem;
  
  /* Effects */
  --transition-base: 0.4s;
  --transition-slow: 1s;
  --shadow-text: 0 0 10px var(--color-black);
}

/* ===== BASE STYLES ===== */
* {
  transition: var(--transition-base);
}

html {
  /* scroll-snap-type: y mandatory; */
  /* scroll-behavior: smooth; */
  /* scroll-padding-top: 3vh; */
}

body {
  font-family: var(--font-primary);
  font-weight: 200;
}

a {
  color: var(--color-black);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:hover,
a:visited,
a:active {
  color: var(--color-black);
}

/* ===== TYPOGRAPHY ===== */
#fadeWord {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  width: 100%;
}

h1, h2 {
  font-family: var(--font-secondary);
  margin: 0;
}

h1 span, h2 span {
  font-family: var(--font-secondary);
  font-weight: 800;
}

h2 {
  color: var(--color-white);
}

p {
  font-family: var(--font-primary);
}
p span {
  font-weight: bold;
}

.glorich-bold {
  font-family: var(--font-glorich-bold);
}

.default-lh {
  line-height: 1.6;
}

.font-size-xl
{
  font-size:  var(--font-size-xl);
}

/* ===== LAYOUT ===== */
.container-fluid {
  padding: 0;
}

section {
  scroll-snap-align: start;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

/* ===== COMPONENTS ===== */
/* Services */
.services-list li {
  display: inline;
  font-size: var(--font-size-md);
}
.service-item:nth-child(even) span {
  font-weight: 600;
}

/* Backgrounds */
.backgrounds {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}

/* Text Effects */
.text-shadow,
#servicos h2,
#oquefazemos p {
  text-shadow: var(--shadow-text);
}

/* Forms */
input::placeholder,
textarea::placeholder {
  font-weight: lighter;
  font-family: var(--font-primary);
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea {
  width: 100%;
  text-align: start;
}

form input,
form textarea {
  border: none;
  margin-top: var(--space-xs);
  padding: var(--space-sm);
}

.form-control {
  border-radius: 0;
}

form p {
  color: var(--color-white);
  font-size: var(--font-size-sm);
  text-align: justify;
  padding-top: 6px;
}

.form-check-input {
  width: 32px;
  height: 32px;
  margin: 6px;
  margin-top: var(--space-sm);
  float: left;
  margin-left: 0;
}

/* Navigation */
.nav-link {
  font-family: var(--font-glorich-light);
  font-size: var(--font-size-sm);
}

nav {
  background-color: var(--color-white);
}

/* Buttons */
.btn-primary {
  background-color: var(--color-white);
  border: solid thin var(--color-white);
  color: var(--color-black) !important;
  border-radius: 0;
  padding: 1rem 2rem;
}
.btn-primary:hover {
  background-color: var(--color-black);
  border: solid thin var(--color-white);
  color: var(--color-white) !important;
}

/* Header Overlay */
.headerOverlay {
  padding: 5% 10%;
  background-color: var(--color-overlay);
  top: 20%;
  left: 0;
  z-index: 1;
}

/* Footer */
footer {
  font-size: var(--font-size-sm);
  font-family: var(--font-primary);
  font-weight: 100;
  background-color: var(--color-white);
}
footer a {
  color: var(--color-black);
}

/* Lines */
.line {
  position: absolute;
  left: 0;
  width: 120vw;
  border-top: solid 0.5px var(--color-gray-light);
  transform-origin: center left;
  z-index: -1;
}
.line1 { top: 10%; rotate: -25deg; }
.line2 { top: 48%; rotate: -25deg; }
.line3 { top: 81%; rotate: -15deg; }
.line5 { bottom: 5%; rotate: 15deg; width: 40vw; }


/* Hover Effects */
.hoverZoomBackground {
  background-size: 100%;
}
.hoverZoomBackground:hover {
  transition: all var(--transition-slow) cubic-bezier(0.42, 0, 0.58, 1);
  background-size: 110%;
}

.hoverZoomOutBackground {
  scale: 1;
}
.hoverZoomOutBackground:hover {
  transition: all var(--transition-slow) cubic-bezier(0.42, 0, 0.58, 1);
  scale: 1.1;
}

/* Contact */
.contactos-border-right {
  border-right: solid 1px var(--color-black);
}

/* Buttons */
[type="button"]:disabled,
[type="submit"]:disabled {
  opacity: 0.65;
  color: var(--bs-body-color);
  background-color: var(--color-white);
}