/* ================================
   PMK SOLUTIONS - WEBSITE STYLES
   Quiet Luxury Aesthetic
   Colors: Cream, Navy, Champagne Gold
   ================================ */

/* CSS Variables */
:root {
    /* Colors */
    --cream: #F5F3EE;
    --cream-dark: #E8E4DC;
    --navy: #001F3F;
    --navy-light: #003366;
    --gold: #C9A875;
    --gold-light: #D4B886;
    --white: #FFFFFF;
    --text-dark: #2A2A2A;
    --text-gray: #666666;
    
    /* Typography */
    --font-primary: 'Cormorant Garamond', 'Georgia', serif;
    --font-secondary: 'Montserrat', 'Arial', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   NAVIGATION
   ================================ */

.nav {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo { 
    width: 320px; 
    height: 70px; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
}

.logo img { 
    width: 380px !important; 
    height: auto !important; 
    max-width: none !important; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}

.tagline {
    font-size: 11px;
    font-weight: 300;
    color: var(--navy);
    margin: 0 0 0 5px;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* ================================
   HERO SECTION
   ================================ */

.hero-new {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-background.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 1.4rem; /* Tamanho refinado solicitado */
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: left; /* Texto na esquerda */
    text-transform: uppercase; /* Caixa Alta */
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center; /* Botões centralizados */
}

.btn-hero, .btn-hero-sms {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.8rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    min-width: 220px;
    text-align: center;
}

.btn-hero:hover, .btn-hero-sms:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    .header-left {
        order: 1;
    }

    .btn-primary {
        display: none; /* Hide Quote button on mobile header to save space */
    }

    .logo {
        width: 260px;
        height: 60px;
    }

    .logo img {
        width: 310px !important;
    }

    .tagline {
        font-size: 10px;
    }

    .hero-new {
        height: 70vh;
        background-position: left center; /* Garante que os pincéis (lado esquerdo) apareçam no mobile */
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        padding: 0 2rem;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
        text-transform: none; /* Mantém o estilo original do mobile */
        text-shadow: 0 0 20px rgba(255,255,255,0.8);
        margin-bottom: 2rem;
    }

    .pillar-badge {
        width: 200px; /* Fotos maiores como solicitado */
        height: 200px;
    }

    .pillar-title {
        font-size: 1.1rem;
    }

    .pillar-text {
        font-size: 1rem;
    }
}

/* ================================
   PILLARS SECTION
   ================================ */

.pillars {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
}

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

.pillar-card {
    text-align: center;
    padding: 2rem;
}

.pillar-badge {
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
    background-color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.pillar-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pillar-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ================================
   WORK PREVIEW SECTION
   ================================ */

.work-preview {
    padding: var(--spacing-xl) 0;
    background-color: var(--cream);
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.work-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover .work-image {
    transform: scale(1.05);
}

.work-cta {
    text-align: center;
}

.work-tagline {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--navy);
    margin-top: 1.5rem;
    letter-spacing: 0.15em;
    font-style: italic;
    font-family: var(--font-primary);
}

/* Intro Section */
.intro-section {
    padding: 100px 5%;
    background-color: var(--white);
    text-align: center;
    border-bottom: 1px solid #E8E4DC;
}

.intro-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 2;
    color: var(--navy);
    font-weight: 300;
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 60px 8%;
    }
    .intro-text {
        font-size: 1.1rem;
    }
}

/* ================================
   PAGE HEADER
   ================================ */

.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 300;
}

/* ================================
   OUR STANDARD PAGE
   ================================ */

.standard-sections {
    background-color: var(--white);
}

.standard-item {
    padding: var(--spacing-xl) 0;
    max-width: 100%;
}

.standard-item.reverse {
    background-color: var(--cream);
}

.standard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.standard-item.reverse .standard-image {
    order: 2;
}

.standard-item.reverse .standard-content {
    order: 1;
}

