/*
Theme Name: Theme Grupo Facilite
Theme URI: 
Author: Grupo Facilite
Description: Tema institucional do Grupo Facilite - Soluções Estratégicas de Negócios
Version: 1.0.0
Text Domain: theme-grupo-facilite
*/

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #111827;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    display: inline-block;
    vertical-align: middle;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.gf-page {
    min-height: 100vh;
    background-color: #ffffff;
}

.gf-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.gf-container-wide {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .gf-container,
    .gf-container-wide {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* ============================================
   HEADER
   ============================================ */
.gf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gf-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    gap: 1rem;
}

@media (max-width: 1023px) {
    .gf-header-inner {
        justify-content: center;
        position: relative;
    }
    
    .gf-header-logo {
        position: absolute;
        left: 1.5rem;
    }
    
    .gf-mobile-menu-btn {
        position: absolute;
        
    }
}

@media (min-width: 1024px) {
    .gf-header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 2rem;
    }
}

.gf-header-logo {
    display: flex;
    align-items: center;
}

.gf-header-logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.gf-header-logo img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .gf-header-logo img {
        height: 3rem;
    }
}

.gf-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.gf-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.gf-nav a:hover {
    color: #ffffff;
}

.gf-mobile-menu-btn {
    justify-self: end;
    display: block;
    color: #ffffff;
    padding: 0.5rem;
    z-index: 60;
    position: relative;
}

/* Mobile Menu Styles */
@media (max-width: 1023px) {
    .gf-nav {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 49;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .gf-nav--active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .gf-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .gf-nav a:last-child {
        border-bottom: none;
    }
    
    .gf-header--menu-open {
        background-color: rgba(0, 0, 0, 0.95);
    }
}

@media (min-width: 1024px) {
    .gf-nav {
        display: flex;
    }

    .gf-mobile-menu-btn {
        display: none;
    }
}

/* TranslatePress Adjustment - Mobile Only */
@media (max-width: 1023px) {
    .trp-language-item {
        padding: 12px 16px!important;

    }
    
    nav.trp-language-switcher.trp-floating-switcher.trp-ls-inline.trp-switcher-position-top.trp-opposite-language {
        background-color: #ffff0000;
    }
    .trp-language-switcher,
    .trp-language-switcher-container,
    #trp-floater-ls,
    .trp-floater-ls-container,
    [class*="trp-language-switcher"],
    [id*="trp-floater"] {
        position: fixed !important;
        top: 1.25rem !important;
        right: 1rem !important;
        z-index: 55 !important;
        left: auto !important;
        bottom: auto !important;
    }
}

/* ============================================
   HERO
   ============================================ */
.gf-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gf-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.gf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.65) 40%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.80) 100%
    );
    z-index: 2;
}

.gf-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .gf-hero-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.gf-hero-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.gf-hero-title span {
    color: #ef4444;
}

@media (min-width: 768px) {
    .gf-hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .gf-hero-title {
        font-size: 6rem;
    }
}

.gf-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .gf-hero-subtitle {
        font-size: 1.5rem;
    }
}

.gf-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ef4444;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.gf-hero-cta:hover {
    background-color: #dc2626;
    gap: 1.25rem;
}

.gf-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: gf-bounce 1s infinite;
}

.gf-hero-scroll span {
    font-size: 0.875rem;
}

.gf-hero-scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes gf-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-25%);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.gf-about {
    padding: 6rem 0;
    background-color: #ffffff;
}

.gf-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.gf-section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.gf-section-title span {
    color: #ef4444;
}

@media (min-width: 768px) {
    .gf-section-title {
        font-size: 3rem;
    }
}

.gf-section-desc {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.gf-pillars {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .gf-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gf-pillars {
        gap: 4rem;
    }
}

.gf-pillar {
    text-align: center;
}

.gf-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
    border: 2px solid #ef4444;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.gf-pillar-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #ef4444;
    transition: color 0.3s;
}

.gf-pillar:hover .gf-pillar-icon {
    background-color: #ef4444;
}

