/* Import Google Fonts */

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* Global Styles */

* {
  margin: 0;
  padding: 0;
}

:root {
  --color-ccc: #ccc;
  --color-555: #555;
  --color-000: #000;
  --color-fff: #fff;
  --color-f5f5f5: #f5f5f5;
  --color-5c5851: #5c5851;
  --accent-color: #e8601a;
  --color-e8601a: #e8601a;

  --max-section-width: 1920px;
  --max-contanier-width: 1664px;
}

html{
  scroll-behavior: smooth;
}

/* Font Family Styles */

p,
a,
button,
strong,
small,
label,
input,
select,
option,
textarea {
  font-family: DM Sans;
}

a,
button {
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.6;
}

.ff-serif {
  font-family: DM Serif Display;
  font-weight: 400;
}

.ff-sans-serif {
  font-family: Dm sans;
}

.ff-serif .span {
  font-family: DM Serif Display !important;
}

/* Font Styles */

.fsi {
  font-style: italic;
}

/* Font Size Styles */

.fs-14 {
  font-size: 14px;
  line-height: 21px;
}

.fs-16 {
  font-size: 16px;
  line-height: 24px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
  line-height: 30px;
}

.fs-24 {
  font-size: 24px;
  line-height: 36px;
}

.fs-32 {
  font-size: 32px;
  line-height: 48px;
}

.fs-48 {
  font-size: 48px;
  line-height: 72px;
}

.fs-72 {
  font-size: 72px;
  line-height: 108px;
}

@media (max-width: 1000px) {
  .fs-72 {
    font-size: 56px;
    line-height: 84px;
  }
  
.fs-48-m{
  font-size: 48px;
  line-height: 72px;
}
}

/* Font Weight Styles */

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

/* Text Align Styles */

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

/* Letter Spacing Styles */

.ls-8 {
  letter-spacing: 2px;
}

/* Color Styles */

.accent-color {
  color: var(--accent-color);
}

.color-000 {
  color: var(--color-000);
}

.color-fff {
  color: var(--color-fff);
}

.color-555 {
  color: var(--color-555);
}

.color-ccc {
  color: var(--color-ccc);
}

.color-5c5851 {
  color: var(--color-5c5851);
}

.color-e8601a {
  color: var(--color-e8601a);
}

/* Max Width Styles */

.max-245 {
  max-width: 245px;
}

.max-394 {
  max-width: 394px;
}

.max-743 {
  max-width: 743px;
}

.max-759 {
  max-width: 759px;
}

.max-759 {
  max-width: 759px;
}

.max-914 {
  max-width: 914px;
}

.max-1920 {
  max-width: var(--max-section-width);
}

.max-content {
  max-width: max-content;
}

/* Display Styles */

.df {
  display: flex;
}

.fdc {
  flex-direction: column;
}

.jcc {
  justify-content: center;
}

.jsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

/* Gap Styles */
.g-5 {
  gap: 5px;
}

.g-8 {
  gap: 8px;
}

.g-10 {
  gap: 10px;
}

.g-16 {
  gap: 16px;
}

.g-19 {
  gap: 19px;
}

.g-24 {
  gap: 24px;
}

.g-32 {
  gap: 32px;
}

.g-40 {
  gap: 40px;
}

.g-56 {
  gap: 56px;
}

.g-256 {
  gap: 265px;
}

@media (max-width: 1200px) {
  .g-256 {
    gap: 80px;
  }
}

/* Padding Styles */

.p-16 {
  padding: 16px;
}

.p-24 {
  padding: 24px;
}

