/* Definição da base */

:root {
    --lamparina-primary: #FFBB17;
    --lamparina-secondary: #570861;
    --lamparina-terciary: #A5008F;
    --lamparina-special-1: #FAA627;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Sans', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Mantém o header fixo */
#mainHeader {
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.35s ease;
}

/* Oculta o header */
.header-hidden {
  transform: translateY(-100%);
}

/* Exibe o header */
.header-visible {
  transform: translateY(0);
}

.special-adjust {
    display: flex;
    width: 100%;
    padding-left: 4vw;
    padding-right: 10vw;
}

main {
    overflow: hidden;
    padding-top: 60px;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

a:link {
    color: var(--lamparina-terciary);
}

a:hover {
    color: var(--lamparina-secondary);
}

a:visited {
    color: var(--lamparina-terciary);
}

.header-link {
    color: black;
    text-decoration: none;
}

.header-link a:link {
    color: black;
}

.header-link a:hover {
    color: var(--lamparina-terciary);
}

.header-link a:active {
    color:var(--lamparina-terciary);
}

.header-link a:visited {
    color: black;
}

.btn-primary {
    width: auto;
    height: auto;
    color: black;
    background-color: var(--lamparina-primary);
    font-weight: 700;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    color: white;
    background-color: var(--lamparina-secondary);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #e6f6ed;
  color: #1e7e34;
  text-align: center;
}

#sucesso:target {
  display: block;
}



/* Definição básica da tipografia */

h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 120%;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 120%;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 140%;
    letter-spacing: 0.5px;
}

h4 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.5px;
}

h5 {
    font-size: 1.5rem;
    line-height: 140%;
}

h6 {
    font-size: 1.25rem;
    line-height: 140%;
}

p {
    font-size: 1rem;
}

.small-text {
    font-size: 0.85rem;
}

.tiny-text {
    font-size: 0.7rem;
}




/* Classes personalizadas */

/* Universais */

.title-a {
    color: black;
    width: auto;
    height: auto;
    position: absolute;
    padding-top: 4vw;
    left: 10vw;
    z-index: 1;
}

.title-b {
    color: white;
    height: auto;
    width: auto;
    position: relative;
    padding-top: 4vw;
    left: 10vw;
    z-index: 1;
}

.title-c {
    color: black;
    background-color: white;
    width: 100%;
    height: auto;
    position: absolute;
    padding-top: 4vw;
    left: 10vw;
    z-index: 4;
}

/* Seção Hero */

.hero {
    width: 100%;
}

.hero-full {
    width: 100%;
    min-height: 55vw;
    display: flex;
    background-image: url('images/backgrounds/banner\ hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;   
}

.hero-content {
    width: 100%;
    padding-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
}

.hero-item {
    padding-bottom: 3%;
    color: var(--lamparina-secondary);
}

.hero-logo {
    width: 70%;
    padding-bottom: 4vw;
}


/* Seção Intro */

.intro {
    height: auto;
}

.intro-full {
    width: 100%;
    height: auto;
    color: var(--lamparina-secondary);
    padding-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 10vw;
}

.intro-content {
    width: 100%;
    
}

.btn-position {
    position: relative;
}

.trigger-cta {
    width: auto;
}

.trigger-cta:hover {
    color: #A5008F;
}

.primary-A {
    position: absolute;
    width: 280px;
    height: 60px;
    background-color: var(--lamparina-primary);
    font-weight: 700;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.5px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;  /* remove underline */
    color: black;         /* keeps default text color unless overridden */
    cursor: pointer;
}

.primary-A:hover {
    background-color: var(--lamparina-secondary);
    color: white;    
}

.primary-A:hover ~ .rotate {
    animation: spin 4s linear infinite;
}

.rotate {
    position: absolute;
    top: 0px;
    left: 230px;
    width: 111px;
    height: 111px;
    transform-origin: center;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
    z-index: 1;
}

    /* Animação aplicada somente no estado hover */
    .rotate:hover {
        animation: spin 4s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }


/* Seção Fundadoras */

.founders {
    background-image: url(images/backgrounds/socias_fundo.jpg);
    width: auto;
    background-repeat: no-repeat;
    background-size: cover;
}

.founders-full {
    width: 100%;
    min-height: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 3vw;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%, rgba(255, 255, 255, 0) 100%);
}