.gf-pillar:hover .gf-pillar-icon svg {
    color: #ffffff;
}

.gf-pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.gf-pillar p {
    color: #4b5563;
    line-height: 1.75;
}

/* ============================================
   AREA SECTIONS (OIL & GAS, ESG, etc.)
   ============================================ */
.gf-area {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gf-area-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.gf-area-overlay-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.gf-area-overlay-right {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.gf-area-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.gf-area-text {
    width: 100%;
}

.gf-area-text--right {
    text-align: right;
}

.gf-area-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.gf-area-line {
    width: 6rem;
    height: 0.25rem;
    background-color: #ef4444;
    margin-bottom: 1.5rem;
}

.gf-area-text--right .gf-area-line {
    margin-left: auto;
}

.gf-area-title {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .gf-area-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .gf-area-title {
        font-size: 4.5rem;
    }
}

.gf-area-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 42rem;
}

.gf-area-text--right .gf-area-desc {
    margin-left: auto;
}

.gf-area-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    transition: all 0.3s;
}

.gf-area-text--right .gf-area-btn {
    margin-left: auto;
}

.gf-area-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.gf-area-btn svg {
    transition: transform 0.3s;
}

.gf-area-btn:hover svg {
    transform: translateX(0.25rem);
}

.gf-area-btn--reverse {
    flex-direction: row-reverse;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.gf-projects {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.gf-projects-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gf-projects-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.875rem 1.75rem;
    background-color: #ef4444;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0.375rem;
}

.gf-projects-cta:hover {
    background-color: #dc2626;
    gap: 0.75rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(239, 68, 68, 0.5);
}

.gf-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gf-filter-btn {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
    background-color: #ffffff;
    color: #374151;
}

.gf-filter-btn:hover {
    background-color: #f3f4f6;
}

.gf-filter-btn--active {
    background-color: #ef4444;
    color: #ffffff;
}

.gf-filter-btn--active:hover {
    background-color: #ef4444;
}

.gf-projects-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gf-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gf-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gf-project-card {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 1;
    transform: scale(1);
}

.gf-project-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.gf-project-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gf-project-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s;
    pointer-events: none;
}

.gf-project-card:hover .gf-project-img::after {
    background-color: rgba(0, 0, 0, 0.4);
}

.gf-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.gf-project-card:hover .gf-project-img img {
    transform: scale(1.05);
}

.gf-project-info {
    padding: 1.5rem;
}

.gf-project-info .gf-project-tag {
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.gf-project-info h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
}

.gf-project-info .gf-btn-open-modal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9375rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.gf-project-info .gf-btn-open-modal:hover {
    gap: 0.75rem;
    color: #dc2626;
}

.gf-project-info .gf-btn-open-modal svg {
    transition: transform 0.3s;
}

.gf-project-info .gf-btn-open-modal:hover svg {
    transform: translateX(2px);
}

.gf-no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.gf-no-projects p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* ============================================
   GLOBAL PRESENCE
   ============================================ */
.gf-presence {
    padding: 6rem 0;
    background-color: #000000;
    color: #ffffff;
}

.gf-presence .gf-section-title {
    color: #ffffff;
}

.gf-presence .gf-section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.gf-stats-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 640px) {
    .gf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gf-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gf-stat {
    text-align: center;
}

.gf-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}

.gf-stat-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ef4444;
    transition: color 0.3s;
}

.gf-stat:hover .gf-stat-icon {
    background-color: #ef4444;
    border-color: #ef4444;
}

.gf-stat:hover .gf-stat-icon svg {
    color: #ffffff;
}

.gf-stat-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .gf-stat-number {
        font-size: 3.75rem;
    }
}

.gf-stat:hover .gf-stat-number {
    color: #ef4444;
}