.p-40 {
  padding: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pr-128 {
  padding-right: 128px;
}

.pl-128 {
  padding-left: 128px;
}

@media (max-width: 1000px) {
  .pt-80 {
    padding-top: 40px;
  }

  .pb-80 {
    padding-bottom: 40px;
  }
}

/* Grid Styles */

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 1000px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Background Styles */

.bg-ccc {
  background: var(--color-ccc);
}

/* Section Header Footer Styles */

header,
section,
footer {
  padding-left: 128px;
  padding-right: 128px;

  gap: 40px;
}

section > div:first-of-type {
  max-width: var(--max-contanier-width);
  width: 100%;

  margin: 0 auto;
}

@media (max-width: 1200px) {
  header,
  section,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 400px) {
  section {
    overflow: hidden !important;
  }

  /*
  h1 {
    word-break: break-all;
  }
  */
}

/* Header Styles */

header.header-laon-ventures {
  background-color: #fff;

  width: 100%;

  max-width: calc(100% - 128px - 128px);

  height: 88px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-bottom: solid 1px var(--color-ccc);
}

@media (max-width: 1200px) {
  header.header-laon-ventures {
    max-width: calc(100% - 24px - 24px);
  }
}

.container-header-laon-ventures {
  width: 100%;
  max-width: var(--max-contanier-width);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-header-laon-ventures {
  width: 146px;
}

.nav-header-laon-ventures {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 40px;
}

.link-nav-header-laon-ventures {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;

  color: var(--color-555);

  text-decoration: none;
}

@media (max-width: 870px) {
  .link-nav-header-laon-ventures {
    display: none;
  }
}

.button-nav-header-laon-ventures {
  background: var(--color-000);

  color: var(--color-fff);

  gap: 10px;

  border-radius: 8px;
  padding: 16px;

  text-decoration: none;
}

@media (max-width: 330px) {
  .button-nav-header-laon-ventures {
    transform: scale(0.7);
    text-align: center;
  }
}

/* 001 */
/* Hero Styles */

.hero-section-laon-ventures {
  padding: 140px 128px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  position: relative;
}

@media (max-width: 1200px) {
  .hero-section-laon-ventures {
    padding: 40px 24px;
  }
}

.container-image-section-laon-ventures {
  width: 100%;
  height: 100%;
  max-width: var(--max-contanier-width);

  position: absolute;

  top: 0;

  z-index: 0;
}

@media (max-width: 1000px) {
  .container-image-section-laon-ventures {
    display: none;
  }
}

.image-section-laon-ventures {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.container-hero-section-laon-ventures {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.column-hero-section-laon-ventures {
  max-width: 951px;
}

@media (max-width: 1000px){
    .column-hero-section-laon-ventures.g-40 {
        gap: 32px !important
    }
    
}

.column-hero-section-laon-ventures {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Button Styles */

.button-hero-section-laon-ventures {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;

  border-radius: 8px;

  padding: 16px;

  background: var(--color-000);

  text-decoration: none;

  max-width: max-content;
}

.button-hero-section-laon-ventures span {
  font-family: DM Sans;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;

  color: var(--color-fff);
}

.container-notes-hero-section{
    max-width: 857px;
}

.container-notes-hero-section div {
  flex: 1;
}

.container-notes-hero-section div:nth-child(1),
.container-notes-hero-section div:nth-child(2) {
  border-right: solid 1px var(--color-ccc);
}

@media (max-width: 1000px) {
  .container-notes-hero-section div:nth-child(1),
  .container-notes-hero-section div:nth-child(2) {
    border-bottom: solid 1px var(--color-ccc);
    border-right: none;
  }
}

/* Source Section Styles */

.container-source-section-laon-ventures {
  align-items: center;
}

@media (max-width: 1000px){
    .container-source-section-laon-ventures.g-256{
    gap: 40px !important
}
}


/* Badge Laon Ventures Style */

.badge-black-horizontal-line-laon-ventures {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.badge-black-horizontal-line-laon-ventures span {
  width: 24px;
  height: 1px;
  background-color: var(--color-000);
}

.divider-64 {
  width: 64px;
}

.height-2 {
  height: 2px;
}

.column-02-container-source-section-laon-ventures {
  display: flex;
}

@media (max-width: 1000px) {
  .column-02-container-source-section-laon-ventures {
    justify-content: center;
    gap: 24px !important;
  }
}

.time-line-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 632px;
}

.dot-year {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  min-width: 40px;
  min-height: 40px;

  gap: 10px;

  border: solid 2px;
  border-radius: 100px;
  border-color: var(--color-ccc);

  font-family: DM Serif Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.4px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-line {
  height: 163px;

  width: 0px;

  opacity: 1;

  border: solid 1px;
  border-color: var(--color-ccc);
}

.time-line-right {
  height: 720px;
  max-width: 460px;
}

@media (max-width: 1000px) {
  .time-line-right {
    height: 748px;
  }
}

/* Video Section Laon Ventures */

.video-section-laon-ventures {
  background: var(--color-000);
}

.container-video-section-laon-ventures {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-container-laon-ventures {
  width: 100%;
  max-width: 1100px;

  height: 500px;
}

@media(max-width: 1000px) {
    .video-container-laon-ventures {
        height: 300px;
    }
}

.video-container-laon-ventures iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Badge White Laon Ventures*/

.badge-white-horizontal-line-laon-ventures {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.badge-white-horizontal-line-laon-ventures span {
  width: 24px;
  height: 1px;
  background: var(--color-ccc);
}

/* What We Do Section Laon Ventures*/

.grid-what-we-do {
  border: solid 1px var(--color-ccc);
}

.pr {
  position: relative;
}

.box-grid-what-we-do:nth-child(1),
.box-grid-what-we-do:nth-child(2),
.box-grid-what-we-do:nth-child(3) {
  border-right: solid 1px var(--color-ccc);
}

.icon-arrow-what-we-do-laon-ventures {
  position: absolute;
  right: -13px;
  top: 100px;
}

@media (max-width: 1000px) {
  .box-grid-what-we-do:nth-child(1),
  .box-grid-what-we-do:nth-child(2),
  .box-grid-what-we-do:nth-child(3) {
    border-bottom: solid 1px var(--color-ccc);
    border-right: none;
  }

  .icon-arrow-what-we-do-laon-ventures {
    bottom: -12px !important;
    top: auto;
    right: calc(50% - 12px);
    transform: rotate(90deg);
  }
}

@media(max-width: 1000px){
.what-we-do-section-laon-ventures .fs-32{
font-size: 24px; 
line-height: 36px;
}

}

/* Portfolio Section */

.portfolio-section-laon-ventures {
  background: var(--color-f5f5f5);
}

.grid-companies-laon-ventures {
  gap: 32px;
}

.box-companie-laon-ventures {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--color-fff);

  border: solid 1px var(--color-ccc);
  border-radius: 8px;

  flex: 1;
  gap: 16px;

  max-height: 200px;
  min-height: 200px;

  overflow: hidden;
  position: relative;

  transition: background-color 0.3s ease;
}

/* IMG */
.box-companie-laon-ventures img {
  object-fit: cover;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* CONTAINER DOS TEXTOS */
.box-companie-laon-ventures .content {
  position: absolute;
  width: 100%;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 16px;

  align-items: flex-start;

  text-align: left;

  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.box-companie-laon-ventures .content p {
  padding-left: 24px;
  max-width: calc(100% - 48px);
}

/* HOVER */
.box-companie-laon-ventures:hover {
  background-color: var(--color-000);
}

.box-companie-laon-ventures:hover img {
  opacity: 0;
  transform: scale(0.95);
}

.box-companie-laon-ventures:hover .content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .title-portfolio-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px !important
  }

  .title-portfolio-section .max-245 {
    max-width: 100%;
  }
}



.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(1) img {
  height: 152px;
}

.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(2) img {
  width: 236px;
}

.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(3) img,
.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(4) img,
.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(5) img,
.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(7) img,
.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(8) img,
.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(9) img {
  width: 240px;
}

.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(6) img {
  height: 152px;
}

.grid-companies-laon-ventures .box-companie-laon-ventures:nth-child(5) img {
  border-radius: 15px;
}

/* Testimonials Section */

/* MOBILE */


@media (max-width: 1000px) {

  .grid-testimonials {
    display: flex !important;
    flex-wrap: nowrap;

    overflow-x: auto;
    gap: 16px;

    padding: 0 20px 10px 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    max-width: calc(100% - 48px);

    animation: nudge-scroll 3s infinite;
  }

  .grid-testimonials > * {
    flex: 0 0 110%;
    max-width: none;
    scroll-snap-align: start;
  }
}

@keyframes nudge-scroll {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-10px); }
  40%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}

.box-grid-testimonials {
  box-sizing: border-box;
}

.box-grid-testimonials {
  border: solid 1px var(--color-ccc);
  border-radius: 8px;
}

.box-grid-testimonials .wh-48{
    width: 48px;
    height: 48px;
}

@media (max-width: 1000px){
.box-grid-testimonials .wh-48{
    width: 32px;
    height: 32px;
}
}

.profile-box-testimonials {
  width: 56px;
  height: 56px;

  display: flex;

  border-radius: 112px;

  background: var(--color-ccc);
}

/* Form Section Laon Ventures */

.form-section-laon-ventures {
  background-color: var(--color-f5f5f5);
}

.col-1-form-section-laon-ventures,
.col-2-form-section-laon-ventures {
  flex: 1;
}

@media (max-width: 1000px) {
    .container-form-section-laon-ventures.g-256{
        gap: 40px 
    }
    
  .col-1-form-section-laon-ventures,
  .col-2-form-section-laon-ventures {
    flex: auto;
  }
}

.dot-w-6 {
  width: 6px;
  height: 6px;

  min-width: 6px;
  min-height: 6px;
}

.bg-accent-color {
  background: var(--accent-color);
}

.form-laon-ventures {
  background: var(--color-fff);

  border: solid 1px var(--color-ccc);

  border-radius: 8px;

  padding: 40px;
}

@media (max-width: 1000px) {
  .form-laon-ventures {
    padding: 20px;
  }
}

@media (max-width: 1000px) {
  .form-laon-ventures {
    padding: 20px;
  }
}

.input-laon-ventures {
  border: solid 1px var(--color-ccc);
  border-radius: 8px;

  padding: 16px;

  background: var(--color-f5f5f5);

  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;

  outline: none;
}

.select-form-laon-ventures {
  min-width: 0;
  width: 100%;
    
  border: solid 1px var(--color-ccc);
  border-radius: 8px;

  padding: 16px;

  height: 56px;

  background: var(--color-f5f5f5);

  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;

  outline: none;

  overflow: hidden !important;

  color: var(--color-000);
}

.textarea-form-laon-ventures {
  border: solid 1px var(--color-ccc);
  border-radius: 8px;

  padding: 16px;

  background: var(--color-f5f5f5);

  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;

  min-height: 120px;
  max-width: 624px;

  outline: none;
}

.btn-submit-form-laon-ventures {
  background-color: var(--color-000);
  color: var(--color-fff);

  gap: 10px;

  border-radius: 8px;
  padding: 16px;

  border: none;
  outline: none;

  cursor: pointer;
}


/* Footer */

.footer-laon-ventures {
  border-top: solid 1px var(--color-ccc);
}


.logo-footer-laon-ventures {
  width: 170px;
}

@media (max-width: 1000px) {
  .logo-footer-laon-ventures {
    width: 146px;
  }

  .head-footer-laon-ventures {
    justify-content: flex-start;
    flex-direction: column;
  }
  
  .container-footer-laon-ventures.g-56{
      gap: 32px
  }
}

.social-icon-box-laon-ventures {
  width: 40px;
  height: 40px;

  gap: 10px;

  border-radius: 8px;

  background: var(--color-f5f5f5);
}

.bottom-info-laon-ventures {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1000px) {
  .bottom-info-laon-ventures {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

.divider-bottom-footer-laon-ventures {
  width: 100%;
  height: 1px;
  background: var(--color-ccc);
}

/* Animation SVG */

.tdn {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .col-2-footer {
    display: none;
  }
}

/* Toast */

#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: #fff;
  color: #000;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s ease;
  font-family: DM Sans;
  border: solid 1px #ccc;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-left: solid 5px #16a34a;
}
.toast.error {
  border-left: solid 5px #dc2626;
}
.toast.warning {
  border-left: solid 5px #f59e0b;
}

.pa{
    position: absolute;
} 

@media(min-width: 1000px){
    .b110-d{
        bottom: 110px;
    }
}

@media(max-width: 1000px){
    .b92-m {
        bottom: 92px;
    }
}