.standard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.standard-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.standard-badge {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.standard-badge img {
    width: 100%;
    height: 100%;
}

.standard-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.standard-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.standard-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.standard-list {
    list-style: none;
    padding: 0;
}

.standard-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.standard-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.standard-list strong {
    color: var(--navy);
    font-weight: 600;
}

/* Services Overview */
.services-overview {
    padding: var(--spacing-xl) 0;
    background-color: var(--cream);
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.service-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.services-note {
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   GALLERY PAGE
   ================================ */

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.gallery-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* About Page Details */
.about-details {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-story-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-main-image {
    margin-top: 4rem;
    border: 1px solid var(--gold);
    padding: 10px;
}

.about-main-image img {
    width: 100%;
    height: auto;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Gallery Overlay Disabled */
.gallery-overlay {
    display: none !important;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.gallery-location {
    font-size: 0.85rem;
    color: var(--gold-light);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--navy);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
}

.btn-secondary-large {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-secondary-large:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ================================
   ABOUT PAGE
   ================================ */

.about-hero {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: var(--navy);
    font-weight: 600;
}

.team-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--cream);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.team-member.reverse {
    grid-template-columns: 1fr 350px;
}

.team-member.reverse .team-image {
    order: 2;
}

.team-member.reverse .team-info {
    order: 1;
}

.team-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 2rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}

.team-bio-emphasis {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--navy);
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--gold);
}

.values-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ================================
   CONTACT PAGE
   ================================ */

.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
}

.method-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.method-link {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
}

.method-link:hover {
    color: var(--gold);
}

.method-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.contact-hours {
    background-color: var(--cream);
    padding: 2rem;
}

.hours-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1rem;
}

.hours-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--cream);
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-textarea {
    resize: vertical;
}

.btn-form {
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-form:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

.form-link {
    color: var(--gold);
    font-weight: 500;
}

.form-link:hover {
    color: var(--navy);
}

/* ================================
   REVIEWS SECTION
   ================================ */

.reviews-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
}

.google-badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.google-badge {
    width: 100px;
    height: auto;
}

.rating-info {
    text-align: left;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--cream);
    padding: 2.5rem;
    border-left: 3px solid var(--gold);
}

.review-stars {
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-align: right;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .google-badge-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-info {
        text-align: center;
    }
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-pmk {
    color: var(--gold);
}

.footer-logo .logo-solutions {
    color: var(--white);
}

.footer-title {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--cream-dark);
    margin-bottom: 0.5rem;
}

.footer-link {
    display: block;
    font-size: 0.9rem;
    color: var(--cream-dark);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.footer-link i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--navy-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--cream-dark);
    letter-spacing: 0.05em;
}

.footer-link-small {
    color: var(--gold-light);
    margin: 0 0.5rem;
}

.footer-link-small:hover {
    color: var(--gold);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation is already handled in the previous section */

    .hero-new {
        height: 70vh;
        background-position: left center; /* Garante que os pincéis (lado esquerdo) apareçam */
        background-size: cover;
        justify-content: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        text-shadow: 0 0 15px rgba(255,255,255,0.7); /* Melhora leitura sobre o azul */
    }
    
    .pillar-badge {
        width: 220px; /* Tamanho proporcional solicitado */
        height: 220px;
        margin-bottom: 1rem;
    }

    .pillar-title {
        font-size: 1.1rem;
    }

    .pillar-text {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2.2rem;
    }
    
    .standard-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .standard-item {
        padding: 4rem 5% !important;
    }
    
    .standard-item.reverse .standard-image {
        order: 1;
    }
    
    .standard-item.reverse .standard-content {
        order: 2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-member,
    .team-member.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member.reverse .team-image {
        order: 1;
    }
    
    .team-member.reverse .team-info {
        order: 2;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand, .footer-section {
        padding-right: 0;
    }

    .footer-logo {
        align-items: center;
    }

    .badges-container { 
        gap: 30px; 
        flex-wrap: wrap; 
    }
    
    .badge-item { 
        height: 60px; 
    }

    .trust-badges {
        padding: 40px 5%;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 220px;
        height: 50px;
    }

    .logo img {
        width: 260px !important;
    }

    .tagline {
        font-size: 9px;
    }

    .hero-new {
        background-position: 25% center;
    }

    .hero-title {
        font-size: 1.8rem;
        text-shadow: 0 0 15px rgba(255,255,255,0.7);
    }

    .section-title, .section-title-dark, .section-title-center {
        font-size: 1.8rem;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.trust-badges { 
    background: #fff; 
    padding: 80px 10%; 
    border-top: 1px solid #E8E4DC; 
}
.badges-container { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 100px; 
}
.badge-item { 
    height: 120px; 
}
.badge-item img { 
    height: 100%; 
    width: auto; 
}

.badge-item img.pca-badge {
    height: 80%; /* Adjusted for the wider aspect ratio of the new logo */
}