.gf-stat-label {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.gf-stat-sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.gf-presence-footer {
    margin-top: 5rem;
    text-align: center;
}

.gf-presence-footer p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.gf-presence-footer span {
    color: #ef4444;
}

/* ============================================
   MATERIALS SECTION
   ============================================ */
.gf-materials {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #111827, #000000);
    color: #ffffff;
}

.gf-materials .gf-section-title {
    color: #ffffff;
}

.gf-materials .gf-section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.gf-materials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gf-materials-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .gf-materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gf-material-card {
    background-color: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s;
}

.gf-material-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

.gf-material-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gf-material-icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.gf-material-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ef4444;
    transition: color 0.3s;
}

.gf-material-card:hover .gf-material-icon {
    background-color: #ef4444;
}

.gf-material-card:hover .gf-material-icon svg {
    color: #ffffff;
}

.gf-material-info {
    flex: 1;
}

.gf-material-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gf-material-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.gf-material-downloads {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.gf-material-downloads > p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.gf-download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gf-download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.gf-download-btn:hover {
    background-color: #ef4444;
    border-color: #ef4444;
}

.gf-download-btn svg {
    width: 1rem;
    height: 1rem;
}

.gf-download-btn:hover svg {
    animation: gf-bounce-small 1s infinite;
}

@keyframes gf-bounce-small {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.gf-contact {
    padding: 6rem 0;
    background-color: #000000;
    color: #ffffff;
}

.gf-contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .gf-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gf-contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ef4444;
}

.gf-contact-areas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gf-contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.3s;
}

.gf-contact-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

.gf-contact-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.gf-contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gf-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.gf-contact-link:hover {
    color: #ef4444;
}

/* Offices */
.gf-offices {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gf-office-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.3s;
}

.gf-office-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

.gf-office-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.gf-office-header h4 {
    font-size: 1.125rem;
}

.gf-badge {
    font-size: 0.75rem;
    background-color: #ef4444;
    padding: 0.25rem 0.5rem;
    color: #ffffff;
}

.gf-office-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.gf-office-address svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Social */
.gf-social-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.gf-social-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.gf-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.gf-social-link:hover {
    color: #ef4444;
}

/* ============================================
   FOOTER
   ============================================ */
.gf-footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
}

.gf-footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .gf-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gf-footer-grid h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.gf-footer-logo {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.gf-footer-grid p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.75;
}

.gf-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gf-footer-nav a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.gf-footer-nav a:hover {
    color: #ef4444;
}

.gf-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .gf-footer-bottom {
        flex-direction: row;
    }
}

.gf-footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.gf-whatsapp {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 9999;
    text-decoration: none;
}

@media (min-width: 768px) {
    .gf-whatsapp {
        bottom: 2rem;
        right: 2rem;
    }
}

.gf-whatsapp-btn {
    position: relative;
    width: 3.75rem;
    height: 3.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4),
                0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .gf-whatsapp-btn {
        width: 4rem;
        height: 4rem;
    }
}

.gf-whatsapp:hover .gf-whatsapp-btn {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5),
                0 12px 32px rgba(0, 0, 0, 0.2);
}

.gf-whatsapp:active .gf-whatsapp-btn {
    transform: scale(0.95);
}

.gf-whatsapp-btn svg {
    width: 1.75rem;
    height: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
    .gf-whatsapp-btn svg {
        width: 2rem;
        height: 2rem;
    }
}

/* ============================================
   AREA LOGOS
   ============================================ */
.gf-area-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .gf-area-logo {
        height: 4rem;
    }
}

@media (min-width: 1024px) {
    .gf-area-logo {
        height: 5rem;
    }
}

/* ============================================
   SIMPLIFIED CONTACT
   ============================================ */
.gf-contact-simple {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gf-office-card--main {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s;
}

.gf-office-card--main:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
}

.gf-office-card--main .gf-contact-links {
    margin-top: 1.25rem;
}

/* ============================================
   SINGLE PROJETO
   ============================================ */
.gf-single-projeto {
    padding-top: 5rem;
}

.gf-projeto-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
}

