* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    width: 100%;
    max-width: 300px;
    padding: 2rem;
}

.loading-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.loading-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    transform: skewX(20deg);
    z-index: 2;
    animation: strike 1.5s ease-in-out infinite;
}

@keyframes strike {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background-color: #fff;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    background: white;
    padding-top: 96px; /* Offsets fixed header, adjust if needed */
}

body.menu-open {
    overflow: hidden;
}

.main {
    margin-bottom: -22rem auto;
}

.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo-link {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.logo {
    height: 50px;
    width: auto;
    max-height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.white-logo {
    display: none;
}

.dark-logo {
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header.js-enabled {
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-items li a {
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    width: 30px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: auto;
    z-index: 1000;
    padding: 0;
    background: none;
    border: none;
    outline: none;
}

/* Menu toggle sempre visível no header-blog */
.header-blog .menu-toggle {
    display: flex;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-origin: center;
    border-radius: 2px;
    position: relative;
}

.header-blog .menu-toggle span {
    background-color: #333;
}

.menu-toggle.active span {
    background-color: #fff;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.desktop-hero-points {
    display: none;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #dadada;
    text-align: center;
}

.hero {
    height: 55vh;
    margin-top: -1rem;
    position: relative;
    padding: clamp(1rem, 3vw, 2rem);
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Seção de logos dos clientes */
.client-logos {
    padding: 0.7rem 0;
    background: rgba(15, 15, 15, 0.98);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logos-container {
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
}

.logos-container::before,
.logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logos-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(15, 15, 15, 0.98), transparent);
}

.logos-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(15, 15, 15, 0.98), transparent);
}

.logos-track {
    display: flex;
    width: fit-content;
    animation: slide 45s linear infinite;
}

.logos-slide {
    display: flex;
    padding-right: 5rem;
    white-space: nowrap;
    align-items: center;
}

.logos-slide img + img {
    margin-left: 5rem;
}

.logos-slide img {
    height: 55px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logos-slide img:hover {
    opacity: 1;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Seção de Metodologia */
.methodology-section {
    position: relative;
    padding: 5rem 0;
    background-image: url('elben_wallpaper.png');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

#particles-methodology {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.methodology-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 2rem;
    margin-top: -2rem;
    position: relative;
    color: white;
    font-weight: bold;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.methodology-step {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.methodology-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.methodology-step h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: bold;
}

.methodology-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
}

.methodology-cta {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 3rem;
    background: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button.methodology-cta {
    margin-top: 1rem;
    margin-bottom: -2rem;
    background: rgb(202, 188, 134);
    color: black;
    padding: 1rem;
    border-radius: 1.5rem;
    text-decoration: none;
    text-align: center;
    font-size: medium;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arrow-button-bridge {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: rgb(216, 202, 148);
    color: black;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.arrow-button-bridge:hover {
    background-color: #f0f0f0;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .methodology-step {
        padding: 1.5rem;
    }
}

/* Página de Membros */
.header-members {
    background-color: rgba(252, 252, 252, 0.5);
    color: black;
    padding: 2rem;
    margin-top: -7rem;
    margin-bottom: -3.5rem;
    z-index: 999;
}

.header-members .nav-menu {
    background-color: rgba(252, 252, 252, 0.5);  
    padding: 3rem;
    margin-left: 3rem;
    margin-top: -2.5rem;
}

.header-members .logo {
    max-height: 65px;
    height: clamp(399px, 29vw, 190px);
    width: auto;
    object-fit: contain;
    margin-left: -6rem;
}

.members-page {
    min-height: 100vh;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    color: white;
    padding: 2rem 0rem;
    position: relative;
    overflow: hidden;
}

#particles-members {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.members-card {
    background-color: rgba(50, 50, 50, 0.1);
    backdrop-filter: blur(8px);    
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.2);
}

.members-content {
    max-width: 1200px;
    margin: 0 auto;
}

.members-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.members-tagline {
    margin-top: -1rem;
    margin-bottom: -1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
}

.members-tagline em {
    color: #f1f1f1;
    font-style: normal;
}

.team-container {
    margin-top: 2rem;
    padding: -2rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member {
    background: linear-gradient(145deg, #4e4e4e, #272727);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.member:hover {
    transform: translateY(-5px);
}

.member-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.info-block {
    font-size: 1.5rem;
    margin-bottom: -1rem;
    margin-top: -1rem;
    color: white;
}

.role {
    font-size: 1rem;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.credentials {
    list-style: none;
    margin: 1.5rem 0;
}

.credentials li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .members-card {
        padding: 2rem 1rem;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .member-info {
        text-align: center;
    }
}

/* Container principal */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: min(1200px, 90%);
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.hero-points {
    margin-top: -11.5rem;
    font-size: clamp(1rem, 3vw, 3rem);
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    background: #4b4a4a;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: multiply;
    z-index: 0;
    line-height: 1;
    position: absolute;
    top: 50%;
    animation: fadeIn 2s ease-in-out;
    overflow: hidden;
}

/* Título com máscara de vídeo */
.title-container {
    position: relative;
    width: 100%;
    margin-bottom: clamp(1rem, 5vh, 2rem);
    height: min(60vh, 500px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: clamp(2rem, 18vw, 15rem);
    font-weight: 700;
    margin-top: -11.5rem;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    background: #4b4a4a;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: multiply;
    z-index: 0;
    line-height: 1;
    position: absolute;
    top: 50%;
    animation: fadeIn 2s ease-in-out;
    overflow: hidden;
}

.title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    transform: skewX(20deg);
    z-index: 2;
    animation: strike 1.5s ease-in-out 1ms infinite;
}

.title::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);   
    
    opacity: 0;
    pointer-events: none;
    animation: flash 2s infinite;
    z-index: 3;
}

@keyframes strike {
    0% { left: -100%; }
    10% { left: 100%; }
    10.1%, 100% { left: -100%; }
}

@keyframes flash {
    0%, 8%, 10%, 18%, 20%, 100% { opacity: 0; }
    9%, 19% { opacity: 1; }
}

.video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Imagem da estátua */
.hermes-statue {
    position: absolute;
    left: 50%;
    top: 50.55%;
    transform: translate(-50%, -50%);  /* Centraliza a imagem */
    width: clamp(300px, 60vw, 700px);
    height: auto;
    z-index: 3;        
}

.hero-background {
    position: absolute;
    top: 17rem;
    left: -4rem;
    width: 140%;
    height: 40%;
    object-fit: cover;
    z-index: 0;
}

.waves {
    position: absolute;
    top: 21rem;
    left: -5rem;
    width: 150%;
    height: 40%;
    object-fit: cover;
    z-index: 4;
}

/* Textos */
.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero-text {
    font-size: clamp(1.2rem, 6vw, 3.5rem);
    font-style: italic;
    display: flex !important;
    justify-content: flex-start;
    flex-direction: row !important;
    align-items: center;
    width: 400px;
    color: #515050;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    top: -20px;
}

.hero-text span:first-child {
    margin-right: 90px;
    margin-left: 58px;
}

.lead-text {
    position: absolute;
    font-size: clamp(0.1rem, 2.5vw, 1.8rem);
    margin: 1rem auto;
    width: 70px;
    text-align: left;
    left: 250px;
}

.lead-text em {
    font-style: italic;
}

.website-text {
    width: 22rem;
    text-align: center;
    margin: 0 auto;
    margin-left: -3rem;
    margin-top: 0 auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;     /* Alinha verticalmente */
    justify-content: center; /* Alinha horizontalmente */
    padding: 0.5rem 1rem;
    background-color: #ada672;
    color: rgb(18, 18, 18);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 3rem;
    margin-bottom: 1rem;
    max-width: none;
    position: relative;
    width:12.9rem;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 1.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: white;
    color: #2C3639;
}        

/* Pain Mirror Section */

.pain-mirror {
    padding: 4rem 0;
    background-image: url(elben_wallpaper.png);
    color: white;
    text-align: center;
}

.mirror-title span {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: #a99f45;
}

.mirror-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.mirror-title em {
    font-style: italic;
}

.mirror-card {
    text-align: left;
    background: linear-gradient(145deg, #f6f5f5, #e6e6e6); 
    color: #333;
    border-radius: 1rem;
    padding: 2rem 1.7em;
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: 800px;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.6),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.mirror-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 500;
}

.mirror-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 8px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mirror-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.mirror-text em {
    font-style: italic;
}

.pain-mirror .arrow-button {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
    width: fit-content;
    padding: 1rem 2rem;
    background-color: #a69f6b;
    color: #030303;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.8),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.pain-mirror .arrow-button:hover {
    background-color: #f0f0f0;
    color: #333;
    transform: translateY(-2px);
}

.pain-mirror .arrow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    transform: skewX(20deg);
    z-index: 2;
    animation: strike 2s infinite;
}

.pain-mirror .arrow-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    pointer-events: none;
    animation: flash 2s infinite;
    z-index: 3;
}

.pain-mirror .arrow-button span {
    margin-right: 0.5rem;
}

/* Mirror Section */

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0; 
}

.arrow-buttonr {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(242, 242, 242);
    color: #363636;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.arrow-buttonr:hover {
    background-color: #8e9072;
    transform: translateY(-2px);
}

.arrow-buttonr span {
    margin-right: 0.5rem;
}

/* Vision Section */

.success-vision {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.vision-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: -1rem;
    line-height: 1.3;
    color: #333;
}

.vision-title em {
    font-style: italic;
}

.vision-title em span {
    color: #867d30;
}

.vision-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.vision-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0rem;
    width: 100%;
}

.arrow-button-vision {
    padding: 1rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: rgb(202, 188, 134);
    color: black;
    margin-top: 1rem;
    margin-bottom: 3rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.vision-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.6),
        0 10px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f1f1f1;
    overflow: hidden;
}