.founders-content {
    width: 100%;
    column-gap: 4vw;
    alignment-baseline: baseline;
}

.founders-item {
    color: white;
    
}

.founders-block {
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
}

.founders-text {
    color: black;
    margin-block-end: 0px;
    margin-block-start: 0px;
}

/* MOBILE FOUNDERS SECTION */

.founders-mobile {
    height: 100vh;
    background-image: url(images/backgrounds/socias_fundo.jpg);
    width: auto;
    background-position: 45%;
    background-repeat: no-repeat;
    background-size: cover;
}

.founders-mobile-content {
    padding-top: 45vh;
}

/* Each founder block */
.founders-item-mobile {
  margin-bottom: 1.5rem;
}

/* Clickable name */
.founder-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Plus icon */
.founder-toggle::before {
  content: '+';
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Collapsible content */
.founders-block-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}

.founders-block-mobile p {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Open state */
.founders-item-mobile.is-open .founders-block-mobile {
  max-height: 320px; /* enough for text */
  background-color: white;
  padding: 5vw;
  border-radius: 8px;
}

/* Text styling (optional) */
.founders-block-mobile p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.founders-item-mobile.show-text .founders-block-mobile p {
  opacity: 1;
  transform: translateY(0);
}

/* SECOND founder: move icon to the right */
.founders-item-mobile.text-end .founder-toggle {
  flex-direction: row-reverse;
}

/* Open state → turn + into − */
.founders-item-mobile.is-open .founder-toggle::before {
  transform: rotate(45deg); /* visually becomes − */
}




/* Seção de Serviços */

.services {
    background-color: var(--lamparina-secondary);
    color: white;
}

.services-full {
    padding-top: 4vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 10vw;
}

.service-description {
    gap: 5vw;
}

.service-row {
    display: flex;
    align-items: center;
}

.column-right {
    padding-top: 24px;
}

.service-item {
    display: flex;
    gap: 8px;
}




/* Seção de Cases */

.cases {
    height: 100vh;
    flex-wrap: wrap;
    display: flex;
    position: relative;
    z-index: 4;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-nav-left {
    position: relative;
    width: auto;
    display: flex;
    height: 100%;
    padding-left: 16px;
    padding-right: 16px;
    color: black;
    align-items: center;    
    z-index: 3;
}

.slider-nav-right {
    position: relative;
    width: auto;
    display: flex;
    height: inherit;
    height: 100%;
    padding-left: 16px;
    padding-right: 16px;
    color: black;   
    align-items: center;
    z-index: 3;
}

.slider-nav-left:hover {
    background-image: linear-gradient(90deg, #00000026, #00000000);
    color: var(--lamparina-primary);   
}

.slider-nav-right:hover {
    background-image: linear-gradient(270deg, #00000026, #00000000);
    color: var(--lamparina-primary);   
}

.arrow {
    width: 52px;
    display: block;
    transform-origin: center;
    user-select: none;
    pointer-events: auto;
}

.cases-full {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
}

.case-slider {
    padding-left: 10vw;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}

.case-slider.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.case-slider-intro {
    align-self: center;
    z-index: 3;
}

.case-slider-title {
    min-width: 35vw;
}

.case-cover {
    height: auto;
    z-index: 2;
}

.cover-mask-shape {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: white;
}

.case-cover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    transform: scale(1.2);
    transition: transform 0.7s ease-in-out;

    z-index: 1;
}

.cover-mask-svg {
    position: relative;
    height: 100vh;
    width: auto;
    display: block;

    z-index: 2;
    pointer-events: none;
}


.cover-mask-shape:hover .case-cover-image {
    transform: scale(1.3);
}

.cover-mask-shape svg {
    width: auto;
    height: 100vh;
    display: block;
}

.primary-B {
    width: 160px;
    height: 60px;
    background-color: var(--lamparina-primary);
    font-weight: 700;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.5px;
}

.primary-B:hover {
    background-color: var(--lamparina-secondary);
    color: white;    
}



/* Seção de Valores */

.core-values {
    position: relative;
    z-index: 4;
    height: auto;
    background-color: var(--lamparina-special-1);
    overflow: hidden;
}

.core-values-full {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 45vw;
    color: var(--lamparina-secondary);
    padding-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 10vw;
}

.values-graphism {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    top: 20vw;
    left: 20vw;
}

.graphism-self {
    width: 60vw;
    max-width: 1128px;
    opacity: 0.75;
    height: auto;
    transform: translate(-10vw, -5vw) scale(1);
    animation: graphismFloat 18s ease-in-out infinite;
    will-change: transform;
}

@keyframes graphismFloat {
    0% {
        transform: translate(-10vw, 5vw) scale(1);
    }

    33% {
        transform: translate(0, 0) scale(1.04);
    }

    66% {
        transform: translate(10vw, 7vw) scale(1.02);
    }

    100% {
        transform: translate(-10vw, 5vw) scale(1);
    }
}

.values-details {
    padding-top: 3vw;
}

.values-title {
    color: white;
}

.values-item {
    padding-top: 16px;
}


/* ================================
   Clients Section
================================ */

/* Scroll / drag container */
.clients-slider {
    width: 100%;
    padding: 6vw 4vw;
    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.clients-slider::-webkit-scrollbar {
    display: none;
}

/* Static viewport wrapper (mobile fix) */
.clients-viewport {
    width: max-content;
}

/* Animated track */
.clients-track {
    display: flex;
    align-items: center;
    gap: 64px;

    animation: scroll 60s linear infinite;
    will-change: transform;
}

/* Pause animation on interaction */
.clients-track:hover ,
.clients-track:active  {
    animation-play-state: paused;
}

/* Individual logo item */
.clients-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo sizing – preserves original proportions */
.clients-logo img {
    height: 267px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .clients-viewport {
        width: auto;              /* CRITICAL FIX */
        min-width: 100%;
    }

    .clients-track {
        will-change: transform;   /* forces repaint */
        backface-visibility: hidden;
        transform: translateZ(0); /* Safari fix */
        animation: scroll 5s linear infinite;
    }

    @keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

}

@media (max-width: 768px) {
    .clients-item {
        flex-shrink: 0;
    }
}

/* Infinite scroll animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



/* Seção do Footer */

.info-contact {
    width: 100%;
}

.footer-full {
    min-height: 50vh;
    padding: 10vw;
    padding-bottom: 2vw;
}

.footer-info {
    height: auto;
}

.footer-socials {
 height: auto;
 padding-top: 2vw;
 padding-bottom: 2vw;
}

.footer-logo {
    width: 80%;
}

.socials-item {
    height: 36px;
    width: auto;
}

.socials-item img {
    height: 100%;
    width: auto;
}

#credits {
    width: 100%;
}

.footer-disclaimer {
    padding: 1vw;
}


/*************************************************************************************************/
/* Personalizadas Quem Somos */

/*************************************************************************************************/

.image-input {
    position: relative;
    overflow: hidden;
    padding-top: 5vw;
    padding-left: 10vw;
    padding-right: 10vw;
    width: 100%;

}

/* New clipping layer */
.image-clip {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.image-self {
    height: auto;
    width: 100%;
    display: block;
    align-self: center;
    transform: scale(1.08);
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.qs-hero-full {
    width: 100%;
    min-height: 70vh;
    display: flex;
    background-color: var(--lamparina-secondary);
}

.qs-hero-content {
    display: flex;
    padding-top: 2vw;
    padding-left: 10vw;
    padding-right: 10vw;
}

.qs-hero-logo {
    display: flex;
    justify-content: center;
    padding-bottom: 4vw;
}

.qs-hero-logo img {
    width: 60%;
    height: auto;
}

.qs-hero-item {
    display: flex;
    color: white;
    padding-bottom: 3%;
    text-align: center;
}

.qs-intro-full {
    width: 100%;
    height: auto;
    color: black;
    padding-top: 0px;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 0px;
}

.qs-lighter-text h1 {
    font-weight: 400;
}

.qs-lighter-text h2 {
    font-weight: 400;
}

.qs-lighter-text h3 {
    font-weight: 400;
}

.qs-lighter-text h4 {
    font-weight: 400;
}

.qs-lighter-text h5 {
    font-weight: 400;
}

.qs-lighter-text h6 {
    font-weight: 400;
}

.qs-intro-full b {
    color: var(--lamparina-terciary);
}

.qs-item h3 {
    color: var(--lamparina-secondary);
}   

.qs-item h1 {
    font-size: 3rem;
    color: var(--lamparina-secondary);
}


@media (min-width:1800px) {
    .qs-item h3 {
        font-size: 3rem;
        color: var(--lamparina-secondary);
    }     
}

@media (max-width:1450px) {
    .qs-item h1 {
        font-size: 2.5rem;
    }
    
    .qs-item h3 {
        font-size: 2.3rem;
    }
}

@media (max-width:576px) {
    .qs-hero-logo img {
    width: 100%;
    height: auto;
}
    
}





/*************************************************************************************************/
/* Personalizadas Cases */

/*************************************************************************************************/

/* MOBILE CASES MENU */
.cases-menu-mobile {
  position: sticky;
  top: 66px;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  transition: transform 0.3s ease;
}

/* Hidden state */
.cases-menu-mobile.is-hidden {
  transform: translateY(-120%);
}

/* Toggle button */
.cases-menu-toggle {
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem;
  background-color: #fff;
}

/* Remove default accordion styles */
.cases-menu-mobile .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}

.cases-menu-mobile .accordion-button:focus {
  box-shadow: none;
}

/* List container */
.cases-list-mobile {
  list-style: none;
  margin: 0;
  padding: 0;

  max-height: calc(100vh - 140px); /* prevents viewport overflow */
  overflow-y: auto;
}

/* List items */
.cases-list-mobile li a {
  display: block;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

/* Active state */
.cases-list-mobile li a.active {
  font-weight: 700;
}

/* Hover / tap feedback */
.cases-list-mobile li a:active {
  background-color: #f5f5f5;
}



/* Styling for the Cases Side Menu */

.cases-menu {
    /* For smaller screens (mobile/tablet), the menu behaves like a standard block element */
    width: 100%;
    padding: 20px 10vw; /* Padding for mobile view */
    background-color: white; /* Light background for mobile separation */
}

.cases-menu-title {
    font-weight: 900;
    font-size: 2.2rem;
    color: black;
    margin-bottom: 1.5rem;
}

.cases-list {
    list-style: none;
    padding: 0;
    margin-right: 3vw;
    margin: 0;
    /* On mobile, use flexbox for a horizontal scrollable menu (if preferred) or wrap vertically */
    display: flex;
    flex-wrap: wrap; /* Wrap vertically on mobile */
    gap: 0.5rem 1.5rem; /* Space between links */
}

.cases-list li {
    line-height: 1.5;
}

.cases-list a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    color: black; /* Initial state: black */
    padding: 4px 4px; /* Padding for background on hover/active */
    border-radius: 4px;
    display: inline-block; /* Allows background to wrap the text */
    transition: color 0.3s, background-color 0.3s;
}

/* Hover and Active states */
.cases-list a:hover,
.cases-list a.active {
    color: var(--lamparina-terciary); /* #A5008F */
    /* 10% #A5008F (lamparina-terciary) background color */
    background-color: rgba(165, 0, 143, 0.1); 
    font-weight: 500;
}

/* Desktop-specific styles for the fixed menu (min-width: 992px for Bootstrap's lg breakpoint) */
@media (min-width: 992px) {
    .cases-menu {
        width: 20vw; /* Set the width based on your design (20vw matches the margin-left on cases-main) */
        padding-top: 50px; /* Adjust based on header height */
        padding-left: 3vw;
        padding-right: 3vw;
        /* Desktop Fix: Position the menu */
        position: fixed; 
        top: 60px; /* Start below the fixed header (assuming 60px height) */
        left: 0;
        height: calc(100% - 60px); /* Fill the rest of the viewport height */
        z-index: 10;
        background-color: transparent; /* Remove background on desktop if it overlaps main content */
    }

    .cases-menu .menu-content {
        /* Add some padding inside the fixed container to account for the header/viewport edge */
        padding-top: 0px; 
    }

    .cases-list {
        display: block; /* Stack vertically on desktop */
        flex-wrap: nowrap;
    }
    
    .cases-list a {
        font-size: 1.1rem;
        padding: 6px 10px;
    }
    
    .cases-main {
        margin-left: 20vw; /* Keep the content pushed over, as defined in your existing CSS */
        min-height: 150vh; /* Ensure the content is long enough to demonstrate scrolling */
    }
    
    /* Hide the title on desktop since it's already in the content area */
    .cases-menu-title {
        padding-top: 0; 
    }
}

.pg-cases {
    height: 100vh;
    flex-wrap: wrap;
    display: flex;
    position: relative;
    z-index: 4;
}

.pg-cases-main {
    margin-left: 20vw;
}

.pg-case-slider {
    height: 100%;
}

.pg-case-slider-intro {
    align-self: center;
    z-index: 3;
}

.overflow-title {
    width: 35vw;
    z-index: 4;
}

.pg-case-cover {
    height: auto;
    z-index: 2;
}

.pg-cover-mask-shape {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: white;
}

.pg-case-cover-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    transform: scale(1.2);
    transition: transform 0.7s ease-in-out;

    z-index: 1;
}

.pg-cover-mask-svg {
    position: relative;
    height: 100vh;
    width: auto;
    display: block;
    z-index: 2;
    pointer-events: none;
}

.pg-cover-mask-shape svg {
    width: auto;
    height: 100vh;
    display: block;
}

.pg-cover-mask-shape:hover .pg-case-cover-image {
    transform: scale(1.3);
}

.description-content {
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-right: 5vw;
}

.portfolio-content {
    width: 100%;
    display: block;
}

.portfolio-image-single {
    display: flex;
    height: auto;
    width: 100%;
}

.portfolio-image-single img {
    min-width: 100%;
    max-width: 100%;
    object-fit: fill;
}

/* Media query para página de Cases */

@media (max-width:576px) {

    .overflow-title {
        width: auto;
    }
    
    .pg-cases {
        height: auto;
        flex-wrap: wrap;
        display: flex;
        position: relative;
        z-index: 4;
    }

    .pg-cases-main {
        margin-top: 10%;
        margin-left: 0vw;
    }

    .pg-case-slider {
        padding-left: 5vw;
        width: 100%;
        height: auto;
    }

    .pg-case-slider .col-3 {
        width: 100%;
    }

    .pg-case-slider-intro {
        align-self: center;
        z-index: 3;
    }

    .pg-case-cover {
        width: 100%;
        height: auto;
        z-index: 2;
    }

    .pg-cover-mask-shape {
        height: 70vw;
        width: auto;
        color: white;
        background-image: url(images/cases/Instituto_Neoenergia/instituto-neoenergia-cover.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 120%;
        transition: background-size 0.7s ease-in-out;
        overflow: hidden;
    }

    .pg-cover-mask-shape svg {
        width: auto;
        height: 100vw;
        display: block;
    }

    .description-content {
        padding-top: 5vw;
        padding-left: 5vw;
        padding-right: 5vw;
        padding-bottom: 10vw;
    }

    .portfolio-content {
        width: 100%;
        display: block;
    }

    .portfolio-image-single {
        height: 70vw;
        width: auto;
    }

    .portfolio-single-image img {
        object-fit: fill;
    }
}



/*************************************************************************************************/
/* Relatórios */

/*************************************************************************************************/

.reports {
    width: 100%;
}

.reports-full {
    width: 100%;
    padding-top: 10vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 10vw;
}

.reports-title {
    padding-bottom: 3vw;
}

.reports-description {
    width: 100%;
}

.reports-logo-ruler {
    padding-left: 5vw;
    padding-right: 5vw;
}


.reports-highlights {
    width: 100%;
}

.reports-highlights a {
    text-decoration: none;
}

.report-standards {
    justify-content: left;
    padding-left: 0px;
    padding-right: 0px;
}

.reports-item {
    min-width: 15vw;
    height: auto;
}

.report-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 2vw;
}

.report-logo img {
    height: 100px;
    width: auto;
}

.report-cover {
    width: 350px;
    border-radius: 8px;
    background-color: white;
    border: 2px solid rgba(255, 255, 255, 0);
    box-sizing: border-box;
    overflow: hidden;
}

.report-cover:hover {
    border-width: 2px;
    border-radius: 8px;
    border-style: solid;
    border-color: var(--lamparina-terciary);
    overflow: hidden;
}

.report-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.report-icon {
    height: 36px;
}

@media (max-width:650px) {
    
    .reports-highlights {
        min-width: 100%;
    }

    .report-logo {
        padding-right: 1vw;
    }
    
    .report-logo img {
        height: 60px;
        width: auto;
    }

    .reports-standards {
        width: 100%;
}

    .reports-item {
        min-width: 100%;
    }

    .report-cover {
        width: 100%;
    }
    
}





/*************************************************************************************************/
/* Media queries */

/*************************************************************************************************/

@media (min-width:1800px) {
    
    h1 {
        font-size: 6rem;
        font-weight: 900;
        line-height: 120%;
        letter-spacing: 0.5px;
        margin-block-end: 1rem;
    }

    h2 {
        font-size: 6rem;
        font-weight: 900;
        line-height: 120%;
        letter-spacing: 0.5px;
        margin-block-end: 1rem;
    }

    h3 {
        font-size: 4rem;
        font-weight: 900;
        line-height: 140%;
        letter-spacing: 0.5px;
    }

    h4 {
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 140%;
        letter-spacing: 0.5px;
    }

    h5 {
        font-size: 2rem;
        line-height: 140%;
    }

    h6 {
        font-size: 1.5rem;
        line-height: 140%;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    a:link {
        font-size: 1.2rem;
    }

    .core-values-intro a {
        font-size: inherit;
    }

    .small-text {
        font-size: 1rem;
    }
}

@media (max-width:1440) {
    .footer-disclaimer p {
        font-size: 0.8rem;
    }    
}

@media (max-width:576px) {
    /*
    main {
        margin-top: 60px;
    }
    */
    h1 {
        font-size: 2.2rem;
        font-weight: 900;
        line-height: 120%;
        letter-spacing: 0.5px;
        margin-block-end: 1rem;
    }

    h2 {
        font-size: 2.2rem;
        font-weight: 900;
        line-height: 140%;
        letter-spacing: 0.5px;
        margin-block-end: 1rem;
    }

    h3 {
        font-size: 1.6rem;
        font-weight: 900;
        line-height: 140%;
        letter-spacing: 0.5px;
        margin-block-end: 1rem;
    }

    h4 {
        font-size: 1.5rem;
        font-weight: 900;
        line-height: 140%;
        letter-spacing: 0.5px;
        margin-block-end: 1rem;
    }

    h5 {
        font-size: 1.2rem;
        margin-block-end: 1rem;
        letter-spacing: 0.1px;
    }

    h6 {
        font-size: 1.2rem;
        margin-block-end: 1rem;
    }

    p {
        font-size: 1rem;
        margin-block-end: 1rem;
    }

    .small-text {
        font-size: 0.8rem;
    }

    .tiny-text {
        font-size: 0.6rem;
    }

    .title-a {
        color: black;
        padding-top: 10vw;
        left: 10vw;
        z-index: 4;
    }

    .title-b {
        color: white;
        padding-top: 10vw;
        left: 10vw;
    }

    /* Seção Hero */
    .rotate {
    animation: spin 4s linear infinite;
    }

    .hero-full .intro-full .founders-full {
        height: auto;
        min-height: 100vh;

    }

    .hero-full {
        min-height: 100vh;
        background-image: url('images/backgrounds/banner_hero_mobile.jpg');
        background-position-x: 90%;
        
    }

    .hero-content {
        padding-top: 15vw;
    }

    .hero-logo {
        width: 100%;
        padding-bottom: 2rem;
    }

    /* Seção Intro */

    .intro {
    height: 100vh;
    }

    .rotate {
        position: relative;
        left: 220px;
    }

    .intro-full {
        padding-right: 5vw;
    }

    /* Seção Fundadoras */
    
    .founders {
        background-image: url(images/backgrounds/foto\ sabrina\ isabela.jpg);
        background-position-x: 45%;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .founders-full {
        width: 100%;
        width: auto;
        height: auto;
        min-height: 55vw;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 10vw;
        padding-left: 10vw;
        padding-right: 10vw;
        padding-bottom: 10vw;  
    }

    .founders-content {
        alignment-baseline: baseline;
    }

    .founders-item {
        color: white;
        
    }

    .founders-block {
        padding: 16px;
        background-color: white;
        border-radius: 8px;
    }

    .founders-text {
        color: black;
        margin-block-end: 0px;
        margin-block-start: 0px;
    }

    /* Seção Serviços */

    .service-description {
        padding-bottom: 10vw;
    }

    .column-right {
        padding-top: 0px;
    }

    .services-full {
    padding-right: 5vw;
    }

    /* Seção de Cases */

    .cases {
        height: 100vh;
    }

    .cases-main {
        margin-left: 0px;
    }

    .cases-full {
        height: 100%;
    }

    .case-slider {
        padding: 0px;
        margin: 0px;
    }

    .slider-nav-left {
        padding-left: 1vw;
        padding-right: 1vw;
    }

    .slider-nav-right {
        padding-left: 1vw;
        padding-right: 1vw;
    }

    .case-slider-intro {
        width: 100%;
        padding-top: 5vw;
        padding-left: 10vw;
        padding-right: 10vw;
        padding-bottom: 5vw;
        align-self: center;
        left: 30px;
    }

    .case-cover {
        width: 100%;
        height: auto;
        z-index: 2;
        padding: none;
    }

    .cover-mask-shape {
        height: 100%;
        width: auto;
        color: white;
        background-image: url(images/cases/Instituto_Neoenergia/instituto-neoenergia-cover.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 120%;
        transition: background-size 0.7s ease-in-out;
        overflow: hidden;
        padding: 0px;
    }

    .cover-mask-shape:hover {
        background-size: auto 130%;
    }

    .cover-mask-shape svg {
        width: auto;
        height: 100vh;
        display: block;
    }

    .arrow {
        width: 24px;
    }



    /* Seção Clientes */
    
    .clients-item { flex: 0 0 calc(100%); }



    /*Seção Footer*/

    .footer-info {
        padding-top: 15vw;
        padding-bottom: 10vw;
    }

    .footer-socials {
        padding-bottom: 10vw;
    }

    .footer-logo {
        width: 100%;
    }

    .footer-style {
        padding: 0px;
    }

    .footer-disclaimer {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .qs-item h1 {
        font-size: 1.8rem;
    }

    .qs-intro-full {
    padding-right: 0px;
}


}