.gf-projeto-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.gf-projeto-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.gf-projeto-hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.gf-projeto-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gf-projeto-categoria {
    display: inline-block;
    background-color: #ef4444;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.gf-projeto-info-tag {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.gf-projeto-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .gf-projeto-title {
        font-size: 3.5rem;
    }
}

.gf-projeto-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    max-width: 48rem;
}

.gf-projeto-content {
    padding: 4rem 0;
    background-color: #ffffff;
}

.gf-projeto-content-inner {
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.gf-projeto-content-inner p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    color: #374151;
}

.gf-projeto-content-inner h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */
.gf-privacy-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
    min-height: 100vh;
}

.gf-privacy-content {
    max-width: 56rem;
    margin: 0 auto;
}

.gf-privacy-title {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #ef4444;
}

@media (min-width: 768px) {
    .gf-privacy-title {
        font-size: 3.5rem;
    }
}

.gf-privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.gf-privacy-section:last-of-type {
    border-bottom: none;
}

.gf-privacy-section h2 {
    font-size: 1.875rem;
    color: #111827;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1rem;
}

.gf-privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 4px;
    height: 1.5rem;
    background-color: #ef4444;
}

.gf-privacy-section h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.gf-privacy-section p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1rem;
}

.gf-privacy-section p:last-child {
    margin-bottom: 0;
}

.gf-privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.gf-privacy-section ul li {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 0.75rem;
    position: relative;
}

.gf-privacy-section ul li::marker {
    color: #ef4444;
}

.gf-privacy-section strong {
    color: #111827;
    font-weight: 600;
}

.gf-privacy-note {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: #7f1d1d;
    line-height: 1.75;
}

.gf-cookies-section {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
}

.gf-cookies-section h2::before {
    background-color: #10b981;
}

.gf-privacy-section a {
    color: #ef4444;
    text-decoration: underline;
    transition: color 0.2s;
}

.gf-privacy-section a:hover {
    color: #dc2626;
}

.gf-privacy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.gf-privacy-footer p {
    font-size: 0.9375rem;
    color: #6b7280;
}

.gf-privacy-footer strong {
    color: #111827;
}

    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.gf-projeto-content-inner h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.gf-projeto-content-inner img {
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.gf-projeto-back {
    max-width: 48rem;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.gf-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 1rem;
    transition: all 0.3s;
}

.gf-btn-back:hover {
    color: #ef4444;
    gap: 1rem;
}

.gf-btn-back svg {
    transition: transform 0.3s;
}

.gf-btn-back:hover svg {
    transform: translateX(-0.25rem);
}

/* ============================================
   MODAL PROJETO
   ============================================ */
.gf-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gf-modal.gf-modal--active {
    display: flex;
}

.gf-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    animation: gfFadeIn 0.3s ease-out;
}

@keyframes gfFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gf-modal-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 56rem;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: gfSlideUp 0.4s ease-out;
}

@keyframes gfSlideUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gf-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.gf-modal-close:hover {
    background-color: #ef4444;
    transform: rotate(90deg);
}

.gf-modal-header {
    position: relative;
    min-height: 24rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000000;
}

.gf-modal-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.gf-modal-header-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .gf-modal-header-content {
        padding: 4rem 3rem;
    }
}

.gf-modal-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gf-modal-categoria {
    display: inline-block;
    background-color: #ef4444;
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0.25rem;
}

.gf-modal-info {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.gf-modal-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .gf-modal-title {
        font-size: 3rem;
    }
}

.gf-modal-excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

.gf-modal-body {
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .gf-modal-body {
        padding: 4rem 3rem;
    }
}

.gf-modal-body p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    color: #374151;
    font-size: 1.0625rem;
}

.gf-modal-body p:last-child {
    margin-bottom: 0;
}

.gf-btn-open-modal {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: all 0.3s;
}

.gf-btn-open-modal:hover {
    color: #ef4444;
}

.gf-btn-open-modal span {
    transition: transform 0.3s;
    display: inline-block;
}

.gf-btn-open-modal:hover span {
    transform: translateX(0.25rem);
}