.vision-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 480px) {
    .vision-cards {
        gap: 1rem;
    }

    .vision-card {
        max-width: 100%;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }

    .vision-card .project-image {
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
}

.vision-card .project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.vision-card .arrow-button {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #a69f6b;
    color: #030303;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: calc(100% - 3rem);
}

.vision-card .arrow-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.vision-card h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin: 1rem 1.5rem;
    font-weight: 500;
    color: #f1f1f1;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 1.5rem 2rem 1.5rem;
    color: #cccccc;
}

.icon-target {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='6'%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-chart {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m19 9-5 5-4-4-3 3'/%3E%3C/svg%3E");
}

.icon-growth {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 7h8m0 0v8m0-8-8 8-4-4-6 6'/%3E%3C/svg%3E");
}

/* Proof Section */

.proof-pillar {
    padding: 4rem 0;
    background-image: url(elben_wallpaper.png);
    background-size: cover;
    background-position: center;
    color: rgb(0, 0, 0);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pillar-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: white;
}

.pillar-title em {
    font-style: italic;
}

.pillar-subtitle {
    color: #f0f0f0;
    margin: 2rem auto;
}

.pillar-card {
    background: linear-gradient(145deg, #fffefe, #ebebeb);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 0 auto;
    margin-left: 2rem;
    margin-right: 2rem;
    width: 110%;
    max-width: 800px;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.aura-presentation {
    margin-top: 1rem;
    margin-bottom: -2rem;
}

.pillar-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 500;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.member {
    text-align: left;
    padding: 1.5rem;
    background: linear-gradient(145deg, #4e4e4e, #272727);
    border-radius: 0.5rem;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
    overflow: hidden; /* Prevents text from leaking out */
    margin-left: 2rem;
    margin-right: 2rem;
}

.member-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    flex-shrink: 0;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cta-button-member {
    background-color: #ada672;
    color: rgb(18, 18, 18);
    text-decoration: none;
    padding: 1rem 1rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 1rem auto;
    max-width: none;
    position: relative;
    width: 12.9rem;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 1.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
    display: block;
    text-align: center;
}

.member-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credentials li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    word-wrap: break-word; /* Ensures long text wraps */
}

.member .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background-color: white;
    color: #2C3639;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    max-width: 300px;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeIn 2s ease-in-out;
}

.member .cta-button:hover {
    background-color: #444444;
    color: white;
    transform: translateY(-2px);
}

.member .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    transform: skewX(20deg);
    z-index: 2;
    animation: strike 2s infinite;
}

.member .cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    pointer-events: none;
    animation: flash 2s infinite;
    z-index: 3;
}

.methodology {
    padding: 3rem 1rem;
    color: #ffffff;
}

.methodology h3 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
}

.methodology-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.methodology-list li {
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    .methodology-list {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    .methodology-list li {
        max-width: 200px;
    }
}

.certifications {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
}

.proof-pillar .arrow-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgb(64, 64, 64);
    color: #fefefe;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.proof-pillar .arrow-button:hover {
    background-color: #262626;
    color: white;
    transform: translateY(-2px);
}

/* Mobile fixes for proof-pillar member cards */
@media (max-width: 768px) {
    .proof-pillar .pillar-card {
        width: 100%;
        margin-left: 0;
        padding: 2rem 1rem;
    }

    .proof-pillar .member {
        padding: 1rem;
    }

    .proof-pillar .member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .proof-pillar .profile-photo {
        margin: 0 auto;
    }

    .proof-pillar .member-info {
        align-items: center;
        text-align: center;
    }

    .proof-pillar .info-block {
        margin-bottom: 0.5rem;
    }

    .proof-pillar .credentials {
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
        align-items: center;
    }

    .proof-pillar .credentials li {
        text-align: center;
        word-wrap: break-word;
        max-width: 100%;
    }

    .proof-pillar .member .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
        position: static;
        display: flex;
        justify-content: center;
    }
}

/* Decision Bridge */

.decision-bridge {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
    margin-bottom: -1.5rem;
}

.bridge-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-top: -2.5rem;
    margin-bottom: 3rem;
    line-height: 1.3;
    color: #333;
    padding: 0 2rem;
}

.bridge-card {
    background: linear-gradient(145deg, #4e4e4e, #272727);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 0 auto;
    margin-left: 2rem;
    margin-right: 2rem;
    max-width: 800px;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.bridge-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 500;
}

.bridge-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.bridge-text em {
    font-style: italic;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.decision-bridge .arrow-button-bridge {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
    width: fit-content;
    padding: 1rem 2rem;
    background-color: #a69f6b;
    color: #030303;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.8),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.decision-bridge .arrow-button-bridge:hover {
    background-color: #f0f0f0;
    color: #333;
    transform: translateY(-2px);
}

.decision-bridge .arrow-button-bridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    transform: skewX(20deg);
    z-index: 2;
    animation: strike 2s infinite;
}

.decision-bridge .arrow-button-bridge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    pointer-events: none;
    animation: flash 2s infinite;
    z-index: 3;
}

/* Footer */

.footer-section {
    padding: 2rem;
    margin-bottom: -5rem;
    background-image: url(elben_wallpaper.png);
    position: relative;
    overflow: hidden;
}

.footer-card {
    background: #24242433;
    backdrop-filter: blur(9px);
    border-radius: 1rem;
    padding: 2rem 2rem 2rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 6px 6px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: clamp(80px, 10vw, 120px);
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon .icon-instagram {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
}

.social-icon .icon-linkedin {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 1 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 1 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

/* Ajuste o tamanho dos ícones */
.social-icon .icon-instagram,
.social-icon .icon-linkedin {
    width: 24px;
    height: 24px;
    background-color: white;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.form-container {
    margin-top: 2rem;
    padding: 0 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

.form-group select option {
    background-color: #383838;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.1rem;
    background-color: #bdb070;
    color: rgb(42, 42, 42);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.submit-button:hover {
    background-color: #ffffff;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 8px 8px rgba(0, 0, 0, 0.2);
}

.contact-info-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}


/* About Page Styles */

.header-about {
    background-color: #fcfafa;
    align-items: center;
    justify-content: center;
    color: black;
    padding: 1rem 3rem;
    margin-top: -5rem;
    z-index: 999;
}


.header-about .nav-menu {
    background-color: #fcfafa;  
    padding: 2rem;
    margin-left: 3rem;
    margin-top: -2.5rem;
}

.header-about .logo {
    height: clamp(89px, 19vw, 140px);
    width: auto;
    object-fit: contain;
    margin-left: -6rem;
}

.header-project {
    background-color: #fcfafa;
    color: black;
    padding: 2rem;
    margin-top: -6rem;
    z-index: 999;
}

.about-page {
    padding: 6rem 0;
    margin-top: -1rem;
    min-height: 100vh;
    background: url(elben_wallpaper.png);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(9px);
    border-radius: 1rem;
    padding: 2rem 0rem;
    margin: -4rem auto 2rem;
    max-width: 1200px;
    width: 100%;
    color: white;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 6px 6px rgba(0, 0, 0, 0.15);
}

.about-card .about-content,
.about-card .contact-form {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.about-card input,
.about-card textarea,
.about-card select {
    width: 100%;
    box-sizing: border-box;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-brand {
    text-align: center;
}

.about-logo {
    height: clamp(80px, 10vw, 120px);
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.about-tagline {
    font-size: 1.1rem;
    margin-bottom: -3rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-column h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.about-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.contact-info a {
    color: rgba(255, 255, 225, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.about-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.button-container-about {
    background-color: #d4d18c;
    color: black;
    padding: 1rem;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.arrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 1rem;
    background-color: #d4d18c;
    color: black;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-button:hover {
    background-color: #ffffff;
    color: #333;
    transform: translateY(-2px);
}

/* Menu Styles */

.nav-menu {
    position: relative;
    margin-right: 0rem;
    margin-left: 3rem;
}

.menu-toggle {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
    transform-origin: left;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.menu-items {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: linear-gradient(145deg, #464646, #1e1e1e);
    padding: 80px 40px;
    list-style: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.menu-items.active {
    right: 0;
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 999;
        padding: 8rem 2rem 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 
            -5px 0 25px rgba(0, 0, 0, 0.3),
            -1px 0 10px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
    }

    .menu-items li {
        margin: 0.15rem 0;
    }

    .menu-items li a {
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        color: #ffffff !important;
        font-size: 1.4rem;
    }

    .menu-items.active {
        display: flex;
        flex-direction: column;
        right: 0;
        opacity: 1;
        visibility: visible;
    }



    .menu-items a:last-child {
        border-bottom: none;
    }

    .menu-items a:hover,
    .menu-items a:focus {
        color: #ffffff;
        transform: translateX(-10px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .menu-items a.active {
        color: #ffffff;
        font-weight: 600;
    }

    .menu-items li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .menu-items.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .menu-items li:nth-child(1) { transition-delay: 0.1s; }
    .menu-items li:nth-child(2) { transition-delay: 0.2s; }
    .menu-items li:nth-child(3) { transition-delay: 0.3s; }
    .menu-items li:nth-child(4) { transition-delay: 0.4s; }
    .menu-items li:nth-child(5) { transition-delay: 0.5s; }
}





.language-switcher-container {
    gap: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 1.5rem;
}

.language-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.language-button:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.language-button.active {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.language-button svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Media Queries */

/* Mobile pequeno (max-width: 375px) */
@media (max-width: 375px) {
    .title {
        font-size: clamp(2.3rem, 12vw, 2.2rem);
        margin-top: -9.2rem;
    }

    .hero-text {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        margin-top: -150px;
    }

    .hero-text span:first-child {
        margin-right: 80px;
        margin-left: 25px;
    }

    .hero-points {
        font-size: clamp(0.8rem, 2vw, 1rem);
        margin-top: -10.2rem;
    }

    .hero-points .highlight {
        color: #a99f45;
    }

    .lead-text {
        position: absolute;
        top: 190px;
        left: 220px;
        right: auto;
        width: 49px;
        text-align: left;
        margin: 0 auto;
    }

    .website-text {
        position: relative;
        text-align: center;
        top: -6rem;
        left: -2.9rem;
        margin: 1rem auto;
        width: 140%;
        max-width: 800px;
    }
}

/* Mobile médio (min-width: 376px and max-width: 389px) */
@media (min-width: 376px) and (max-width: 392px) {
    .hero {
        top: -3rem;
        margin-bottom: -3rem;
    }

    .title {
        font-size: clamp(1rem, 10vw, 3rem);
        margin-top: -8.2rem;
    }

    .hero-text {
        width: 100%;
        margin-left: -1rem;
        justify-content: center;
        margin-top: -7.5rem;
    }

    .hero-points {
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-top: -9.2rem;
    }
    
    .website-text {
        position: relative;
        text-align: center;
        top: -6rem;
        left: -1.5rem;
        margin: 0 auto;
        width: 120%;
        max-width: 800px;
    }
    
    .cta-button {
        position: relative;
        right: auto;
        margin: auto;
    }
}
    
/* Mobile maior (min-width: 390px and max-width: 480px) */
@media (min-width: 393px) and (max-width: 480px) {
    .hero {
        margin-top: -4rem;
    }

    .title {
        font-size: clamp(2.7rem, 12vw, 1rem);
        margin-top: -8.3rem;
    }

    .hero-text {
        width: 100%;
        margin-left: -1rem;
        justify-content: center;
        margin-top: -7rem;
    }

    .hero-points {
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-top: -9.2rem;
    }

    .lead-text {
        position: absolute;
        max-width: 200px;
        top: 189px;
        left: 15.2rem;
    }

    .website-text {
        position: relative;
        text-align: center;
        top: -6rem;
        margin: 1rem;
        width: 110%;
        max-width: 118rem;
    }

    .text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Tablet pequeno (min-width: 482px and max-width: 767px) */
@media (min-width: 481px) and (max-width: 610px) {
    .title {
        font-size: clamp(0.7rem, 11vw, 5rem);
        margin-top: -10rem;
    }
    
    .hero-text {
        width: 100%;
        left: auto;
        top: -5rem;
        align-items: center;
        font-size: clamp(1.2rem, 6vw, 3.5rem);
        justify-content: center;
        position: relative;
    }
    
    .website-text {
        position: relative;
        text-align: center;
        width: 100%;
        margin: 1rem auto;
        margin-top: -5rem;
    }
    
    .cta-button {
        position: relative;
        right: auto;
        margin: auto;
    }

    .language-switcher-container {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (min-width: 611px) and (max-width: 769px) {
    .title {
        font-size: clamp(0.7rem, 11vw, 5rem);
        margin-top: -11rem;
    }
    
    .hero-text {
        width: 100%;
        left: auto;
        top: -5rem;
        align-items: center;
        font-size: clamp(1.2rem, 6vw, 3.5rem);
        justify-content: center;
        position: relative;
    }

    .hero-points {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-top: -12rem;
    }
    
    .website-text {
        position: relative;
        text-align: center;
        width: 100%;
        margin: 1rem auto;
        margin-top: -5rem;
    }
    
    .cta-button {
        position: relative;
        right: auto;
        margin: auto;
    }
}
    
/* Tablet maior (min-width: 769px) */
/* Blog Styles */

.blog-page {
    padding: 6rem 0;
    min-height: 100vh;
    background: url(elben_wallpaper.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    margin-top: -1rem;
}

.header-blog {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.blog-header {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.blog-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-title {
    font-size: clamp(4rem, 7vw, 6rem);
    margin-top: -3rem;
    font-weight: 500;
}

.alexandra {
    padding: auto;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    margin-top: -4rem;
    margin-bottom: 2rem;
}

.blog-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    opacity: 0.9;
    margin-top: -1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.blog-card-excerpt {
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #000000 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-footer {
    background-color: #000000;
    color: #bbbbbb;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

.blog-footer .footer-logo {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    object-fit: cover;
    margin-top: auto;
    margin-bottom: auto;
}

@media (max-width: 768px) {
    .blog-grid {
        padding: 1rem;
        gap: 1.5rem;
    }
}

@media (max-width: 400px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0rem;
        gap: 1rem;
        width: 100%;
    }

    .blog-card {
        margin: 0 0.3rem;
        width: auto;
    }
}

@media (min-width: 769px) {
    .hero {
        display: none;
    }

    .desktop-hero-points {
        display: block;
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-family: 'Playfair Display', serif;
    }

    .desktop-hero-points .highlight {
        color: var(--accent-color);
    }
}

@media (min-width: 769px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 70vh;
        overflow: hidden;
        margin-top: 5rem;
    }
    
    .hero .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .title-container,
    .text-container {
        position: relative;
        margin: 0 auto;
        text-align: center;
    }
    
    .title {
        font-size: clamp(3rem, 10vw, 12rem);
        margin: 0 auto;
        margin-top: -14rem;
        text-align: left;
    }
    
    .hero-points {
        margin: 0 auto;
        margin-top: -15.5rem;
        text-align: left;
    }
    
    .hermes-statue {
        left: 90%;
        top: 55.6%;
        transform: translate(-50%, -50%);
        width: clamp(200px, 150vw, 600px);
        height: auto;
        z-index: 3;
    }
    
    .hero-background {
        left: 50%;
        transform: translateX(-50%);
        top: 20rem;
        width: 135%;
        height: 190%;
        z-index: 0;
    }
    
    .waves {
        left: 50%;
        transform: translateX(-50%);
        top: 29rem;
        width: 150%;
        height: 190%;
        z-index: 4;
    }
    
    .hero-text {
        position: relative;
        width: 25rem;
        margin: 0 auto;
        margin-top: -6rem;
        text-align: center;
        color: rgb(123, 114, 96);
    }

    .hero-text span:last-child {
        margin-right: 70px;
        margin-left: -65px;
    }
    
    .cta-button {
        position: relative;
        width: 22rem;
        margin: 0 auto;
        margin-top: -12rem;
        margin-bottom: -29rem;
        text-align: center;
        background-color: rgb(53, 53, 53);
        color: wheat;
        z-index: 5;
    }
}

/* Lightning flash effect */
@keyframes lightning {
    0%, 30%, 30.5%, 60%, 60.5%, 100% {
        filter: brightness(1);
        text-shadow: none;
    }
    30.1%, 60.1% {
        filter: brightness(5);
        text-shadow: 0 0 20px #fff, 0 0 40px #fff;
    }
}

/* Flash glow effect */
.title.flash {
    text-shadow: 0 0 15px #fff, 0 0 30px #fff;
}

/* Button animated effect */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.cta-button,
.arrow-button,
.arrow-buttonr,
.submit-button,
.language-button {
    position: relative;
    overflow: hidden;
    animation: fadeIn 2s ease-in-out;
}

.cta-button::before,
.arrow-buttonr::before,
.submit-button::before,
.language-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    transform: skewX(20deg);
    z-index: 2;
    animation: strike 2s infinite;
}

.cta-button::after,
.arrow-buttonr::after,
.submit-button::after,
.language-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.3);
    opacity: 0;
    pointer-events: none;
    animation: flash 2s infinite;
    z-index: 3;
}

/* Improve text visibility on proof-pillar cards */
.proof-pillar .pillar-card {
    color: #ffffff;
}
.proof-pillar .pillar-card h3,
.proof-pillar .pillar-card h4 {
    color: #ffffff;
}
.proof-pillar .pillar-card p,
.proof-pillar .pillar-card li {
    color: #eeeeee;
}
.proof-pillar .pillar-card .role,
.proof-pillar .pillar-card .credentials li {
    color: #dddddd;
}

/* Project Page Styles */
.projects-section h3 {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.projects-section p {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

/* Portfolio Styles */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: rgba(70, 70, 70, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 6px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 8px 8px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.02);
}

.project-card h4 {
    padding: 1.5rem 1rem 0.5rem;
    font-size: 1.4rem;
    color: #f0f0f0;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 2rem 0 1rem;
}

.project-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0;
    line-height: 1.7;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.project-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    margin-top: 1.5rem; 
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.project-details li {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.project-details li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.project-details h4 {
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-details li {
    margin-bottom: 1rem;
    text-align: center;
}

.arrow-button-project {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1rem;
    background-color: rgb(204, 193, 128);
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.arrow-button-project:hover {
    background-color: #8e9072;
    transform: translateY(-2px);
}

.arrow-button-project span {
    margin-right: 0.5rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: -2.5rem;
}

.tech-item {
    background: #f5deb3;
    color: rgb(51, 51, 51);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

    



@media (max-width: 412px) {
    .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    .about-card {
        width: 95%;
        max-width: none;
    }
}

@media (min-width: 700px) {
    /* Centralização dos elementos na página about.html */
    .content-wrapper {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .about-card {
        padding: 2rem 3rem;
        overflow: hidden; /* Impede que o conteúdo vaze para fora */
    }
    
    .about-content {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden; /* Impede que o conteúdo vaze para fora */
    }
    
    .about-sections {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        box-sizing: border-box;
    }
    
    .about-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 0.5rem;
    }
    
    .about-column p {
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .button-container-about {
        max-width: 250px;
        margin: 1.5rem auto 0;
    }
}

@media (min-width: 729px) {
    .projects-section > .project-grid {
        grid-column: 1 / -1;
    }
}

@media (min-width: 868px) {
    .project-card .arrow-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1.5rem auto 0 auto;
        position: static;
        width: 95%;
        max-width: 370px;
    }
}

/* Darken "Nossa Equipe" title in proof-pillar */
.proof-pillar .pillar-card h3[data-i18n="founder_title"] {
    color: #222222;
}

.proof-pillar,
.footer-section,
.about-page,
.success-vision,
.decision-bridge {
    position: relative;
    overflow: hidden;
}

#particles-proof,
#particles-footer,
#particles-contact,
#particles-about,
#particles-blog,
#particles-vision,
#particles-decision,
#particles-members {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Estilos da página de membros */

.members-tagline {
    margin-top: 0.5rem;
    margin-bottom: -1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
}

.members-page {
    background-image: url("elben_wallpaper.png");
    background-size: cover;
    background-position: center;
}

.header-contact {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem 1rem;
        width: 100%;
        height: 12%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
        background: rgba(255, 255, 255, 0.3);
        box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        transition: all 0.3s ease;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
}

.header-contact .nav-menu {
    padding: 1rem;
    margin-left: 5rem;
    margin-right: -1.5rem;
    margin-top: -1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.header-contact .logo {
    max-height: 65px;
    height: clamp(45px, 5vw, 65px);
    width: auto;
    margin-right: auto;
    margin-left: -5rem;
}

.header-contact .menu-toggle {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.header-contact .menu-toggle span {
    background-color: #333;
    transition: all 0.3s ease;
}

.member {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(1, 1, 1, 1.5);
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.member-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 60px;
    overflow: hidden;
    border: 3px solid rgb(233, 233, 232);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.info-block h4 {
    color: rgb(202, 188, 134);
    font-size: 1.5rem;
    margin: 0;
}

.role {
    color: #fff;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.credentials {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: #ccc;
}

.credentials li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.credentials li:before {
    content: "•";
    color: rgb(202, 188, 134);
    position: absolute;
    left: 0;
}

.cta-button {
    display: inline-block;
    background: rgb(202, 188, 134);
    color: black;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

@media (min-width: 769px) {

    .header {
        padding: 2rem;
    }

    .title {
        padding: 1rem;
        margin-left: -18rem;
        margin-right: -18rem;
        margin-top: -18rem;
        margin-bottom: -18rem;
        position: absolute;
    }

    .hermes-statue {
        left: 90%;
        top: 75.6%;
        transform: translate(-50%, -50%);
        width: clamp(200px, 150vw, 600px);
        height: auto;
        z-index: 3;
    }

    .hero-text {
        margin-left: -18rem;
        margin-right: -18rem;
        margin-top: 7rem;
        margin-bottom: -12rem;
        position: absolute;
    }

    .hero-points {
        margin-left: -16rem;
        margin-right: -18rem;
        margin-top: -19rem;
        margin-bottom: -12rem;
        position: absolute;
    }

    .cta-button {
        margin-top: -19rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .cta-button:hover {
        margin-top: -1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .pain-mirror .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .mirror-card {
        padding: 2rem;
        margin: 2rem 1rem 0rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-width: 800px;
        width: calc(100% - 4rem);
        text-align: center;
    }

    .mirror-card h3,
    .mirror-text {
        text-align: center;
    }

@media (min-width: 769px) {
    .hero {
        display: none;
    }

    .desktop-hero-points {
        display: block;
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-family: 'Montserrat', sans-serif;
    }

    .desktop-hero-points .highlight {
        color: var(--accent-color);
    }

    .mirror-title {
        margin-top: -1rem;
        font-size: clamp(4rem, 5vw, 6.5rem);
        padding: 4rem 1rem;
    }

    .mirror-title em {
        font-size: clamp(4rem, 5vw, 6.5rem);
    }

    .mirror-title span {
        font-size: clamp(4rem, 5vw, 6.5rem);
    }

    .vision-cards {
        padding: 1rem 18rem;
    }
}

    .vision-card .project-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .arrow-button-vision {
        padding: 1.3rem 4rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        background-color: rgb(202, 188, 134);
        color: black;
        margin-top: 1rem;
        margin-bottom: 3rem;
        border-radius: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        font-weight: bold;
    }
}

.cta-button:hover {
    background: rgb(222, 208, 154);
    transform: translateY(-2px);
}

.members-footer {
    height: 38vh;
    background-color: #1b1b1b;
    color: #bbbbbb;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-logo {
    
    width: 55px;
    height: 55px;
    border-radius: 100%;
    object-fit: cover;
    margin-top: auto;
    margin-bottom: auto;
}

@media (max-width: 768px) {
    .member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-photo {
        margin-bottom: 1rem;
    }

    .credentials li {
        text-align: left;
    }
}

.pain-mirror .desktop-hero-points {
    display: none;
    margin-top: 1rem;
    margin-bottom: -2rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #dadada;
    text-align: center;
}

@media (min-width: 769px) {
    body {
        background-color: rgb(58, 58, 58);
        color: #ffffff;
    }

    .mirror-title {
        color: #ffffff;
    }

    .mirror-card {
        background-color: #ffffff;
        padding: 2rem;
        border-radius: 10px;
    }

    .mirror-card h3,
    .mirror-text {
        color: #333333;
    }

    .header {
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(9px);
    }

    .white-logo {
        display: block;
    }

    .dark-logo {
        display: none;
    }

    .nav-menu .menu-items a {
        color: white;
    }

    .menu-toggle span {
        background-color: white;
    }

    .pain-mirror .desktop-hero-points {
        display: block;
    }

    .pain-mirror .desktop-hero-points .highlight {
        color: var(--accent-color);
    }
}

/* Project Page Styles */
.projects-section h3 {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
}   

.projects-section p {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
}

/* Portfolio Styles */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: rgba(70, 70, 70, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 6px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 8px 8px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: scale(1.02);
}

.project-card h4 {
    padding: 1.5rem 1rem 0.5rem;
    font-size: 1.4rem;
    color: #f0f0f0;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 2rem 0 1rem;
}

.project-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0;
    line-height: 1.7;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.project-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    margin-top: 1.5rem; 
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.project-details li {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.project-details li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.project-details h4 {
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-details li {
    margin-bottom: 1rem;
    text-align: center;
}

.arrow-button-project {
    display: block;
    width: max-content;
    padding: 1rem 2rem;
    background-color: rgb(202, 188, 134);
    color: rgb(32, 32, 32);
    text-decoration: none;
    border-radius: 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.arrow-button-project:hover {
    background-color: rgb(222, 208, 154);
    transform: translateY(-2px);
}

.arrow-button-project span {
    margin-right: 0.5rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: -2.5rem;
}

.tech-item {
    background: #f5deb3;
    color: rgb(51, 51, 51);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (min-width: 729px) {
    .projects-section > .project-grid {
        grid-column: 1 / -1;
    }
}

@media (min-width: 868px) {
    .project-card .arrow-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1.5rem auto 0 auto;
        position: static;
        width: 95%;
        max-width: 370px;
    }
}

.projects-section {
    text-align: left;
    margin-bottom: 2rem;
}

.project-details {
    margin-bottom: 2rem;
}

.arrow-button-project {
    display: block;
    width: max-content;
    padding: 1rem 2rem;
    background-color: rgb(202, 188, 134);
    color: black;
    text-decoration: none;
    border-radius: 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.arrow-button-project:hover {
    background-color: rgb(222, 208, 154);
    transform: translateY(-2px);
}