/* Modern Reset and Typography */
:root {
    --primary-color: #ff6d00;
    /* Vibrant Orange */
    --primary-dark: #c43c00;
    --primary-gradient: linear-gradient(135deg, #ff9100, #ff5722);
    --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --secondary-color: #1a237e;
    /* Deep Indigo for contrast/professionalism */
    --secondary-dark: #121858;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    /* More transparent for modern feel */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 16px;
    --transition-fast: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Snappy standard ease */
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-bg);
    min-height: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

/* Animations - Refined Fluidity & Performance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
        /* Maior distância = mais visível */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(60px, 0, 0);
        /* Maior distância = mais visível */
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes float {
    0% {
        transform: translate3d(0, 0px, 0);
    }

    50% {
        transform: translate3d(0, -15px, 0);
        /* Maior amplitude */
    }

    100% {
        transform: translate3d(0, 0px, 0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
    /* Começa mais abaixo = mais visível */
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Mais lento = mais visível */
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Stagger delays for children */
.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    transition-delay: 0.4s;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary-gradient);
    margin: 20px auto 0;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.section:hover .section-title::after {
    width: 120px;
}

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

.bg-dark {
    background-color: var(--secondary-color);
    color: var(--white);
    background-image: linear-gradient(rgba(26, 35, 126, 0.92), rgba(18, 24, 88, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-size: cover;
    background-position: center;
    /* Removed fixed attachment for performance */
}

/* Enhanced Section Backgrounds */
#quem-somos {
    background: url('imagem 1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
}

.section-with-overlay .section-title {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    font-weight: 800;
    background: rgba(0, 0, 0, 0.4);
    /* Mais transparente: 0.6 → 0.4 */
    padding: 15px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borda mais visível */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--white);
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

#quem-somos .section-title {
    color: var(--white);
}

#quem-somos .about-list li {
    background: rgba(0, 0, 0, 0.5);
    /* Mais transparente: 0.75 → 0.5 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borda mais visível */
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#quem-somos .about-list li:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#quem-somos .about-list i {
    background: rgba(255, 109, 0, 0.2);
    color: var(--primary-color);
}

#servicos {
    background: url('imagem 4.jpg');
    background-size: cover;
    background-position: center;
}

#servicos .split-content {
    background: transparent;
    padding: 20px;
    border-radius: 20px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#servicos .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.text-white {
    color: var(--white);
}

.title-orange {
    color: var(--primary-color) !important;
}

/* Area de Atuacao Section */
#atuacao {
    background: url('imagem 3.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

#atuacao .service-item {
    background: rgba(0, 0, 0, 0.5);
    /* Mais transparente: 0.75 → 0.5 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borda mais visível */
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
}

/* Icon indicating external link */
#atuacao .service-item::after {
    content: '\f35d';
    /* fa-external-link-alt */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

#atuacao .service-item:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

#atuacao .service-item:hover::after {
    color: var(--primary-color);
    transform: translate(3px, -3px);
    /* Move icon slightly */
    opacity: 1;
}

#atuacao .service-item:hover i {
    transform: scale(1.1);
    /* Animate the main icon too */
}

/* Values Section */
#valores {
    background: url('imagem 2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

#valores .belief-item {
    background: rgba(0, 0, 0, 0.5);
    /* Mais transparente: 0.75 → 0.5 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borda mais visível */
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-top: 6px solid var(--primary-color);
}

#valores .belief-item:hover {
    background: var(--white);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

#valores .belief-item:hover h3,
#valores .belief-item:hover p,
#valores .belief-item:hover li {
    color: var(--primary-color);
}

#valores .belief-item h3 {
    color: var(--white);
}

#valores .belief-item h3 i {
    color: var(--primary-color);
}

#valores .belief-item p {
    color: rgba(255, 255, 255, 0.9);
}

#valores .quote {
    background: rgba(255, 109, 0, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

#valores .quality-list i {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    /* Lighter green for dark bg */
}

/* Missao, Visao e Valores Section */
#missao-valores {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('imagem 5.png');
    background-size: cover;
    background-position: center;
    padding-top: 140px;
    padding-bottom: 140px;
}

#missao-valores .mvv-card {
    background: rgba(0, 0, 0, 0.5);
    /* Mais transparente: 0.75 → 0.5 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borda mais visível */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, background-color 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

#missao-valores .mvv-card:hover {
    background: #ffffff;
    transform: translateY(-18px) scale(1.03);
    /* Mais movimento = mais visível */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

#missao-valores .mvv-card h3 {
    color: var(--white);
}

#missao-valores .mvv-card p {
    color: rgba(255, 255, 255, 0.9);
}

#missao-valores .mvv-card .icon-box {
    background: rgba(255, 109, 0, 0.1);
    /* Consistently light */
}


.header {
    background: rgba(210, 210, 210, 0.95);
    /* Slightly darker light gray */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header.scrolled {
    padding: 8px 0;
    background: rgba(200, 200, 200, 0.98);
    /* Matching darker scroll state */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.logo-primary img {
    height: 160px;
    /* Increased from 140px */
    transition: var(--transition-smooth);
    filter: drop_shadow(0 2px 4px rgba(0, 0, 0, 0.05));
    width: auto;
}

.logo-subbrands {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    border-left: none;
    margin-left: 30px;
    flex-shrink: 0;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-subbrand-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-subbrand-list img {
    height: 80px;
    /* Increased from 70px */
    width: auto;
    max-width: none;
    /* Removed grayscale filter */
    transition: var(--transition-smooth);
}

.logo-subbrand-list:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.header.scrolled .logo-primary img {
    height: 110px;
    /* Increased scroll size */
}

.header.scrolled .logo-subbrand-list img {
    height: 60px;
    /* Increased scroll size */
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    background: rgba(240, 240, 240, 0.4);
    border-radius: 50px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.nav-item-social {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-item-social::before {
    display: none;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* Prevent line breaks */
}

/* New Hover Effect: Pill Background */
.nav-link:hover {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.nav-link::before {
    display: none;
}

/* Unified Button Styles for Header */
.nav-menu .btn-projeto-social,
.nav-menu .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    height: 40px;
    /* Fixed height for exact match */
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

/* Specific Style: Projeto Social */
.nav-menu .btn-projeto-social {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white !important;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.nav-menu .btn-projeto-social:hover {
    background: linear-gradient(135deg, #d81b60, #ad1457);
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.5);
}

/* Specific Style: Contato */
.btn-contact {
    background: var(--primary-gradient);
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(255, 109, 0, 0.3);
}

.btn-contact:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.5) !important;
    filter: brightness(1.1);
    color: var(--white) !important;
}

.btn-contact::before {
    display: none !important;
}

@media (max-width: 1400px) {
    .header-container {
        gap: 12px;
        justify-content: flex-start;
    }

    .navbar {
        justify-content: flex-start;
        gap: 12px;
    }

    .nav-menu {
        justify-content: flex-start;
    }

    .logo-subbrands {
        margin-left: 16px;
    }
}

@media (max-width: 1600px) and (min-width: 769px) {
    .navbar {
        margin-left: -32px;
    }

    .nav-menu {
        margin-left: 0;
    }

    .logo-group {
        margin-left: -48px;
    }

    .logo-primary img {
        height: 140px;
    }

    .nav-menu {
        padding-left: 12px;
        padding-right: 6px;
        gap: 4px;
        margin-left: 16px;
    }

    .nav-link {
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    .nav-menu .btn-projeto-social,
    .nav-menu .btn-contact {
        padding: 6px 18px;
        height: 34px;
        font-size: 0.75rem;
    }

    .logo-subbrands {
        margin-left: 12px;
    }
}

@media (max-width: 1900px) and (min-width: 1601px) {
    .logo-group {
        margin-left: -48px;
    }

    .navbar {
        margin-left: -18px;
    }

    .nav-menu {
        margin-left: -6px;
    }
}

@media (max-width: 1200px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .logo-group {
        width: 100%;
        justify-content: center;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(120deg, rgba(16, 22, 66, 0.9) 0%, rgba(26, 35, 126, 0.7) 50%, rgba(255, 109, 0, 0.1) 100%), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    /* Removed fixed attachment */
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    margin-top: 0;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    /* Inner vignette */
}

/* Animated animated background shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: 1;
    filter: blur(20px);
    will-change: transform;
    /* Soft glow */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.4), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    font-size: 5rem;
    /* Larger title */
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 5px 10px rgba(0, 0, 0, 0.4);
    /* Deep shadow */
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
    /* Animação mais lenta */
    letter-spacing: -2px;
    transition: transform 0.3s ease;
}

.hero-title:hover {
    transform: scale(1.02);
    /* Subtle interaction */
}

.hero-subtitle {
    font-size: 1.6rem;
    /* Larger subtitle */
    margin-bottom: 50px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s backwards;
    /* Mais lento e delay maior */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s backwards;
    /* Mais lento e delay maior */
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.6);
    color: var(--white);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-instagram {
    background: var(--instagram-gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(193, 53, 132, 0.4);
}

.btn-instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(193, 53, 132, 0.6);
    color: var(--white);
}

.btn-facebook {
    background: linear-gradient(135deg, #1877f2, #0c5bb5);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.btn-facebook:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.6);
    color: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 100px;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.about-list li {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    /* Mais lento e suave */
    border-left: 5px solid transparent;
    position: relative;
    top: 0;
}

.about-list li:hover {
    transform: translateY(-10px);
    /* Mais movimento = mais visível */
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.about-list i {
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 3px;
    font-size: 1.8rem;
    background: rgba(255, 109, 0, 0.08);
    /* Softer bg */
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.about-list li:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.founders-story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Image takes slightly more space */
    gap: 80px;
    align-items: center;
    background-color: var(--white);
    padding: 0;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.founders-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.founders-image img {
    border-radius: 0;
    /* Full bleed image */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    /* Subtle zoom effect */
}

.founders-story:hover .founders-image img {
    transform: scale(1.05);
}

.founders-text {
    padding: 60px 60px 60px 0;
}

.founders-text h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
    position: relative;
}

.founders-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 4px;
}

.founders-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* MVV Cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.mvv-card {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    /* Hover mais lento e visível */
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.mvv-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-lg);
}

.mvv-card:hover::before {
    opacity: 1;
}

#missao-valores .mvv-card:hover h3,
#missao-valores .mvv-card:hover p {
    color: var(--primary-color);
}

.mvv-card:hover .icon-box {
    background-color: rgba(255, 109, 0, 0.1);
    transform: scale(1.1);
}

.mvv-card:hover .icon-box i {
    color: var(--primary-color);
}

.icon-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.1), rgba(255, 109, 0, 0.05));
    border-radius: 24px;
    /* Squircle */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    transition: var(--transition-fast);
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

/* Beliefs Grid */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.belief-item {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    /* Mais lento e visível */
    border-top: 6px solid var(--secondary-color);
    position: relative;
}

.belief-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    /* Mais movimento = mais visível */
    border-top-color: var(--primary-color);
}

.belief-item h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.belief-item h3 i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 109, 0, 0.05);
    border-radius: 16px;
    text-align: center;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.quote::before {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 109, 0, 0.1);
    position: absolute;
    top: -30px;
    left: 10px;
    font-family: serif;
}

.quality-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.quality-list i {
    color: #4caf50;
    margin-right: 15px;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.9rem;
}



/* Services Grid (Area de Atuacao) with Glassmorphism */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    /* Increased opacity */
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    /* Mais lento e visível */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Faint border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Removed backdrop-filter to fix stuttering */
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    /* Mais lento */
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-12px) scale(1.03);
    /* Mais movimento = mais visível */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-item i {
    font-size: 3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Mais lento */
}

.service-item:hover i {
    transform: scale(1.3) rotate(-8deg);
    /* Mais movimento = mais visível */
}

/* Split Section (Process & Services) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 4px;
    height: calc(100% - 60px);
    background: #e0e0e0;
    z-index: 0;
    border-radius: 4px;
}

/* Initial State */
.step {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    /* Mais transparente: 0.75 → 0.5 */
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borda mais visível */

    /* Animation Base */
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effect - Zero delay for instant response */
.step:hover {
    transform: translateX(10px) !important;
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease, border-color 0.15s ease !important;
    transition-delay: 0s !important;
}

/* Visible State (Triggered by JS) */
.split-content.visible .step {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.split-content.visible .step:nth-child(1) {
    transition-delay: 0.1s;
}

.split-content.visible .step:nth-child(2) {
    transition-delay: 0.2s;
}

.split-content.visible .step:nth-child(3) {
    transition-delay: 0.3s;
}

.split-content.visible .step:nth-child(4) {
    transition-delay: 0.4s;
}

.split-content.visible .step:nth-child(5) {
    transition-delay: 0.5s;
}

.step i {
    font-size: 1.6rem;
    color: var(--white);
    background: var(--primary-gradient);
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 25px;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.step span {
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.services-detailed-list {
    background: rgba(0, 0, 0, 0.5);
    /* Mais transparente: 0.75 → 0.5 */
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border-top: 8px solid var(--primary-color);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Borda adicional */
}

.services-detailed-list::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    border-radius: 10px;
    transform: rotate(45deg);
}

.services-detailed-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);

    /* Animation Init State */
    opacity: 0;
    transform: translateX(50px);
    /* Maior distância = mais visível */
    transition: opacity 0.7s ease, transform 0.7s ease;
    /* Mais lento */
}

/* Trigger Animation */
.split-content.visible .services-detailed-list li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Delays for Services List */
.split-content.visible .services-detailed-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.split-content.visible .services-detailed-list li:nth-child(2) {
    transition-delay: 0.15s;
}

.split-content.visible .services-detailed-list li:nth-child(3) {
    transition-delay: 0.2s;
}

.split-content.visible .services-detailed-list li:nth-child(4) {
    transition-delay: 0.25s;
}

.split-content.visible .services-detailed-list li:nth-child(5) {
    transition-delay: 0.3s;
}

.split-content.visible .services-detailed-list li:nth-child(6) {
    transition-delay: 0.35s;
}

.split-content.visible .services-detailed-list li:nth-child(7) {
    transition-delay: 0.4s;
}

.split-content.visible .services-detailed-list li:nth-child(8) {
    transition-delay: 0.45s;
}

/* Hover - Instant response with zero delay */
.services-detailed-list li:hover {
    transform: translateX(10px) !important;
    color: var(--primary-color);
    transition: transform 0.15s ease-out, color 0.15s ease !important;
    transition-delay: 0s !important;
}

.services-detailed-list li:last-child {
    border-bottom: none;
}

.services-detailed-list i {
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    font-size: 1.1rem;
}

/* Team */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 350px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.team-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-img-wrapper {
    height: 400px;
    /* Taller images */
    overflow: hidden;
    position: relative;
}

.team-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-info {
    padding: 35px;
    position: relative;
    background: var(--white);
    margin-top: -50px;
    /* More overlap */
    margin-left: 25px;
    margin-right: 25px;
    border-radius: 18px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.team-info h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.team-info .role {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    min-height: 72px;
    /* Force minimum height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #101642, #1a237e);
    /* Darker, richer footer */
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--light-bg);
    border-radius: 0 0 50% 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 90px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    opacity: 0.8;
    max-width: 450px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
    font-size: 1.4rem;
    color: var(--white);
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-8px) rotate(360deg);
}

.footer-contacts h3 {
    color: var(--white);
    margin-bottom: 35px;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.footer-contacts ul li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.95;
    font-size: 1.1rem;
}

.footer-contacts i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* ======================================
   WhatsApp Float Button - Enhanced
====================================== */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 50px;
    right: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

/* Animação de pulso sutil do botão */
@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 45px rgba(37, 211, 102, 0.6), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* Ícone do WhatsApp */
.whatsapp-float i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: var(--transition-fast);
}

/* Hover states */
.whatsapp-float:hover {
    transform: scale(1.2) rotate(15deg);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
    animation: shake 0.5s ease-in-out;
}

/* Animação de shake no hover */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0) rotate(0);
    }

    25% {
        transform: translateX(-3px) rotate(-5deg);
    }

    75% {
        transform: translateX(3px) rotate(5deg);
    }
}

/* Active state */
.whatsapp-float:active {
    transform: scale(1.1);
    transition: transform 0.1s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Services Grid Staggered Animation - Optimized */
.services-list-grid .service-item {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    /* Maior distância = mais visível */
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Mais lento */
}

.services-list-grid.visible .service-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Stagger Children manually for performance instead of JS loop */
.services-list-grid.visible .service-item:nth-child(1) {
    transition-delay: 0.05s;
}

.services-list-grid.visible .service-item:nth-child(2) {
    transition-delay: 0.1s;
}

.services-list-grid.visible .service-item:nth-child(3) {
    transition-delay: 0.15s;
}

.services-list-grid.visible .service-item:nth-child(4) {
    transition-delay: 0.2s;
}

.services-list-grid.visible .service-item:nth-child(5) {
    transition-delay: 0.25s;
}

.services-list-grid.visible .service-item:nth-child(6) {
    transition-delay: 0.3s;
}

.services-list-grid.visible .service-item:nth-child(7) {
    transition-delay: 0.35s;
}

.services-list-grid.visible .service-item:nth-child(8) {
    transition-delay: 0.4s;
}

.services-list-grid.visible .service-item:nth-child(9) {
    transition-delay: 0.45s;
}

.services-list-grid.visible .service-item:nth-child(10) {
    transition-delay: 0.5s;
}

.services-list-grid.visible .service-item:nth-child(11) {
    transition-delay: 0.55s;
}

.services-list-grid.visible .service-item:nth-child(12) {
    transition-delay: 0.6s;
}

.services-list-grid.visible .service-item:nth-child(13) {
    transition-delay: 0.65s;
}

.services-list-grid.visible .service-item:nth-child(14) {
    transition-delay: 0.7s;
}

.services-list-grid.visible .service-item:nth-child(15) {
    transition-delay: 0.75s;
}

.services-list-grid.visible .service-item:nth-child(16) {
    transition-delay: 0.8s;
}

/* Clients Section (Carousel) */
#clientes {
    overflow: hidden;
    padding-bottom: 80px;
}

.clients-carousel {
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay for smooth fade off edges */
.clients-carousel::before,
.clients-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}

.clients-track {
    display: flex;
    width: calc(300px * 26);
    /* Increased width per slide */
    animation: scroll 40s linear infinite;
}

.client-slide {
    width: 300px;
    /* Increased width */
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-slide img {
    max-width: 100%;
    max-height: 180px;
    /* Increased height further */
    object-fit: contain;
    transition: var(--transition-fast);
}

.client-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 13));
    }

    /* Scroll half the new width */
}

.clients-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.9;
}

/* Clients Highlight Box */
.clients-highlight-box {
    max-width: 750px;
    margin: 40px auto 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 3px 10px rgba(15, 52, 96, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.clients-highlight-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e94560, #ff6b6b, #e94560);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.highlight-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(233, 69, 96, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.clients-highlight-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #f0f0f0;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.clients-highlight-text strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.highlight-word {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(233, 69, 96, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .logo-primary img {
        height: 120px;
    }

    .logo-subbrand-list img {
        height: 85px;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .founders-story {
        grid-template-columns: 1fr;
        padding: 0;
        border-radius: 20px;
    }

    .founders-image {
        min-height: 400px;
    }

    .founders-text {
        padding: 40px;
    }

    .split-section {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar {
        background-color: var(--primary-color);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #a9a9a9;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        padding: 120px 0;
        box-shadow: none;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item-social {
        margin-left: 0;
    }

    .header-container {
        justify-content: center;
    }

    .logo-group {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

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

    .logo-subbrand-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo-primary img {
        height: 95px;
    }

    .logo-subbrand-list img {
        height: 68px;
    }

    .logo-subtitle {
        font-size: 0.5rem;
    }

    .nav-link {
        font-size: 1.4rem;
    }

    /* Hero Section Mobile Enhancements */
    .hero {
        background-position: 70% center;
        /* Adjust image focus */
        background-attachment: scroll;
        /* Fix for mobile browser address bar gap/jitter */
        height: auto;
        /* Allow content to dictate height if needed */
        min-height: 100vh;
        /* Ensure it still covers the screen */
        padding-bottom: 50px;
        /* Extra padding for bottom content */
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(26, 35, 126, 0.3), rgba(0, 0, 0, 0.6));
        /* Lighter gradient to show image */
    }

    .hero-content {
        padding: 0 20px;
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.8rem;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
        /* Strong shadow for readability */
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        /* Slightly taller tap targets */
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Make secondary button more visible on mobile */
    .btn-secondary {
        background-color: rgba(0, 0, 0, 0.4);
        /* Dark semi-transparent bg */
        border-color: rgba(255, 255, 255, 0.5);
        backdrop-filter: none;
        /* Ensure no lag */
    }

    .btn-secondary:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer {
        text-align: center;
    }

    .footer-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contacts h3 {
        display: inline-block;
        border-bottom: 3px solid var(--primary-color);
    }

    .footer-contacts ul li {
        justify-content: center;
    }

    /* Reduce logo size on mobile to prevent overflow */
    .logo-group {
        gap: 14px;
    }

    .logo-primary img {
        height: 110px;
    }

    .logo-subbrand-list {
        gap: 8px;
    }

    .logo-subbrand-list img {
        height: 75px;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    /* Compact Services Grid for Mobile (Atuação) */
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns side by side */
        gap: 15px;
    }

    .service-item {
        padding: 20px 10px;
        gap: 10px;
        border-radius: 12px;
        font-size: 0.9rem;
        /* Smaller text */
    }

    .service-item i {
        font-size: 2rem;
        /* Smaller icon */
        margin-bottom: 5px;
    }

    /* COMPACT SECTIONS FOR MOBILE OPTIMIZATION */

    /* 1. Quem Somos (About List) - 2 Column Grid */
    .about-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns to save vertical space */
        gap: 10px;
    }

    .about-list li {
        padding: 15px;
        /* Compact padding */
        font-size: 0.8rem;
        /* Smaller text to fit */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-list i {
        font-size: 1.5rem;
        padding: 10px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    /* 2. Missão, Visão, Valores (MVV) - Compact Stack (No Swipe) */
    .mvv-grid {
        display: grid;
        grid-template-columns: 1fr;
        /* Stacked */
        gap: 15px;
        overflow-x: visible;
        /* Disable scroll */
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .mvv-grid::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .mvv-card {
        min-width: 0;
        scroll-snap-align: none;
        padding: 25px 20px;
        /* Reduced padding */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mvv-card .icon-box {
        width: 60px;
        /* Smaller icon box */
        height: 60px;
        margin-bottom: 15px;
    }

    .mvv-card .icon-box i {
        font-size: 1.5rem;
    }

    .mvv-card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .mvv-card p {
        font-size: 0.9rem;
    }

    /* 3. Beliefs / Ethics / Quality - Compact Grid */
    .beliefs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .belief-item {
        padding: 30px 20px;
    }

    .belief-item h3 {
        font-size: 1.3rem;
    }

    .quote {
        padding: 15px;
        font-size: 1rem;
    }

    /* 4. Process & Services - Compact */
    .section-title {
        margin-bottom: 3rem;
        /* Less space below titles */
    }

    .section {
        padding: 60px 0;
        /* Less vertical padding per section */
    }

    .step {
        padding: 20px 15px;
        /* Compact steps */
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .step i {
        min-width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
        margin-bottom: 0;
    }

    .services-detailed-list {
        padding: 30px 20px;
    }

    .services-detailed-list li {
        margin-bottom: 15px;
        padding-bottom: 15px;
        font-size: 1rem;
    }

    /* Split Section - Stacked on Mobile */
    .split-section {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Process Steps - Adjust for Mobile */
    .process-steps {
        gap: 20px;
    }

    .process-steps::before {
        left: 25px;
        top: 25px;
        width: 3px;
        height: calc(100% - 50px);
    }
}

/* ==================== PROJETO SOCIAL STYLES ==================== */

/* Botão Projeto Social no Menu */
.btn-projeto-social {
    background: linear-gradient(135deg, #e91e63, #c2185b) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transform: translateY(0);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    vertical-align: middle;
}

.btn-projeto-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    color: var(--white) !important;
}

.btn-projeto-social::before {
    display: none !important;
}

/* Botão Projeto Social no Hero */
.btn-social {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    animation: pulse-social 2s infinite;
}

.btn-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.6);
    color: var(--white);
}

@keyframes pulse-social {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(233, 30, 99, 0.7);
    }
}

/* Hero Projeto Social */
.hero-projeto-social {
    height: 85vh;
    min-height: 700px;
    background-color: #c2185b;
    /* Cor de fundo rosa que aparece instantaneamente */
    background-image: linear-gradient(135deg, rgba(233, 30, 99, 0.3) 0%, rgba(194, 24, 91, 0.25) 50%, rgba(136, 14, 79, 0.35) 100%),
        url('imagens projeto/ARTE COMEÇA NA ESCOLA.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
    margin-top: 0;
}

/* Efeito de overlay decorativo */
.hero-projeto-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Efeito de partículas/brilho */
.hero-projeto-social::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 200%;
    animation: sparkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-projeto-social .hero-content {
    padding: 70px 40px;
    width: 100%;
    max-width: 1100px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(233, 30, 99, 0.2) 100%);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 10px 40px rgba(233, 30, 99, 0.3);
    animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-projeto-social .hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow:
        0 8px 25px rgba(0, 0, 0, 0.9),
        0 3px 10px rgba(233, 30, 99, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ffe6f0 50%, #ffd6e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out 0.3s backwards;
    line-height: 1.2;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-large {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffd6e7;
    text-shadow:
        0 5px 15px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(233, 30, 99, 0.6),
        0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1.3;
    letter-spacing: 2px;
    animation: subtitleSlideIn 1s ease-out 0.5s backwards;
    position: relative;
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-projeto-social .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.98);
    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    animation: descSlideIn 1s ease-out 0.7s backwards;
}

@keyframes descSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seções com Overlay Projeto Social */
.projeto-identidade {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/INTERVENÇÕES URBANAS.png') no-repeat center center/cover;
    color: var(--white);
}

.projeto-graffiti {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/GRAFFITI NATURE TRIP 1 EDICAO (3).jpg') no-repeat center center/cover;
    color: var(--white);
}

.projeto-piloto-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/projeto-piloto-2.jpg') no-repeat center center/cover;
    color: var(--white);
}

.primeira-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/PRIMEIRA\ ONDA.jpg') no-repeat center center/cover;
    color: var(--white);
}

.segunda-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/SEGUNDA\ ONDA\ \(3\).jpg') no-repeat center center/cover;
    color: var(--white);
}

.terceira-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/TERCEIRA\ ONDA\ \(5\).jpg') no-repeat center center/cover;
    color: var(--white);
}

.quarta-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/QUARTA\ ONDA\ \(3\).jpg') no-repeat center center/cover;
    color: var(--white);
}

.quinta-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/QUINTA\ ONDA\ \(5\).jpg') no-repeat center center/cover;
    color: var(--white);
}

.sexta-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/SEXTA\ ONDA\ \(3\).jpg') no-repeat center center/cover;
    color: var(--white);
}

.setima-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/SÉTIMA\ ONDA\ \(4\).jpg') no-repeat center center/cover;
    color: var(--white);
}

.oitava-onda-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/OITAVA ONDA.jpg') no-repeat center center/cover;
    color: var(--white);
}

.imaginarte-1-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/IMAGINARTE 1 EDICAO.jpg') no-repeat center center/cover;
    color: var(--white);
}

.imaginarte-2-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/IMAGINARTE 2 EDICAO.jpg') no-repeat center center/cover;
    color: var(--white);
}

.imaginarte-3-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/IMAGINARTE 3 EDICAO.jpg') no-repeat center center/cover;
    color: var(--white);
}

.responsabilidade-ambiental-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/RESPONSABILIDADE AMBIENTAL.jpg') no-repeat center center/cover;
    color: var(--white);
}

.projeto-koleta {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/KOLETA BACKGROUD OCUPACAO.jpg') no-repeat center center/cover;
    color: var(--white);
}

/* Identidade Content */
.identidade-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

.identidade-content p {
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Section Intro */
.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

/* Apoio NB Empreendimentos Section */
.apoio-nb-section {
    background: linear-gradient(135deg, #ff9100 0%, #ff6d00 50%, #ff5722 100%);
    padding: 100px 0;
}

.apoio-nb-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 80px;
    border-radius: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.apoio-nb-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff9100, #ff6d00, #ff5722);
}

.apoio-nb-icon {
    margin-bottom: 30px;
}

.apoio-nb-icon i {
    font-size: 5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.apoio-nb-box h2 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.apoio-nb-box p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 500;
}

.apoio-nb-logo {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 109, 0, 0.2);
}

.apoio-nb-logo img {
    height: 100px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    margin: 0 auto;
}

/* Onda Cards */
.onda-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onda-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.onda-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.onda-card h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Onda Cards em seções com fundo de imagem */
.section-with-overlay .onda-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-with-overlay .onda-card h3 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-with-overlay .onda-card h4 {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.section-with-overlay .onda-card p {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Galleries */
.onda-gallery,
.edition-gallery,
.koleta-gallery,
.ambiental-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.onda-gallery img,
.edition-gallery img,
.koleta-gallery img,
.ambiental-gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.onda-gallery img:hover,
.edition-gallery img:hover,
.koleta-gallery img:hover,
.ambiental-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Edition Cards */
.graffiti-editions,
.imaginarte-editions {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ImaginArte Hero Image */
.imaginarte-hero {
    margin-bottom: 60px;
    text-align: center;
}

.imaginarte-hero img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

/* Intervenções Urbanas Section */
.projeto-intervencoes {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('imagens projeto/INTERVENÇÕES URBANAS (2).png') no-repeat center center/cover;
    color: var(--white);
}

.section-intro-white {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.intervencoes-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.intervencoes-gallery img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
}

.intervencoes-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.midias-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.midias-gallery img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    background: white;
    border: 2px solid white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
}

.midias-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.edition-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.projeto-graffiti .edition-card,
.projeto-koleta .koleta-content {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.edition-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.projeto-graffiti .edition-card h3,
.projeto-koleta h2 {
    color: var(--white);
}

.edition-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bg-light .edition-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.bg-light .edition-card h3 {
    color: var(--primary-color);
}

/* Koleta Content */
.koleta-content {
    padding: 40px;
    border-radius: 24px;
}

.koleta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Ambiental Content */
.ambiental-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ambiental-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

/* Ambiental Content em seções com fundo de imagem */
.section-with-overlay .ambiental-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
}

.section-with-overlay .ambiental-content p {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Holarquia Grid */
.holarquia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.holarquia-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.holarquia-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.holarquia-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.holarquia-item h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contato Projeto */
.contato-projeto-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contato-projeto-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-projeto-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Cards clicáveis (Instagram e Facebook) */
.contato-projeto-box-link {
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.contato-projeto-box-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.05) 0%, rgba(26, 35, 126, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contato-projeto-box-link:hover::before {
    opacity: 1;
}

.contato-projeto-box-link:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 109, 0, 0.2);
}

.contato-projeto-box-link h3 {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contato-projeto-box-link:hover h3 {
    color: var(--primary-color);
}

.contato-projeto-box-link i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.contato-projeto-box-link:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-dark);
}

.contato-projeto-box-link .link-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.contato-projeto-box-link:hover .link-text {
    color: var(--primary-dark);
}

.contato-projeto-box i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.contato-projeto-box h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contato-projeto-box a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contato-projeto-box a:hover {
    color: var(--primary-dark);
}

.contato-projeto-box p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Valores List no MVV */
.valores-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.valores-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.valores-list i {
    color: #4caf50;
    font-size: 1.2rem;
}

/* Responsive Projeto Social */
@media (max-width: 768px) {
    .hero-projeto-social {
        height: auto;
        min-height: 100vh;
        padding: 140px 15px 70px;
        background-attachment: scroll;
        background-position: center center;
    }

    .hero-projeto-social::before {
        background:
            radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
            radial-gradient(circle at 50% 70%, rgba(233, 30, 99, 0.2) 0%, transparent 50%);
    }

    .hero-projeto-social::after {
        display: none;
        /* Remove animação de partículas no mobile para performance */
    }

    .hero-projeto-social .hero-content {
        padding: 40px 20px;
        border-radius: 20px;
        max-width: 100%;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }

    .hero-projeto-social .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-subtitle-large {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .hero-projeto-social .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* Botões na versão mobile */
    .hero-projeto-social .hero-buttons {
        margin-top: 30px !important;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-projeto-social .btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
        justify-content: center;
        border-radius: 50px;
    }

    .btn-instagram,
    .btn-facebook {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .btn-instagram:active,
    .btn-facebook:active {
        transform: translateY(-2px) !important;
    }

    .onda-card,
    .edition-card,
    .koleta-content {
        padding: 30px 20px;
    }

    .onda-card h3,
    .edition-card h3 {
        font-size: 1.5rem;
    }

    .onda-gallery,
    .edition-gallery,
    .koleta-gallery,
    .ambiental-gallery,
    .intervencoes-gallery,
    .midias-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .onda-gallery img,
    .edition-gallery img,
    .koleta-gallery img,
    .ambiental-gallery img,
    .intervencoes-gallery img,
    .midias-gallery img {
        height: auto;
        max-height: 450px;
        width: 100%;
    }

    .imaginarte-hero img {
        border-radius: 16px;
    }

    .holarquia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contato-projeto-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn-projeto-social {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .btn-contact {
        font-size: 0.9rem !important;
        padding: 12px 24px !important;
    }

    .apoio-nb-box {
        padding: 40px 30px;
    }

    .apoio-nb-box h2 {
        font-size: 1.8rem;
    }

    .apoio-nb-box p {
        font-size: 1.1rem;
    }

    .apoio-nb-icon i {
        font-size: 4rem;
    }

    .apoio-nb-logo img {
        height: 80px;
    }
}

/* Social Project Page Styles */
.hero-social {
    background: linear-gradient(120deg, rgba(16, 22, 66, 0.9) 0%, rgba(26, 35, 126, 0.7) 50%, rgba(255, 109, 0, 0.1) 100%), url('imagens projeto/ARTE COME�A NA ESCOLA.png') no-repeat center center/cover;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.social-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.social-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

/* Specific Highlight for Nav Link */
.nav-link.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================
   PÁGINAS DE ÁREA DE ATUAÇÃO
   ========================================== */

/* Hero Section Atuação */
.hero-atuacao {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(255, 109, 0, 0.7)),
        url('engenharia civil.jpg') center/cover no-repeat;
    background-attachment: fixed;
    background-position: center center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    text-align: center;
    padding: 150px 20px 100px;
    overflow: hidden;
}

.hero-atuacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 109, 0, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(26, 35, 126, 0.3) 0%, transparent 60%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s ease-in-out infinite;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

.hero-atuacao .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-atuacao .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 109, 0, 0.4);
    letter-spacing: 1.5px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(to right, #ffffff, #ffe0cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-atuacao .hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-light);
}

/* Content Sections */
.content-intro,
.content-area {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p,
.area-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Atuação Grid */
.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.atuacao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 2px solid transparent;
    text-align: center;
}

.atuacao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.atuacao-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.atuacao-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.atuacao-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.atuacao-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Especializações List */
.especializacoes-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.especializacao-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-left: 4px solid var(--primary-color);
}

.especializacao-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.especializacao-item .item-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.especializacao-item .item-content h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 0;
}

/* Visual Gallery */
.visual-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 3px solid transparent;
}

/* Layout assimétrico - imagens grandes e distribuídas */
.gallery-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 5;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 5;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92) contrast(1.08);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 109, 0, 0.35);
    border-color: var(--primary-color);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.18);
    filter: brightness(1.05) contrast(1.12);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 50px 35px 30px;
    color: var(--white);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(255, 109, 0, 0.97) 0%, rgba(255, 109, 0, 0.8) 60%, transparent 100%);
    padding-bottom: 40px;
}

.gallery-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 800;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-overlay p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.gallery-overlay h4 i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 5px;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay h4 i {
    background: var(--white);
    color: var(--primary-color);
    transform: rotate(360deg) scale(1.1);
    border-color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

/* Featured Image Sections - Imagens Distribuídas */
.featured-image-section {
    padding: 80px 0;
}

.featured-image-wrapper {
    max-width: 100%;
}

.featured-image-large,
.featured-image-medium {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
}

.featured-image-large {
    min-height: 550px;
}

.featured-image-medium {
    min-height: 450px;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-image-large img,
.featured-image-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.9) contrast(1.1);
}

.featured-image-large:hover,
.featured-image-medium:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(255, 109, 0, 0.3);
}

.featured-image-large:hover img,
.featured-image-medium:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    padding: 60px 50px 40px;
    color: var(--white);
    transition: all 0.5s ease;
}

.featured-overlay-green {
    background: linear-gradient(to top, rgba(34, 139, 34, 0.95) 0%, rgba(34, 139, 34, 0.6) 70%, transparent 100%);
}

.featured-image-large:hover .featured-overlay,
.featured-image-medium:hover .featured-overlay {
    background: linear-gradient(to top, rgba(255, 109, 0, 0.97) 0%, rgba(255, 109, 0, 0.7) 70%, transparent 100%);
}

.featured-image-medium:hover .featured-overlay-green {
    background: linear-gradient(to top, rgba(34, 179, 34, 0.97) 0%, rgba(34, 179, 34, 0.7) 70%, transparent 100%);
}

.overlay-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 20px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
}

.overlay-content h3 i {
    font-size: 2.5rem;
}

.overlay-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    max-width: 900px;
}

/* Dual Images - Duas imagens lado a lado */
.dual-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.dual-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    min-height: 480px;
}

.dual-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.92) contrast(1.08);
}

.dual-image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 109, 0, 0.35);
}

.dual-image-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.05) contrast(1.12);
}

.dual-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    padding: 40px 30px 30px;
    color: var(--white);
    transition: all 0.5s ease;
}

.dual-image-item:hover .dual-image-overlay {
    background: linear-gradient(to top, rgba(255, 109, 0, 0.97) 0%, rgba(255, 109, 0, 0.8) 60%, transparent 100%);
    padding-bottom: 40px;
}

.dual-image-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
}

.dual-image-overlay h3 i {
    font-size: 1.8rem;
}

.dual-image-overlay p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Split Content */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.split-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.split-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--primary-color);
    border-radius: var(--radius);
    z-index: -1;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

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

.split-text h2 {
    margin-bottom: 25px;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.split-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Habilidades Content */
.habilidades-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.habilidades-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.highlight-text {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.05), rgba(26, 35, 126, 0.05));
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.quote-box {
    position: relative;
    padding: 30px 40px;
    margin: 40px 0;
    background: var(--light-bg);
    border-radius: var(--radius);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
}

.quote-box i {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.quote-box p {
    margin: 0;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.habilidades-image {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.habilidades-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-fast);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 25%, #ff6d00 75%, #ff9100 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 109, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-box {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.cta-box p {
    font-size: 1.35rem;
    margin-bottom: 50px;
    opacity: 0.98;
    line-height: 1.7;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-buttons .btn {
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

.cta-buttons .btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    border-color: var(--white);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 3px solid var(--white);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
    transform: translateX(5px);
}

/* Responsive - Páginas de Atuação */
@media (max-width: 1200px) {
    .visual-gallery {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 6;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .gallery-item img {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-atuacao {
        min-height: 500px;
        padding: 120px 20px 80px;
        background-attachment: scroll;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .hero-atuacao .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-atuacao .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-shapes .shape-1 {
        width: 200px;
        height: 200px;
    }

    .hero-shapes .shape-2 {
        width: 150px;
        height: 150px;
    }

    .hero-shapes .shape-3 {
        width: 100px;
        height: 100px;
    }

    .atuacao-grid {
        grid-template-columns: 1fr;
    }

    .visual-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item img {
        min-height: 350px;
    }

    .gallery-overlay {
        padding: 35px 25px 25px;
    }

    .gallery-overlay h4 {
        font-size: 1.5rem;
    }

    .gallery-overlay p {
        font-size: 1rem;
    }

    .featured-image-large,
    .featured-image-medium {
        min-height: 400px;
    }

    .featured-overlay {
        padding: 40px 25px 25px;
    }

    .overlay-content h3 {
        font-size: 1.7rem;
        gap: 12px;
    }

    .overlay-content h3 i {
        font-size: 1.8rem;
    }

    .overlay-content p {
        font-size: 1.05rem;
    }

    .dual-images-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dual-image-item {
        min-height: 380px;
    }

    .dual-image-overlay {
        padding: 30px 20px 20px;
    }

    .dual-image-overlay h3 {
        font-size: 1.5rem;
    }

    .dual-image-overlay p {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-box h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .cta-box p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 35px;
        font-size: 1rem;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-features {
        grid-template-columns: 1fr;
    }

    .especializacao-item {
        flex-direction: column;
        text-align: center;
    }

    .especializacao-item .item-number {
        min-width: auto;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   PÁGINA DE PROJETOS - ESTILOS ESPECÍFICOS
   ============================================ */

/* Etapas Grid */
.etapas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.etapa-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.etapa-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.etapa-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

.etapa-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    padding-right: 60px;
}

.etapa-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Tipos Grid */
.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tipo-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.tipo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.tipo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.tipo-card:hover .tipo-icon {
    transform: scale(1.1) rotate(10deg);
}

.tipo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tipo-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Split Content */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.content-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: var(--secondary-color);
}

.normas-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.normas-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.normas-list li:last-child {
    border-bottom: none;
}

.normas-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.content-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.featured-image {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Softwares Grid */
.softwares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.software-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.software-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.software-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition-fast);
}

.software-card:hover .software-icon {
    transform: scale(1.1);
}

.software-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.software-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: '?';
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Etapas Images Grid */
.etapas-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.etapa-image-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.etapa-image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.etapa-image-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Responsivo para Projetos */
@media (max-width: 768px) {
    .etapas-grid {
        grid-template-columns: 1fr;
    }

    .tipos-grid {
        grid-template-columns: 1fr;
    }

    .split-content {
        grid-template-columns: 1fr;
    }

    .softwares-grid {
        grid-template-columns: 1fr;
    }

    .etapa-card {
        padding: 40px 25px 25px;
    }

    .etapa-number {
        top: -10px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .etapa-card h3 {
        font-size: 1.2rem;
        padding-right: 50px;
    }

    .etapas-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .etapa-image-item img {
        height: 250px;
    }

    .image-caption {
        font-size: 1rem;
        padding: 20px 15px 15px;
    }
}

/* ============================================
   PÁGINA DE ADMINISTRAÇÃO PREDITIVA - ESTILOS ESPECÍFICOS
   ============================================ */

/* Processo Grid */
.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.processo-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.processo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.processo-card:hover::before {
    transform: scaleX(1);
}

.processo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.processo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.processo-card:hover .processo-icon {
    transform: scale(1.1) rotate(10deg);
}

.processo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.processo-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefícios List */
.beneficios-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.beneficios-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.beneficios-list li:last-child {
    border-bottom: none;
}

.beneficios-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Métodos Grid */
.metodos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.metodo-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.metodo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.03), rgba(255, 109, 0, 0.03));
    opacity: 0;
    transition: var(--transition);
}

.metodo-card:hover::before {
    opacity: 1;
}

.metodo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.metodo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.metodo-card:hover .metodo-icon {
    transform: scale(1.1) rotate(5deg);
}

.metodo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.metodo-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Tecnologias Grid */
.tecnologias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tecnologia-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.tecnologia-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.tecnologia-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.tecnologia-card:hover .tecnologia-icon {
    transform: scale(1.1);
}

.tecnologia-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tecnologia-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Tech Images Grid */
.tech-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.tech-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(26, 35, 126, 0.7) 0%,
            rgba(255, 109, 0, 0.6) 100%);
    opacity: 0.6;
    z-index: 1;
    transition: var(--transition);
}

.tech-image-item:hover::before {
    opacity: 0.8;
}

.tech-image-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.tech-image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.tech-image-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.tech-image-item:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%);
    color: var(--white);
    padding: 60px 30px 30px;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.tech-image-item:hover .image-caption {
    padding-bottom: 40px;
    font-size: 1.5rem;
}

/* Adicionar ícone decorativo na caption */
.image-caption::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Conclusão Box */
.conclusao-box {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05), rgba(255, 109, 0, 0.05));
    padding: 60px 50px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--primary-color);
    position: relative;
}

.conclusao-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
}

.conclusao-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.conclusao-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
}

/* Responsivo para Administração Preditiva */
@media (max-width: 768px) {
    .processo-grid {
        grid-template-columns: 1fr;
    }

    .metodos-grid {
        grid-template-columns: 1fr;
    }

    .metodo-card {
        padding: 40px 25px;
    }

    .metodo-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .metodo-card h3 {
        font-size: 1.2rem;
    }

    .tecnologias-grid {
        grid-template-columns: 1fr;
    }

    .tech-images-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tech-image-item img {
        height: 300px;
    }

    .image-caption {
        font-size: 1.2rem;
        padding: 50px 20px 25px;
    }

    .tech-image-item:hover .image-caption {
        font-size: 1.3rem;
        padding-bottom: 30px;
    }

    .conclusao-box {
        padding: 40px 30px;
    }

    .conclusao-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .conclusao-box h2 {
        font-size: 1.8rem;
    }

    .conclusao-box p {
        font-size: 1rem;
    }
}

/* ============================================
   PÁGINA DE TERRAPLANAGEM - ESTILOS ESPECÍFICOS
   ============================================ */

/* Etapas Terra Grid */
.etapas-terra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.etapa-terra-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.etapa-terra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.etapa-terra-card:hover::before {
    transform: scaleX(1);
}

.etapa-terra-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.etapa-terra-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.etapa-terra-card:hover .etapa-terra-icon {
    transform: scale(1.1) rotate(10deg);
}

.etapa-terra-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.etapa-terra-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Aplicações Grid */
.aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.aplicacao-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.aplicacao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.aplicacao-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition-fast);
}

.aplicacao-card:hover .aplicacao-icon {
    transform: scale(1.1);
}

.aplicacao-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.aplicacao-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Equipamentos Grid */
.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.equipamento-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
}

.equipamento-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.equipamento-card:hover::before {
    transform: scaleX(1);
}

.equipamento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.equipamento-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.equipamento-card:hover .equipamento-icon {
    transform: scale(1.1) rotate(-5deg);
}

.equipamento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.equipamento-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsivo para Terraplanagem */
@media (max-width: 768px) {
    .etapas-terra-grid {
        grid-template-columns: 1fr;
    }

    .aplicacoes-grid {
        grid-template-columns: 1fr;
    }

    .equipamentos-grid {
        grid-template-columns: 1fr;
    }

    .etapa-terra-card,
    .aplicacao-card,
    .equipamento-card {
        padding: 35px 25px;
    }

    .etapa-terra-icon,
    .equipamento-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .aplicacao-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
}

/* ============================================
   PÁGINA DE FUNDAÇÃO - ESTILOS ESPECÍFICOS
   ============================================ */

/* Fatores Grid */
.fatores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.fator-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.fator-card:hover::before {
    transform: scaleX(1);
}

.fator-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.fator-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
}

.fator-card:hover .fator-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.5);
}

.fator-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.fator-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* Equipamentos Fundação Grid */
.equipamentos-fundacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.equipamento-fundacao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.equipamento-fundacao-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.equipamento-fundacao-card:hover::before {
    transform: scaleX(1);
}

.equipamento-fundacao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.equipamento-fundacao-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.equipamento-fundacao-card:hover .equipamento-fundacao-icon {
    transform: scale(1.1) rotate(-5deg);
}

.equipamento-fundacao-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 700;
}

.equipamento-fundacao-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
}

/* Etapas Fundação Grid */
.etapas-fundacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.etapa-fundacao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.etapa-fundacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.etapa-fundacao-card:hover::before {
    transform: scaleX(1);
}

.etapa-fundacao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.etapa-fundacao-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.etapa-fundacao-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.etapa-fundacao-card:hover .etapa-fundacao-icon {
    transform: scale(1.1) rotate(10deg);
}

.etapa-fundacao-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.etapa-fundacao-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Tipos de Fundação - Introdução */
.tipos-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.tipos-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    background: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
}

/* Tipos de Fundação */
.tipo-fundacao-section {
    margin-bottom: 40px;
}

.tipo-fundacao-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.tipo-fundacao-title i {
    color: var(--primary-color);
    font-size: 2rem;
}

.tipo-fundacao-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Fundação Items Grid */
.fundacao-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.fundacao-item-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.fundacao-item-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-width: 8px;
}

.fundacao-item-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition-fast);
}

.fundacao-item-card:hover .fundacao-item-icon {
    transform: scale(1.1);
}

.fundacao-item-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.fundacao-item-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Garantia Content */
.garantia-content {
    max-width: 900px;
    margin: 0 auto;
}

.garantia-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 5px solid #ff9800;
    border-radius: var(--radius);
    padding: 30px;
    margin: 35px 0;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.alert-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.alert-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e65100;
}

.alert-content ul {
    list-style: none;
    padding: 0;
}

.alert-content ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.7;
}

.alert-content ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Investigação Grid */
.investigacao-content {
    max-width: 1000px;
    margin: 0 auto;
}

.investigacao-content>p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.investigacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.investigacao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.investigacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-smooth);
}

.investigacao-card:hover::before {
    transform: scaleY(1);
}

.investigacao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.investigacao-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.investigacao-card:hover .investigacao-icon {
    transform: scale(1.1) rotate(-10deg);
}

.investigacao-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 700;
}

.investigacao-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
}

/* Responsivo para Fundação */
@media (max-width: 768px) {
    .fatores-grid {
        grid-template-columns: 1fr;
    }

    .equipamentos-fundacao-grid {
        grid-template-columns: 1fr;
    }

    .etapas-fundacao-grid {
        grid-template-columns: 1fr;
    }

    .fundacao-items-grid {
        grid-template-columns: 1fr;
    }

    .investigacao-grid {
        grid-template-columns: 1fr;
    }

    .fator-card,
    .equipamento-fundacao-card,
    .etapa-fundacao-card,
    .fundacao-item-card,
    .investigacao-card {
        padding: 35px 25px;
    }

    .fator-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .equipamento-fundacao-icon,
    .investigacao-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .etapa-fundacao-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .fundacao-item-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .alert-box {
        flex-direction: column;
        padding: 25px;
    }

    .alert-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .tipo-fundacao-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .garantia-content p,
    .investigacao-content>p {
        font-size: 1rem;
    }
}

/* ============================================
   PÁGINA DE ALVENARIA - ESTILOS ESPECÍFICOS
   ============================================ */

/* Funções Alvenaria Grid */
.funcoes-alvenaria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.funcao-alvenaria-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.funcao-alvenaria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.funcao-alvenaria-card:hover::before {
    transform: scaleX(1);
}

.funcao-alvenaria-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.funcao-alvenaria-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
}

.funcao-alvenaria-card:hover .funcao-alvenaria-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.5);
}

.funcao-alvenaria-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.funcao-alvenaria-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* Materiais Alvenaria Grid */
.materiais-alvenaria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.material-alvenaria-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.material-alvenaria-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.material-alvenaria-card:hover::before {
    transform: scaleX(1);
}

.material-alvenaria-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.material-alvenaria-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.material-alvenaria-card:hover .material-alvenaria-icon {
    transform: scale(1.1) rotate(-10deg);
}

.material-alvenaria-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.material-alvenaria-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Métodos Alvenaria Section */
.metodo-alvenaria-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition-fast);
}

.metodo-alvenaria-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.metodo-alvenaria-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.metodo-alvenaria-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.metodo-alvenaria-header h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin: 0;
}

.metodo-alvenaria-content {
    padding-left: 80px;
}

.metodo-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.metodo-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.metodo-detail-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.metodo-detail-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.metodo-detail-item h4 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metodo-detail-item h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.metodo-detail-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Requisitos Alvenaria Grid */
.requisitos-alvenaria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.requisito-alvenaria-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.requisito-alvenaria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition-smooth);
}

.requisito-alvenaria-card:hover::before {
    transform: scaleY(1);
}

.requisito-alvenaria-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.requisito-alvenaria-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.requisito-alvenaria-card:hover .requisito-alvenaria-icon {
    transform: scale(1.1) rotate(5deg);
}

.requisito-alvenaria-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 700;
}

.requisito-alvenaria-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsivo para Alvenaria */
@media (max-width: 768px) {
    .funcoes-alvenaria-grid {
        grid-template-columns: 1fr;
    }

    .materiais-alvenaria-grid {
        grid-template-columns: 1fr;
    }

    .requisitos-alvenaria-grid {
        grid-template-columns: 1fr;
    }

    .funcao-alvenaria-card,
    .material-alvenaria-card,
    .requisito-alvenaria-card {
        padding: 35px 25px;
    }

    .funcao-alvenaria-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .material-alvenaria-icon,
    .requisito-alvenaria-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .metodo-alvenaria-section {
        padding: 30px 20px;
    }

    .metodo-alvenaria-content {
        padding-left: 0;
    }

    .metodo-alvenaria-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .metodo-alvenaria-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .metodo-alvenaria-header h3 {
        font-size: 1.4rem;
    }

    .metodo-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PÁGINA DE TELHADOS - ESTILOS ESPECÍFICOS
   ============================================ */

/* Requisitos Telhado Grid */
.requisitos-telhado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.requisito-telhado-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.requisito-telhado-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.requisito-telhado-card:hover::before {
    transform: scaleX(1);
}

.requisito-telhado-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.requisito-telhado-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.requisito-telhado-card:hover .requisito-telhado-icon {
    transform: scale(1.1) rotate(10deg);
}

.requisito-telhado-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.requisito-telhado-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Estrutura Telhado Section */
.estrutura-telhado-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition-fast);
}

.estrutura-telhado-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.estrutura-telhado-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.estrutura-telhado-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.estrutura-telhado-header h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin: 0;
}

.estrutura-telhado-content {
    padding-left: 80px;
}

.estrutura-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Componentes Grid */
.componentes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.componente-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.componente-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-5px);
}

.componente-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.componente-item:hover .componente-icon {
    transform: scale(1.1);
}

.componente-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.componente-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Alert Box Telhado */
.alert-box-telhado {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 5px solid #ff9800;
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 35px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.alert-icon-telhado {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.alert-content-telhado h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #e65100;
}

.alert-content-telhado p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Tipos Telhado Grid */
.tipos-telhado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.tipo-telhado-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tipo-telhado-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.tipo-telhado-card:hover::before {
    transform: scaleX(1);
}

.tipo-telhado-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.tipo-telhado-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.tipo-telhado-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.tipo-telhado-card:hover .tipo-telhado-icon {
    transform: scale(1.1) rotate(10deg);
}

.tipo-telhado-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.tipo-telhado-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Inclinação Info */
.inclinacao-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border-left: 5px solid var(--primary-color);
}

.inclinacao-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.inclinacao-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.inclinacao-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsivo para Telhados */
@media (max-width: 768px) {
    .requisitos-telhado-grid {
        grid-template-columns: 1fr;
    }

    .tipos-telhado-grid {
        grid-template-columns: 1fr;
    }

    .componentes-grid {
        grid-template-columns: 1fr;
    }

    .requisito-telhado-card,
    .tipo-telhado-card {
        padding: 35px 25px;
    }

    .requisito-telhado-icon,
    .tipo-telhado-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .estrutura-telhado-section {
        padding: 30px 20px;
    }

    .estrutura-telhado-content {
        padding-left: 0;
    }

    .estrutura-telhado-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .estrutura-telhado-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .estrutura-telhado-header h3 {
        font-size: 1.4rem;
    }

    .alert-box-telhado {
        flex-direction: column;
        padding: 25px;
    }

    .alert-icon-telhado {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .inclinacao-info {
        flex-direction: column;
        padding: 30px;
    }

    .inclinacao-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .tipo-telhado-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ============================================
   PÁGINA DE RUFOS E CALHAS - ESTILOS ESPECÍFICOS
   ============================================ */

/* Introdução Rufos Layout */
.intro-rufos-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.intro-rufos-text {
    position: relative;
}

.intro-rufos-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.3);
}

.intro-rufos-text>p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 35px;
}

.intro-rufos-benefits {
    background: linear-gradient(135deg, #f5f5f5, #e8eaf6);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.intro-rufos-benefits h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.intro-rufos-benefits h3 i {
    font-size: 1.5rem;
}

.intro-rufos-benefits>p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.intro-rufos-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-rufos-benefits ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-color);
}

.intro-rufos-benefits ul li i {
    color: #e53935;
    font-size: 1.1rem;
}

.intro-rufos-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.1), rgba(26, 35, 126, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.image-badge {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.image-frame:hover .image-badge {
    transform: translateY(0);
}

.image-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.image-badge span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Diferenças Grid */
.diferencas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.diferenca-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.diferenca-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.diferenca-card:hover::before {
    transform: scaleX(1);
}

.diferenca-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.diferenca-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: var(--transition-fast);
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.3);
}

.diferenca-card:hover .diferenca-icon {
    transform: scale(1.1) rotate(10deg);
}

.diferenca-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.diferenca-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* Materiais Calhas Grid */
.materiais-calhas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.material-calha-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.material-calha-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #0d47a1);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-smooth);
}

.material-calha-card:hover::before {
    transform: scaleX(1);
}

.material-calha-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.material-calha-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.material-calha-card:hover .material-calha-icon {
    transform: scale(1.1) rotate(-10deg);
}

.material-calha-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.material-calha-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Modelos Rufos Grid */
.modelos-rufos-grid {
    display: grid;
    gap: 35px;
    margin-top: 50px;
}

.modelo-rufo-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition-fast);
}

.modelo-rufo-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.modelo-rufo-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.modelo-rufo-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.modelo-rufo-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.modelo-rufo-content {
    padding-left: 85px;
}

.modelo-rufo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Considerações Grid */
.consideracoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.consideracao-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.consideracao-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.consideracao-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.consideracao-item:hover .consideracao-icon {
    transform: scale(1.1);
}

.consideracao-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.consideracao-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Considerações - Image Wrapper */
.consideracoes-image-wrapper {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-frame-consideracoes {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    border: 5px solid var(--white);
}

.image-frame-consideracoes:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.image-frame-consideracoes img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-consideracoes:hover img {
    transform: scale(1.05);
}

.image-overlay-consideracoes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.15), rgba(26, 35, 126, 0.15));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-consideracoes:hover .image-overlay-consideracoes {
    opacity: 1;
}

.overlay-badge {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-consideracoes:hover .overlay-badge {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge i {
    color: #4caf50;
    font-size: 1.5rem;
}

.overlay-badge span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f5f5f5, #e8eaf6);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.image-caption i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.image-caption p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Alert Box Rufos */
.patologias-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.patologias-alert-box {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e3f2fd;
}

.alert-header-rufos {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e3f2fd;
}

.alert-icon-circle {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(25, 118, 210, 0.5);
    }
}

.alert-header-text h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.alert-header-text p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.patologias-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.patologia-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border-radius: 12px;
    transition: var(--transition-fast);
    border-left: 4px solid transparent;
}

.patologia-item:hover {
    transform: translateX(10px);
    border-left-color: #e53935;
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.patologia-icon-wrapper {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e53935, #c62828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition-fast);
}

.patologia-item:hover .patologia-icon-wrapper {
    transform: rotate(360deg);
}

.patologia-content h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.patologia-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.alert-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 20px;
    background: var(--primary-gradient);
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.3);
}

.alert-cta i {
    font-size: 1.5rem;
}

.patologias-image-wrapper {
    position: relative;
}

.image-frame-patologia {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    height: 100%;
}

.image-frame-patologia:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-frame-patologia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-patologia:hover img {
    transform: scale(1.05);
}

.image-overlay-patologia {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.2), rgba(26, 35, 126, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-patologia:hover .image-overlay-patologia {
    opacity: 1;
}

.image-label-patologia {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.image-frame-patologia:hover .image-label-patologia {
    transform: translateY(0);
}

.image-label-patologia i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.image-label-patologia span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Alert Box Rufos - Removido (substituído por patologias-layout) */
.alert-box-rufos {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 5px solid var(--secondary-color);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.alert-icon-rufos {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.alert-content-rufos h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.alert-content-rufos p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.alert-content-rufos ul {
    list-style: none;
    padding: 0;
}

.alert-content-rufos ul li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-content-rufos ul li i {
    color: #4caf50;
    font-size: 1.1rem;
}

/* Responsivo para Rufos e Calhas */
@media (max-width: 768px) {
    .intro-rufos-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-rufos-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .intro-rufos-text>p {
        font-size: 1rem;
    }

    .intro-rufos-benefits {
        padding: 25px;
    }

    .intro-rufos-benefits h3 {
        font-size: 1.2rem;
    }

    .image-frame {
        border-radius: 15px;
    }

    .diferencas-grid {
        grid-template-columns: 1fr;
    }

    .materiais-calhas-grid {
        grid-template-columns: 1fr;
    }

    .consideracoes-grid {
        grid-template-columns: 1fr;
    }

    .consideracoes-image-wrapper {
        margin-top: 40px;
    }

    .image-frame-consideracoes {
        border-radius: 15px;
        border-width: 3px;
    }

    .image-caption {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .image-caption i {
        font-size: 1.2rem;
    }

    .image-caption p {
        font-size: 0.95rem;
    }

    .patologias-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .patologias-alert-box {
        padding: 35px;
    }

    .alert-header-rufos {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .alert-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .alert-header-text h3 {
        font-size: 1.3rem;
    }

    .patologia-item {
        padding: 18px;
    }

    .patologia-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .patologia-content h4 {
        font-size: 1rem;
    }

    .alert-cta {
        font-size: 0.95rem;
        padding: 18px;
    }

    .image-frame-patologia {
        min-height: 300px;
    }

    .diferenca-card {
        padding: 40px 30px;
    }

    .diferenca-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .material-calha-card {
        padding: 35px 25px;
    }

    .material-calha-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .modelo-rufo-section {
        padding: 30px 20px;
    }

    .modelo-rufo-content {
        padding-left: 0;
    }

    .modelo-rufo-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .modelo-rufo-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .modelo-rufo-header h3 {
        font-size: 1.3rem;
    }

    .consideracao-item {
        padding: 35px 25px;
    }

    .consideracao-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .alert-box-rufos {
        flex-direction: column;
        padding: 30px;
    }

    .alert-icon-rufos {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}


/* ============================================
   P�GINA DE EL�TRICA - ESTILOS ESPEC�FICOS
   ============================================ */

/* Introdu��o El�trica Layout */
.intro-eletrica-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.intro-eletrica-text {
    position: relative;
}

.intro-eletrica-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.intro-eletrica-text>p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
}

/* Impactos Grid */
.impactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impacto-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.impacto-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.impacto-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.impacto-card:hover .impacto-icon {
    transform: scale(1.1) rotate(5deg);
}

.impacto-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.impacto-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Alert Box El�trica */
.alert-box-eletrica {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left: 5px solid #ff6f00;
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 40px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.alert-icon-eletrica {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6f00, #e65100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

.alert-content-eletrica h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #e65100;
}

.alert-content-eletrica p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}


/* Norma Highlight */
.norma-highlight {
    display: flex;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
}

.norma-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.norma-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.norma-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 50px 0 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subsection-title i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Etapas Projeto Grid */
.etapas-projeto-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.etapa-projeto-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition-fast);
}

.etapa-projeto-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.etapa-projeto-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.etapa-projeto-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.etapa-projeto-content p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.formula-box {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
}

.formula {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
}


/* Componentes El�trica Grid */
.componentes-eletrica-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.componente-eletrica-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid transparent;
}

.componente-eletrica-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: #ffc107;
}

.componente-eletrica-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.componente-eletrica-card:hover .componente-eletrica-icon {
    transform: scale(1.1);
}

.componente-eletrica-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.componente-eletrica-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Aterramento Section */
.aterramento-section {
    margin-top: 50px;
    background: linear-gradient(135deg, #f5f5f5, #e8eaf6);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.aterramento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.aterramento-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.aterramento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.aterramento-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.aterramento-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* NR10 Highlight */
.nr10-highlight {
    display: flex;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ff6f00;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.nr10-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6f00, #e65100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.nr10-content h3 {
    font-size: 1.4rem;
    color: #e65100;
    margin-bottom: 12px;
}

.nr10-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* EPIs e EPCs Layout */
.epis-epcs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.epi-epc-box {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--primary-color);
}

.epi-epc-box h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.epi-epc-box ul {
    list-style: none;
    padding: 0;
}

.epi-epc-box ul li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.epi-epc-box ul li i {
    color: #4caf50;
    font-size: 1.1rem;
}


/* Execu��o Timeline */
.execucao-timeline {
    position: relative;
    padding: 30px 0;
    margin-top: 50px;
}

.execucao-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.4);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testes Grid */
.testes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.teste-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.teste-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.teste-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), #0d47a1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.teste-card:hover .teste-icon {
    transform: scale(1.1);
}

.teste-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.teste-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Efici�ncia Layout */
.eficiencia-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.eficiencia-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.eficiencia-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-left: 5px solid #ffc107;
}

.eficiencia-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.eficiencia-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.eficiencia-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.eficiencia-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.eficiencia-stat {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f5f5f5;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.eficiencia-image-wrapper {
    position: relative;
}

.image-frame-eficiencia {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.image-frame-eficiencia:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.image-frame-eficiencia img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-eficiencia:hover img {
    transform: scale(1.05);
}

.image-overlay-eficiencia {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(26, 35, 126, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-eficiencia:hover .image-overlay-eficiencia {
    opacity: 1;
}

.overlay-label {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-eficiencia:hover .overlay-label {
    transform: scale(1);
    opacity: 1;
}

.overlay-label i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.overlay-label span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Conclus�o El�trica Box */
.conclusao-eletrica-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.conclusao-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
}

.conclusao-eletrica-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.conclusao-cta {
    margin: 40px 0 30px 0;
}

/* Responsivo para El�trica */
@media (max-width: 768px) {
    .intro-eletrica-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impactos-grid {
        grid-template-columns: 1fr;
    }

    .norma-highlight {
        flex-direction: column;
        padding: 30px;
    }

    .norma-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .etapas-projeto-grid {
        gap: 25px;
    }

    .etapa-projeto-item {
        flex-direction: column;
        padding: 25px;
    }

    .etapa-projeto-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .componentes-eletrica-grid {
        grid-template-columns: 1fr;
    }

    .aterramento-grid {
        grid-template-columns: 1fr;
    }

    .aterramento-section {
        padding: 30px;
    }

    .nr10-highlight {
        flex-direction: column;
        padding: 30px;
    }

    .nr10-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .epis-epcs-layout {
        grid-template-columns: 1fr;
    }

    .execucao-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-marker {
        top: 0;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .testes-grid {
        grid-template-columns: 1fr;
    }

    .eficiencia-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .conclusao-eletrica-box {
        padding: 35px 25px;
    }

    .conclusao-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Frame de Imagem - Projeto El�trico */
.image-frame-projeto-eletrico {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.image-frame-projeto-eletrico:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 109, 0, 0.3);
    border-color: var(--primary-color);
}

.image-frame-projeto-eletrico img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-projeto-eletrico:hover img {
    transform: scale(1.08);
}

.image-overlay-projeto {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.15), rgba(26, 35, 126, 0.15));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-projeto-eletrico:hover .image-overlay-projeto {
    opacity: 1;
}

.overlay-badge-projeto {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-projeto-eletrico:hover .overlay-badge-projeto {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-projeto i {
    color: #4caf50;
    font-size: 2rem;
}

.overlay-badge-projeto span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-projeto {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-projeto-eletrico:hover .image-caption-projeto {
    bottom: 20px;
}

.image-caption-projeto i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.image-caption-projeto span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .image-frame-projeto-eletrico {
        border-radius: 15px;
        border-width: 3px;
    }

    .overlay-badge-projeto {
        padding: 15px 25px;
    }

    .overlay-badge-projeto i {
        font-size: 1.5rem;
    }

    .overlay-badge-projeto span {
        font-size: 1rem;
    }

    .image-caption-projeto {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .image-caption-projeto i {
        font-size: 1.1rem;
    }

    .image-frame-projeto-eletrico:hover .image-caption-projeto {
        bottom: 15px;
    }
}

/* Frame de Imagem - Seguran�a El�trica */
.image-frame-seguranca {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.image-frame-seguranca:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
    border-color: #ffc107;
}

.image-frame-seguranca img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-seguranca:hover img {
    transform: scale(1.08);
}

.image-overlay-seguranca {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 87, 34, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-seguranca:hover .image-overlay-seguranca {
    opacity: 1;
}

.overlay-badge-seguranca {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-seguranca:hover .overlay-badge-seguranca {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-seguranca i {
    color: #ff9800;
    font-size: 2rem;
}

.overlay-badge-seguranca span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-seguranca {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-seguranca:hover .image-caption-seguranca {
    bottom: 20px;
}

.image-caption-seguranca i {
    color: #ff9800;
    font-size: 1.3rem;
}

.image-caption-seguranca span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Frame de Imagem - Componentes */
.image-frame-componentes {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.image-frame-componentes:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.4);
    border-color: var(--secondary-color);
}

.image-frame-componentes img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-componentes:hover img {
    transform: scale(1.08);
}

.image-overlay-componentes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.2), rgba(13, 71, 161, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-componentes:hover .image-overlay-componentes {
    opacity: 1;
}

.overlay-badge-componentes {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-componentes:hover .overlay-badge-componentes {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-componentes i {
    color: var(--secondary-color);
    font-size: 2rem;
}

.overlay-badge-componentes span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-componentes {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-componentes:hover .image-caption-componentes {
    bottom: 20px;
}

.image-caption-componentes i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.image-caption-componentes span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Frame de Imagem - Canteiro NR-10 */
.image-frame-canteiro {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.image-frame-canteiro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 109, 0, 0.4);
    border-color: var(--primary-color);
}

.image-frame-canteiro img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-canteiro:hover img {
    transform: scale(1.08);
}

.image-overlay-canteiro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.2), rgba(244, 67, 54, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-canteiro:hover .image-overlay-canteiro {
    opacity: 1;
}

.overlay-badge-canteiro {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-canteiro:hover .overlay-badge-canteiro {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-canteiro i {
    color: var(--primary-color);
    font-size: 2rem;
}

.overlay-badge-canteiro span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-canteiro {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-canteiro:hover .image-caption-canteiro {
    bottom: 20px;
}

.image-caption-canteiro i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.image-caption-canteiro span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Frame de Imagem - Testes */
.image-frame-testes {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.image-frame-testes:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.4);
    border-color: #4caf50;
}

.image-frame-testes img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-testes:hover img {
    transform: scale(1.08);
}

.image-overlay-testes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-testes:hover .image-overlay-testes {
    opacity: 1;
}

.overlay-badge-testes {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-testes:hover .overlay-badge-testes {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-testes i {
    color: #4caf50;
    font-size: 2rem;
}

.overlay-badge-testes span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-testes {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-testes:hover .image-caption-testes {
    bottom: 20px;
}

.image-caption-testes i {
    color: #4caf50;
    font-size: 1.3rem;
}

.image-caption-testes span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Frame de Imagem - Efici�ncia Energia */
.image-frame-eficiencia-energia {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.image-frame-eficiencia-energia:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 195, 74, 0.4);
    border-color: #8bc34a;
}

.image-frame-eficiencia-energia img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-eficiencia-energia:hover img {
    transform: scale(1.08);
}

.image-overlay-eficiencia-energia {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.2), rgba(104, 159, 56, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-eficiencia-energia:hover .image-overlay-eficiencia-energia {
    opacity: 1;
}

.overlay-badge-eficiencia-energia {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-eficiencia-energia:hover .overlay-badge-eficiencia-energia {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-eficiencia-energia i {
    color: #8bc34a;
    font-size: 2rem;
}

.overlay-badge-eficiencia-energia span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-eficiencia-energia {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-eficiencia-energia:hover .image-caption-eficiencia-energia {
    bottom: 20px;
}

.image-caption-eficiencia-energia i {
    color: #8bc34a;
    font-size: 1.3rem;
}

.image-caption-eficiencia-energia span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Frame de Imagem - Profissional */
.image-frame-profissional {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.image-frame-profissional:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
    border-color: #ffc107;
}

.image-frame-profissional img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-profissional:hover img {
    transform: scale(1.08);
}

.image-overlay-profissional {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-profissional:hover .image-overlay-profissional {
    opacity: 1;
}

.overlay-badge-profissional {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-profissional:hover .overlay-badge-profissional {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-profissional i {
    color: #ffc107;
    font-size: 2rem;
}

.overlay-badge-profissional span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-profissional {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-profissional:hover .image-caption-profissional {
    bottom: 20px;
}

.image-caption-profissional i {
    color: #ffc107;
    font-size: 1.3rem;
}

.image-caption-profissional span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Ajustes responsivos para todas as imagens */
@media (max-width: 768px) {

    .image-frame-seguranca,
    .image-frame-componentes,
    .image-frame-canteiro,
    .image-frame-testes,
    .image-frame-eficiencia-energia,
    .image-frame-profissional {
        border-radius: 15px;
        border-width: 3px;
    }

    .overlay-badge-seguranca,
    .overlay-badge-componentes,
    .overlay-badge-canteiro,
    .overlay-badge-testes,
    .overlay-badge-eficiencia-energia,
    .overlay-badge-profissional {
        padding: 15px 25px;
    }

    .overlay-badge-seguranca i,
    .overlay-badge-componentes i,
    .overlay-badge-canteiro i,
    .overlay-badge-testes i,
    .overlay-badge-eficiencia-energia i,
    .overlay-badge-profissional i {
        font-size: 1.5rem;
    }

    .overlay-badge-seguranca span,
    .overlay-badge-componentes span,
    .overlay-badge-canteiro span,
    .overlay-badge-testes span,
    .overlay-badge-eficiencia-energia span,
    .overlay-badge-profissional span {
        font-size: 1rem;
    }

    .image-caption-seguranca,
    .image-caption-componentes,
    .image-caption-canteiro,
    .image-caption-testes,
    .image-caption-eficiencia-energia,
    .image-caption-profissional {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .image-caption-seguranca i,
    .image-caption-componentes i,
    .image-caption-canteiro i,
    .image-caption-testes i,
    .image-caption-eficiencia-energia i,
    .image-caption-profissional i {
        font-size: 1.1rem;
    }

    .image-frame-seguranca:hover .image-caption-seguranca,
    .image-frame-componentes:hover .image-caption-componentes,
    .image-frame-canteiro:hover .image-caption-canteiro,
    .image-frame-testes:hover .image-caption-testes,
    .image-frame-eficiencia-energia:hover .image-caption-eficiencia-energia,
    .image-frame-profissional:hover .image-caption-profissional {
        bottom: 15px;
    }
}

/* Corre��es Mobile - Legendas sempre vis�veis */
@media (max-width: 768px) {

    /* For�ar legendas vis�veis em mobile */
    .image-caption-projeto,
    .image-caption-seguranca,
    .image-caption-componentes,
    .image-caption-canteiro,
    .image-caption-testes,
    .image-caption-eficiencia-energia,
    .image-caption-profissional {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 15px;
        max-width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .image-frame-projeto-eletrico:hover .image-caption-projeto,
    .image-frame-seguranca:hover .image-caption-seguranca,
    .image-frame-componentes:hover .image-caption-componentes,
    .image-frame-canteiro:hover .image-caption-canteiro,
    .image-frame-testes:hover .image-caption-testes,
    .image-frame-eficiencia-energia:hover .image-caption-eficiencia-energia,
    .image-frame-profissional:hover .image-caption-profissional {
        bottom: auto !important;
    }

    /* Ajustar tamanho do texto para legibilidade */
    .image-caption-projeto span,
    .image-caption-seguranca span,
    .image-caption-componentes span,
    .image-caption-canteiro span,
    .image-caption-testes span,
    .image-caption-eficiencia-energia span,
    .image-caption-profissional span {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Ajustar padding das badges em mobile */
    .overlay-badge-projeto,
    .overlay-badge-seguranca,
    .overlay-badge-componentes,
    .overlay-badge-canteiro,
    .overlay-badge-testes,
    .overlay-badge-eficiencia-energia,
    .overlay-badge-profissional {
        padding: 12px 20px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .overlay-badge-projeto span,
    .overlay-badge-seguranca span,
    .overlay-badge-componentes span,
    .overlay-badge-canteiro span,
    .overlay-badge-testes span,
    .overlay-badge-eficiencia-energia span,
    .overlay-badge-profissional span {
        font-size: 0.9rem;
    }
}

/* ==================== P�GINA HIDR�ULICA ==================== */

/* Introdu��o Hidr�ulica */
.intro-hidraulica-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.intro-hidraulica-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-hidraulica-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.intro-hidraulica-benefits {
    background: #e3f2fd;
    padding: 30px;
    border-radius: var(--radius);
    border-left: 5px solid #2196f3;
    display: flex;
    gap: 25px;
    align-items: start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.benefits-list li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: #2196f3;
    font-size: 0.9rem;
}

/* Frame Intro Hidr�ulica */
.image-frame-intro-hidraulica {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
}

.image-frame-intro-hidraulica:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.4);
    border-color: #2196f3;
}

.image-frame-intro-hidraulica img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-intro-hidraulica:hover img {
    transform: scale(1.08);
}

.image-overlay-intro-hidraulica {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(25, 118, 210, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-intro-hidraulica:hover .image-overlay-intro-hidraulica {
    opacity: 1;
}

.overlay-badge-intro-hidraulica {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-intro-hidraulica:hover .overlay-badge-intro-hidraulica {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-intro-hidraulica i {
    color: #2196f3;
    font-size: 2rem;
}

.overlay-badge-intro-hidraulica span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-intro-hidraulica {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-frame-intro-hidraulica:hover .image-caption-intro-hidraulica {
    bottom: 20px;
}

.image-caption-intro-hidraulica i {
    color: #2196f3;
    font-size: 1.3rem;
}

.image-caption-intro-hidraulica span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Import�ncia Layout */
.importancia-hidraulica-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.importancia-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.importancia-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-left: 5px solid #2196f3;
}

.importancia-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.importancia-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.importancia-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.importancia-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

.alert-box-hidraulica {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 25px 30px;
    border-radius: var(--radius);
    border-left: 5px solid #ff9800;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: pulse 2s infinite;
}

.alert-box-hidraulica i {
    color: #ff9800;
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-box-hidraulica strong {
    color: #e65100;
}

/* Frame Import�ncia */
.image-frame-importancia {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    min-height: 450px;
}

.image-frame-importancia:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(244, 67, 54, 0.4);
    border-color: #f44336;
}

.image-frame-importancia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-importancia:hover img {
    transform: scale(1.08);
}

.image-overlay-importancia {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(211, 47, 47, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-importancia:hover .image-overlay-importancia {
    opacity: 1;
}

.overlay-badge-importancia {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-importancia:hover .overlay-badge-importancia {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-importancia i {
    color: #f44336;
    font-size: 2rem;
}

.overlay-badge-importancia span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-importancia {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-caption-importancia i {
    color: #f44336;
    font-size: 1.3rem;
}

.image-caption-importancia span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Componentes Hidr�ulica */
.componentes-hidraulica-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.componente-hidraulica-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-fast);
}

.componente-hidraulica-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.componente-hidraulica-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.componente-hidraulica-card:hover .componente-hidraulica-icon {
    transform: rotateY(360deg);
}

.componente-hidraulica-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.componente-hidraulica-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Frame Componentes Hidr�ulica */
.image-frame-componentes-hidraulica {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 50px;
    min-height: 450px;
}

.image-frame-componentes-hidraulica:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.4);
    border-color: #00bcd4;
}

.image-frame-componentes-hidraulica img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-componentes-hidraulica:hover img {
    transform: scale(1.08);
}

.image-overlay-componentes-hidraulica {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 151, 167, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-componentes-hidraulica:hover .image-overlay-componentes-hidraulica {
    opacity: 1;
}

.overlay-badge-componentes-hidraulica {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-componentes-hidraulica:hover .overlay-badge-componentes-hidraulica {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-componentes-hidraulica i {
    color: #00bcd4;
    font-size: 2rem;
}

.overlay-badge-componentes-hidraulica span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-componentes-hidraulica {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-caption-componentes-hidraulica i {
    color: #00bcd4;
    font-size: 1.3rem;
}

.image-caption-componentes-hidraulica span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Sistemas Hidr�ulica Grid */
.sistemas-hidraulica-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.sistema-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 30px;
    align-items: start;
    transition: var(--transition-fast);
}

.sistema-card:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-md);
}

.sistema-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.sistema-content {
    flex: 1;
}

.sistema-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.sistema-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.sistema-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

/* Frame Sistemas */
.image-frame-sistemas {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 50px;
    min-height: 450px;
}

.image-frame-sistemas:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.4);
    border-color: #4caf50;
}

.image-frame-sistemas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-sistemas:hover img {
    transform: scale(1.08);
}

.image-overlay-sistemas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-sistemas:hover .image-overlay-sistemas {
    opacity: 1;
}

.overlay-badge-sistemas {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-sistemas:hover .overlay-badge-sistemas {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-sistemas i {
    color: #4caf50;
    font-size: 2rem;
}

.overlay-badge-sistemas span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-sistemas {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-caption-sistemas i {
    color: #4caf50;
    font-size: 1.3rem;
}

.image-caption-sistemas span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Normas Hidr�ulica */
.normas-hidraulica-highlight {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    border-left: 8px solid #2196f3;
}

.norma-badge-hidraulica {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.norma-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.norma-text p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.normas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.norma-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-fast);
}

.norma-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.norma-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.norma-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.norma-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Frame Normas */
.image-frame-normas {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 40px;
    min-height: 450px;
}

.image-frame-normas:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.4);
    border-color: #2196f3;
}

.image-frame-normas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-normas:hover img {
    transform: scale(1.08);
}

.image-overlay-normas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(25, 118, 210, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-normas:hover .image-overlay-normas {
    opacity: 1;
}

.overlay-badge-normas {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-normas:hover .overlay-badge-normas {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-normas i {
    color: #2196f3;
    font-size: 2rem;
}

.overlay-badge-normas span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-normas {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-caption-normas i {
    color: #2196f3;
    font-size: 1.3rem;
}

.image-caption-normas span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Desafios e Manuten��o */
.desafios-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.subsection-title-hidraulica {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subsection-title-hidraulica i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.desafios-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.desafio-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: start;
    transition: var(--transition-fast);
}

.desafio-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.desafio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.desafio-text h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

.manutencao-box {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 35px;
    border-radius: var(--radius);
    border-left: 5px solid #4caf50;
}

.manutencao-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.manutencao-box h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.manutencao-box>p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.manutencao-checklist {
    list-style: none;
    padding: 0;
}

.manutencao-checklist li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.manutencao-checklist i {
    color: #4caf50;
    font-size: 1.1rem;
}

/* Frame Desafios */
.image-frame-desafios {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    min-height: 450px;
}

.image-frame-desafios:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 152, 0, 0.4);
    border-color: #ff9800;
}

.image-frame-desafios img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-desafios:hover img {
    transform: scale(1.08);
}

.image-overlay-desafios {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(245, 124, 0, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-desafios:hover .image-overlay-desafios {
    opacity: 1;
}

.overlay-badge-desafios {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-desafios:hover .overlay-badge-desafios {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-desafios i {
    color: #ff9800;
    font-size: 2rem;
}

.overlay-badge-desafios span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-desafios {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-caption-desafios i {
    color: #ff9800;
    font-size: 1.3rem;
}

.image-caption-desafios span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Inova��es Grid */
.inovacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.inovacao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-fast);
    border-top: 5px solid #8bc34a;
}

.inovacao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.inovacao-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #8bc34a, #689f38);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    transition: var(--transition-fast);
}

.inovacao-card:hover .inovacao-icon {
    transform: scale(1.1);
}

.inovacao-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.inovacao-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.inovacao-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #f5f5f5;
}

.stat-number-hidraulica {
    font-size: 3rem;
    font-weight: 800;
    color: #8bc34a;
    font-family: 'Montserrat', sans-serif;
}

.stat-label-hidraulica {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Conclus�o Hidr�ulica */
.conclusao-hidraulica-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin-top: 60px;
}

.conclusao-icon-large-hidraulica {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

.conclusao-hidraulica-box h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.conclusao-hidraulica-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Frame Profissional Hidr�ulica */
.image-frame-profissional-hidraulica {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    background: var(--white);
    transition: var(--transition-smooth);
    margin-top: 20px;
    min-height: 450px;
}

.image-frame-profissional-hidraulica:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
    border-color: #ffc107;
}

.image-frame-profissional-hidraulica img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame-profissional-hidraulica:hover img {
    transform: scale(1.08);
}

.image-overlay-profissional-hidraulica {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame-profissional-hidraulica:hover .image-overlay-profissional-hidraulica {
    opacity: 1;
}

.overlay-badge-profissional-hidraulica {
    background: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.7);
    opacity: 0;
    transition: var(--transition-smooth);
}

.image-frame-profissional-hidraulica:hover .overlay-badge-profissional-hidraulica {
    transform: scale(1);
    opacity: 1;
}

.overlay-badge-profissional-hidraulica i {
    color: #ffc107;
    font-size: 2rem;
}

.overlay-badge-profissional-hidraulica span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.image-caption-profissional-hidraulica {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    max-width: 90%;
}

.image-caption-profissional-hidraulica i {
    color: #ffc107;
    font-size: 1.3rem;
}

.image-caption-profissional-hidraulica span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsivo - P�gina Hidr�ulica */
@media (max-width: 768px) {

    .intro-hidraulica-layout,
    .importancia-hidraulica-layout,
    .desafios-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-hidraulica-icon,
    .manutencao-icon-large,
    .conclusao-icon-large-hidraulica {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .intro-hidraulica-benefits {
        flex-direction: column;
        padding: 25px;
    }

    .componentes-hidraulica-grid,
    .normas-grid,
    .inovacoes-grid {
        grid-template-columns: 1fr;
    }

    .sistemas-hidraulica-grid {
        gap: 25px;
    }

    .sistema-card {
        flex-direction: column;
        padding: 25px;
    }

    .sistema-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .normas-hidraulica-highlight {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .norma-badge-hidraulica {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .norma-text h3 {
        font-size: 1.5rem;
    }

    .desafios-list {
        gap: 20px;
    }

    .desafio-item {
        flex-direction: column;
        text-align: center;
    }

    .desafio-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .manutencao-box {
        padding: 25px;
    }

    .inovacoes-grid {
        gap: 25px;
    }

    .inovacao-card {
        padding: 30px 20px;
    }

    .stat-number-hidraulica {
        font-size: 2.5rem;
    }

    .conclusao-hidraulica-box {
        padding: 35px 25px;
    }

    .subsection-title-hidraulica {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
    }

    /* Frames Mobile */
    .image-frame-intro-hidraulica,
    .image-frame-importancia,
    .image-frame-componentes-hidraulica,
    .image-frame-sistemas,
    .image-frame-normas,
    .image-frame-desafios,
    .image-frame-profissional-hidraulica {
        border-radius: 15px;
        border-width: 3px;
    }

    .image-caption-intro-hidraulica,
    .image-caption-importancia,
    .image-caption-componentes-hidraulica,
    .image-caption-sistemas,
    .image-caption-normas,
    .image-caption-desafios,
    .image-caption-profissional-hidraulica {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
    }

    .overlay-badge-intro-hidraulica,
    .overlay-badge-importancia,
    .overlay-badge-componentes-hidraulica,
    .overlay-badge-sistemas,
    .overlay-badge-normas,
    .overlay-badge-desafios,
    .overlay-badge-profissional-hidraulica {
        padding: 12px 20px;
    }

    .overlay-badge-intro-hidraulica i,
    .overlay-badge-importancia i,
    .overlay-badge-componentes-hidraulica i,
    .overlay-badge-sistemas i,
    .overlay-badge-normas i,
    .overlay-badge-desafios i,
    .overlay-badge-profissional-hidraulica i {
        font-size: 1.5rem;
    }

    .overlay-badge-intro-hidraulica span,
    .overlay-badge-importancia span,
    .overlay-badge-componentes-hidraulica span,
    .overlay-badge-sistemas span,
    .overlay-badge-normas span,
    .overlay-badge-desafios span,
    .overlay-badge-profissional-hidraulica span {
        font-size: 0.9rem;
    }
}

/* ==================== PÁGINA PISOS ==================== */

/* Introdução Pisos - Layout */
.intro-pisos-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.intro-pisos-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Badge da Introdução */
.intro-pisos-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.intro-pisos-badge i {
    font-size: 1.1rem;
}

/* Título da Introdução */
.section-title-pisos {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    position: relative;
    padding-bottom: 20px;
}

.section-title-pisos::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* Descrição da Introdução */
.intro-pisos-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.intro-pisos-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.intro-pisos-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Grid de Fatores */
.fatores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.fator-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: start;
    gap: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.fator-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fator-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.fator-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Footer da Introdução */
.intro-pisos-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    margin-top: 10px;
}

.intro-pisos-footer i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.intro-pisos-footer p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Visual - Coluna Direita */
.intro-pisos-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
    position: relative;
}

.visual-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: scale(1.05);
}

.visual-card-1 {
    grid-column: 1 / 3;
}

.visual-card-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.visual-card-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

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

.visual-card:hover img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.visual-card:hover .visual-overlay {
    transform: translateY(0);
}

.visual-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

/* Topic Block - Estrutura principal de cada tipo de piso */
.topic-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* Topic Header */
.topic-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.3);
    flex-shrink: 0;
}

.topic-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Topic Content Flex */
.topic-content-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.topic-content-flex.reverse {
    grid-template-columns: 1fr 1fr;
}

.topic-content-flex.reverse .topic-text {
    order: 2;
}

.topic-content-flex.reverse .topic-images {
    order: 1;
}

/* Topic Text */
.topic-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topic-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.topic-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Highlight Box - Caixa de destaque para critérios técnicos */
.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin-top: 15px;
}

.highlight-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box h4 i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.highlight-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Topic Images */
.topic-images {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.topic-images img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.topic-images img:hover {
    transform: scale(1.05);
}

/* Checklist - Lista de itens com ícones */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.checklist li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.checklist li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Estilos gerais da página de pisos */
.conclusao-box h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.conclusao-box strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsividade para Pisos */
@media (max-width: 992px) {

    /* Introdução Pisos */
    .intro-pisos-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title-pisos {
        font-size: 2rem;
    }

    .fatores-grid {
        grid-template-columns: 1fr;
    }

    .intro-pisos-visual {
        grid-template-rows: repeat(2, 180px);
    }

    /* Topic Blocks */
    .topic-block {
        padding: 35px;
    }

    .topic-header {
        gap: 15px;
    }

    .topic-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .topic-title {
        font-size: 1.5rem;
    }

    .topic-content-flex,
    .topic-content-flex.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .topic-content-flex.reverse .topic-text {
        order: 1;
    }

    .topic-content-flex.reverse .topic-images {
        order: 2;
    }

    .topic-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    /* Introdução Pisos */
    .intro-pisos-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .section-title-pisos {
        font-size: 1.7rem;
        padding-bottom: 15px;
    }

    .intro-pisos-description {
        padding: 20px;
    }

    .intro-pisos-description p {
        font-size: 1rem;
    }

    .fatores-grid {
        gap: 15px;
    }

    .fator-item {
        padding: 15px;
    }

    .fator-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .fator-text h4 {
        font-size: 1rem;
    }

    .fator-text p {
        font-size: 0.85rem;
    }

    .intro-pisos-footer {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .intro-pisos-footer p {
        font-size: 0.9rem;
    }

    .intro-pisos-visual {
        grid-template-rows: repeat(2, 150px);
        gap: 10px;
    }

    /* Topic Blocks */
    .topic-block {
        padding: 25px;
        margin-bottom: 30px;
    }

    .topic-header {
        flex-direction: row;
        gap: 12px;
        padding-bottom: 15px;
    }

    .topic-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .topic-title {
        font-size: 1.3rem;
    }

    .topic-content-flex,
    .topic-content-flex.reverse {
        gap: 25px;
    }

    .highlight-box {
        padding: 20px;
    }

    .highlight-box h4 {
        font-size: 1.1rem;
    }

    .checklist li {
        font-size: 1rem;
        gap: 10px;
    }

    .conclusao-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    /* Introdução Pisos */
    .section-title-pisos {
        font-size: 1.4rem;
    }

    .intro-pisos-description p {
        font-size: 0.95rem;
    }

    .fator-item {
        padding: 12px;
        gap: 12px;
    }

    .fator-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .intro-pisos-footer {
        padding: 12px 15px;
    }

    .intro-pisos-visual {
        grid-template-rows: repeat(2, 120px);
    }

    /* Topic Blocks */
    .topic-block {
        padding: 20px;
    }

    .topic-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

    .topic-text p {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 15px;
    }

    .highlight-box h4 {
        font-size: 1rem;
    }

    .highlight-box p {
        font-size: 0.9rem;
    }

    .checklist li {
        font-size: 0.95rem;
    }
}

/* ==================== PÁGINA REVESTIMENTOS ==================== */

/* Introdução Revestimentos - Layout */
.intro-revestimentos-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.intro-revestimentos-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Badge da Introdução Revestimentos */
.intro-revestimentos-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.intro-revestimentos-badge i {
    font-size: 1.1rem;
}

/* Título da Introdução Revestimentos */
.section-title-revestimentos {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    position: relative;
    padding-bottom: 20px;
}

.section-title-revestimentos::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* Descrição da Introdução Revestimentos */
.intro-revestimentos-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.intro-revestimentos-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.intro-revestimentos-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Caixa de Definição */
.definicao-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: start;
    border: 2px solid rgba(26, 35, 126, 0.1);
}

.definicao-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.definicao-text h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.definicao-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.definicao-text strong {
    color: var(--secondary-color);
}

/* Visual - Coluna Direita Revestimentos */
.intro-revestimentos-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
    position: relative;
}

.visual-card-rev {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.visual-card-rev:hover {
    transform: scale(1.05);
}

.visual-card-rev-1 {
    grid-column: 1 / 3;
}

.visual-card-rev-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.visual-card-rev-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

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

.visual-card-rev:hover img {
    transform: scale(1.1);
}

.visual-overlay-rev {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.visual-card-rev:hover .visual-overlay-rev {
    transform: translateY(0);
}

.visual-overlay-rev span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

/* Lista de Características */
.caracteristicas-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.caract-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.caract-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.caract-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.caract-item i.fa-exclamation-triangle {
    color: #ffc107;
}

.caract-item span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Grid de Aplicações */
.aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.aplicacao-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aplicacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.aplicacao-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.aplicacao-card:hover .aplicacao-image img {
    transform: scale(1.1);
}

.aplicacao-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 109, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.aplicacao-content {
    padding: 25px;
}

.aplicacao-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.aplicacao-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Layout Diferença */
.diferenca-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.diferenca-header {
    text-align: center;
    margin-bottom: 50px;
}

.diferenca-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 15px;
}

.diferenca-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.diferenca-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.diferenca-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--white);
}

.piso-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.revestimento-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.diferenca-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.diferenca-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.diferenca-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
}

/* Grid de Vantagens */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vantagem-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vantagem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 20px;
}

.vantagem-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.vantagem-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Layout de Tendências */
.tendencias-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tendencia-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tendencia-item:hover {
    transform: translateY(-10px);
}

.tendencia-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tendencia-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.tendencia-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.tendencia-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsividade Revestimentos */
@media (max-width: 992px) {
    .intro-revestimentos-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title-revestimentos {
        font-size: 2rem;
    }

    .intro-revestimentos-visual {
        grid-template-rows: repeat(2, 180px);
    }

    .diferenca-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .diferenca-divider {
        transform: rotate(90deg);
    }

    .tendencias-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-revestimentos-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .section-title-revestimentos {
        font-size: 1.7rem;
        padding-bottom: 15px;
    }

    .intro-revestimentos-description {
        padding: 20px;
    }

    .intro-revestimentos-description p {
        font-size: 1rem;
    }

    .definicao-box {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }

    .definicao-icon {
        margin: 0 auto 15px;
    }

    .intro-revestimentos-visual {
        grid-template-rows: repeat(2, 150px);
        gap: 10px;
    }

    .aplicacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferenca-card {
        padding: 30px 20px;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
    }

    .tendencias-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tendencia-item {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .section-title-revestimentos {
        font-size: 1.4rem;
    }

    .intro-revestimentos-description p {
        font-size: 0.95rem;
    }

    .definicao-text h3 {
        font-size: 1.2rem;
    }

    .definicao-text p {
        font-size: 0.95rem;
    }

    .intro-revestimentos-visual {
        grid-template-rows: repeat(2, 120px);
    }

    .aplicacao-image {
        height: 180px;
    }

    .aplicacao-content {
        padding: 20px;
    }

    .aplicacao-content h3 {
        font-size: 1.1rem;
    }

    .diferenca-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .tendencia-item {
        padding: 25px 20px;
    }

    .tendencia-item h3 {
        font-size: 1.3rem;
    }
}

/* ==================== PÁGINA PINTURA LISA ==================== */

/* Introdução Pintura - Layout */
.intro-pintura-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.intro-pintura-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Badge da Introdução Pintura */
.intro-pintura-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.intro-pintura-badge i {
    font-size: 1.1rem;
}

/* Título da Introdução Pintura */
.section-title-pintura {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    position: relative;
    padding-bottom: 20px;
}

.section-title-pintura::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* Descrição da Introdução Pintura */
.intro-pintura-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.intro-pintura-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.intro-pintura-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Grid de Características Pintura */
.caracteristicas-pintura-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.caract-pintura-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.caract-pintura-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.caract-pintura-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.caract-pintura-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.caract-pintura-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Visual Pintura */
.intro-pintura-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.visual-card-pintura {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.visual-card-pintura:hover {
    transform: scale(1.05);
}

.visual-card-pintura-1 {
    grid-column: 1 / 3;
}

.visual-card-pintura-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.visual-card-pintura-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

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

.visual-card-pintura:hover img {
    transform: scale(1.1);
}

.visual-overlay-pintura {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.visual-card-pintura:hover .visual-overlay-pintura {
    transform: translateY(0);
}

.visual-overlay-pintura span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

/* Grid de Benefícios Pintura */
.beneficios-pintura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.beneficio-pintura-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.beneficio-pintura-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.beneficio-pintura-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.beneficio-pintura-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.beneficio-pintura-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Timeline de Procedimento */
.procedimento-timeline {
    max-width: 1100px;
    margin: 50px auto 0;
    position: relative;
}

.etapa-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.etapa-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), rgba(255, 109, 0, 0.3));
}

.etapa-numero {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
    z-index: 1;
}

.etapa-content {
    flex: 1;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.etapa-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.etapa-content.reverse .etapa-image {
    order: 2;
}

.etapa-content.reverse .etapa-text {
    order: 1;
}

.etapa-image {
    position: relative;
    overflow: hidden;
}

.etapa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: transform 0.3s ease;
}

.etapa-item:hover .etapa-image img {
    transform: scale(1.1);
}

.etapa-text {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.etapa-text h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.etapa-text h3 i {
    color: var(--secondary-color);
}

.etapa-text p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.etapa-destaque {
    background: #fff3cd;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #ffc107;
}

.etapa-destaque i {
    color: #ffc107;
    font-size: 1.2rem;
}

.etapa-destaque span {
    color: #856404;
    font-weight: 600;
    font-size: 0.95rem;
}

.etapa-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #e3f2fd;
    border-radius: 8px;
}

.check-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.check-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.ferramentas-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.ferramentas-box h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ferramentas-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ferramentas-box ul li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.ferramentas-box ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.tempo-info {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.tempo-card {
    flex: 1;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.tempo-card i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.tempo-card .numero {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 5px 0;
}

.tempo-card .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Grid de Cuidados */
.cuidados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cuidado-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cuidado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cuidado-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.cuidado-icon.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.cuidado-icon.info {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.cuidado-icon.success {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.cuidado-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.cuidado-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Layout Aplicações Pintura */
.aplicacoes-pintura-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aplicacoes-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 15px 0 30px;
    line-height: 1.7;
}

.aplicacoes-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aplicacao-pintura-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.aplicacao-pintura-item:hover {
    background: var(--white);
    border-left-color: var(--secondary-color);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.aplicacao-pintura-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.aplicacao-pintura-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.aplicacao-pintura-text p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.aplicacoes-pintura-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.aplicacoes-pintura-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge-pintura {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 109, 0, 0.95);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-badge-pintura i {
    font-size: 1.2rem;
}

/* Responsividade Pintura Lisa */
@media (max-width: 992px) {
    .intro-pintura-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title-pintura {
        font-size: 2rem;
    }

    .intro-pintura-visual {
        grid-template-rows: repeat(2, 180px);
    }

    .etapa-content,
    .etapa-content.reverse {
        grid-template-columns: 1fr;
    }

    .etapa-content.reverse .etapa-image {
        order: 1;
    }

    .etapa-content.reverse .etapa-text {
        order: 2;
    }

    .etapa-image img {
        min-height: 250px;
    }

    .aplicacoes-pintura-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .intro-pintura-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .section-title-pintura {
        font-size: 1.7rem;
        padding-bottom: 15px;
    }

    .intro-pintura-description {
        padding: 20px;
    }

    .intro-pintura-description p {
        font-size: 1rem;
    }

    .intro-pintura-visual {
        grid-template-rows: repeat(2, 150px);
        gap: 10px;
    }

    .etapa-item {
        flex-direction: column;
        gap: 20px;
    }

    .etapa-item::before {
        display: none;
    }

    .etapa-text {
        padding: 25px;
    }

    .tempo-info {
        flex-direction: column;
        gap: 15px;
    }

    .aplicacoes-pintura-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .section-title-pintura {
        font-size: 1.4rem;
    }

    .intro-pintura-description p {
        font-size: 0.95rem;
    }

    .caract-pintura-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .intro-pintura-visual {
        grid-template-rows: repeat(2, 120px);
    }

    .beneficios-pintura-grid,
    .cuidados-grid {
        grid-template-columns: 1fr;
    }

    .etapa-text h3 {
        font-size: 1.2rem;
    }

    .etapa-text p {
        font-size: 0.95rem;
    }

    .image-badge-pintura {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* ==================== PÁGINA GESSO ==================== */

/* Introdução Gesso - Layout */
.intro-gesso-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.intro-gesso-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Título Gesso */
.section-title-gesso {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    position: relative;
    padding-bottom: 20px;
}

.section-title-gesso::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* Descrição Gesso */
.intro-gesso-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.intro-gesso-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.intro-gesso-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Caixa Definição Gesso */
.definicao-gesso-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    align-items: start;
    border: 2px solid rgba(26, 35, 126, 0.1);
}

.definicao-gesso-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.definicao-gesso-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.definicao-gesso-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.definicao-gesso-text strong {
    color: var(--secondary-color);
}

/* Visual Gesso */
.intro-gesso-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.visual-card-gesso {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.visual-card-gesso:hover {
    transform: scale(1.05);
}

.visual-card-gesso-1 {
    grid-column: 1 / 3;
}

.visual-card-gesso-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.visual-card-gesso-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

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

.visual-card-gesso:hover img {
    transform: scale(1.1);
}

.visual-overlay-gesso {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.visual-card-gesso:hover .visual-overlay-gesso {
    transform: translateY(0);
}

.visual-overlay-gesso span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

/* História Gesso Layout */
.historia-gesso-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.historia-gesso-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.historia-gesso-image img {
    width: 100%;
    height: auto;
    display: block;
}

.historia-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 109, 0, 0.95);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.historia-badge i {
    font-size: 1.3rem;
}

.historia-gesso-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.historia-gesso-content strong {
    color: var(--secondary-color);
}

.timeline-historia {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.timeline-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.timeline-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Grid Aplicações Gesso */
.aplicacoes-gesso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.aplicacao-gesso-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.aplicacao-gesso-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.aplicacao-gesso-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.aplicacao-gesso-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.aplicacao-gesso-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Layout Vantagens e Desvantagens */
.vantagens-desvantagens-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.vantagens-box,
.desvantagens-box {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vd-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.vantagens-header {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.desvantagens-header {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.vd-header i {
    font-size: 2rem;
}

.vd-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.vd-lista {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vd-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.vd-item i {
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.vantagens-box .vd-item i {
    color: #4caf50;
}

.desvantagens-box .vd-item i {
    color: #ff9800;
}

.vd-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.vd-text p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Grid Cuidados Gesso */
.cuidados-gesso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cuidado-gesso-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cuidado-gesso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cuidado-gesso-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.cuidado-gesso-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.cuidado-gesso-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Layout Sustentabilidade */
.sustentabilidade-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sustentabilidade-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sustentabilidade-content strong {
    color: var(--secondary-color);
}

.sustentabilidade-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.stat-sustent-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-sustent-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.stat-sustent-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.stat-sustent-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.stat-sustent-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.sustentabilidade-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sustentabilidade-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sustent-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(76, 175, 80, 0.95);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sustent-badge i {
    font-size: 1.3rem;
}

/* Grid Inovações Gesso */
.inovacoes-gesso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.inovacao-gesso-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inovacao-gesso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.inovacao-gesso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.inovacao-gesso-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #ff8c42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 20px;
}

.inovacao-gesso-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.inovacao-gesso-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade Gesso */
@media (max-width: 992px) {

    .intro-gesso-layout,
    .historia-gesso-layout,
    .sustentabilidade-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title-gesso {
        font-size: 2rem;
    }

    .intro-gesso-visual {
        grid-template-rows: repeat(2, 180px);
    }

    .vantagens-desvantagens-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .historia-gesso-image {
        order: -1;
    }

    .sustentabilidade-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-title-gesso {
        font-size: 1.7rem;
        padding-bottom: 15px;
    }

    .intro-gesso-description {
        padding: 20px;
    }

    .intro-gesso-description p {
        font-size: 1rem;
    }

    .definicao-gesso-box {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }

    .definicao-gesso-icon {
        margin: 0 auto 15px;
    }

    .intro-gesso-visual {
        grid-template-rows: repeat(2, 150px);
        gap: 10px;
    }

    .historia-badge,
    .sustent-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .aplicacoes-gesso-grid,
    .inovacoes-gesso-grid {
        grid-template-columns: 1fr;
    }

    .cuidados-gesso-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title-gesso {
        font-size: 1.4rem;
    }

    .intro-gesso-description p {
        font-size: 0.95rem;
    }

    .definicao-gesso-text h3 {
        font-size: 1.2rem;
    }

    .definicao-gesso-text p {
        font-size: 0.95rem;
    }

    .intro-gesso-visual {
        grid-template-rows: repeat(2, 120px);
    }

    .historia-badge {
        top: 15px;
        left: 15px;
        padding: 10px 15px;
    }

    .sustent-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
}

/* ======================================
   PAREDES DECORATIVAS - PLANEJAMENTO
====================================== */
.planejamento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.planejamento-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.planejamento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.planejamento-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.planejamento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.15);
    border-color: rgba(255, 109, 0, 0.2);
}

.planejamento-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.3);
    position: relative;
    transition: var(--transition-fast);
}

.planejamento-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: var(--transition-fast);
}

.planejamento-item:hover .planejamento-number {
    transform: scale(1.1) rotate(10deg);
}

.planejamento-item:hover .planejamento-number::after {
    width: 120%;
    height: 120%;
    opacity: 1;
}

.planejamento-content {
    flex: 1;
}

.planejamento-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.planejamento-content h3 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.planejamento-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ======================================
   PAREDES DECORATIVAS - APLICAÇÕES COMERCIAIS
====================================== */
.aplicacoes-comerciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.aplicacao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.aplicacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.aplicacao-card:hover::before {
    transform: scaleX(1);
}

.aplicacao-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
}

.aplicacao-card:hover::after {
    width: 400px;
    height: 400px;
}

.aplicacao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
    border-color: rgba(255, 109, 0, 0.3);
}

.aplicacao-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c3e9e 100%);
    color: var(--white);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.25);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.aplicacao-card:hover .aplicacao-icon {
    transform: scale(1.1) rotateY(10deg);
    background: var(--primary-gradient);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.4);
}

.aplicacao-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.aplicacao-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ======================================
   PAREDES DECORATIVAS - MANUTENÇÃO
====================================== */
.manutencao-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.manutencao-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.manutencao-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.03) 0%, transparent 70%);
    transition: transform 0.6s ease;
    transform: scale(0);
}

.manutencao-card:hover::before {
    transform: scale(1);
}

.manutencao-card:hover {
    transform: translateX(8px);
    box-shadow: -5px 15px 40px rgba(255, 109, 0, 0.2);
    border-left-width: 8px;
}

.manutencao-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.3);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.manutencao-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: var(--transition-fast);
}

.manutencao-card:hover .manutencao-icon-wrapper {
    transform: scale(1.15) rotate(15deg);
}

.manutencao-card:hover .manutencao-icon-wrapper::after {
    width: 150%;
    height: 150%;
    opacity: 1;
}

.manutencao-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.manutencao-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.manutencao-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.manutencao-tags .tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08) 0%, rgba(255, 109, 0, 0.08) 100%);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(255, 109, 0, 0.2);
    transition: var(--transition-fast);
}

.manutencao-tags .tag:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

/* ======================================
   RESPONSIVE - PAREDES DECORATIVAS
====================================== */
@media (max-width: 992px) {
    .planejamento-grid {
        gap: 25px;
    }

    .planejamento-item {
        padding: 30px;
    }

    .aplicacoes-comerciais {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .manutencao-layout {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .planejamento-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .planejamento-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .planejamento-content h3 {
        justify-content: center;
        font-size: 1.2rem;
    }

    .planejamento-content p {
        font-size: 1rem;
    }

    .aplicacoes-comerciais {
        grid-template-columns: 1fr;
    }

    .aplicacao-card {
        padding: 30px 25px;
    }

    .aplicacao-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .manutencao-layout {
        grid-template-columns: 1fr;
    }

    .manutencao-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .planejamento-item {
        padding: 20px;
        gap: 20px;
    }

    .planejamento-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .planejamento-content h3 {
        font-size: 1.1rem;
    }

    .planejamento-content p {
        font-size: 0.95rem;
    }

    .aplicacao-card {
        padding: 25px 20px;
    }

    .aplicacao-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .aplicacao-card h3 {
        font-size: 1.2rem;
    }

    .aplicacao-card p {
        font-size: 0.95rem;
    }

    .manutencao-card {
        padding: 25px;
    }

    .manutencao-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .manutencao-card h3 {
        font-size: 1.3rem;
    }

    .manutencao-card p {
        font-size: 0.95rem;
    }

    .manutencao-tags .tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

/* ======================================
   MANUTENÇÃO GERAL - NORMA NBR
====================================== */
.norma-nbr-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.norma-nbr-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.norma-icon-large {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.norma-nbr-box:hover .norma-icon-large {
    transform: scale(1.1) rotateY(10deg);
}

.norma-nbr-box h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.norma-nbr-box>p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .norma-nbr-box {
        padding: 35px 25px;
    }

    .norma-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .norma-nbr-box h3 {
        font-size: 1.5rem;
    }

    .norma-nbr-box>p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .norma-nbr-box {
        padding: 30px 20px;
    }

    .norma-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .norma-nbr-box h3 {
        font-size: 1.3rem;
    }
}

/* ======================================
   MANUTENÇÃO GERAL - SUBTITLE DESTAQUE
====================================== */
.subtitle-destaque {
    position: relative;
    padding: 30px 20px;
    margin: 20px auto 50px;
    max-width: 800px;
}

.subtitle-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
    position: relative;
    transition: var(--transition-fast);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 109, 0, 0.5);
        transform: scale(1.05);
    }
}

.subtitle-destaque:hover .subtitle-icon {
    transform: scale(1.15) rotate(10deg);
}

.subtitle-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0 auto 20px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.subtitle-text::before,
.subtitle-text::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    font-weight: bold;
    position: absolute;
}

.subtitle-text::before {
    content: '"';
    left: -10px;
    top: -10px;
}

.subtitle-text::after {
    content: '"';
    right: -10px;
    bottom: -20px;
}

.subtitle-line {
    width: 120px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.subtitle-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.subtitle-destaque::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.03) 0%, transparent 70%);
    border-radius: 20px;
    z-index: 0;
}

/* Responsive para Subtitle Destaque */
@media (max-width: 768px) {
    .subtitle-destaque {
        padding: 25px 15px;
        margin: 15px auto 40px;
    }

    .subtitle-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .subtitle-text {
        font-size: 1.15rem;
        padding: 0 15px;
    }

    .subtitle-text::before,
    .subtitle-text::after {
        font-size: 2rem;
    }

    .subtitle-line {
        width: 100px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .subtitle-destaque {
        padding: 20px 10px;
        margin: 10px auto 30px;
    }

    .subtitle-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .subtitle-text {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .subtitle-text::before {
        left: -5px;
        top: -8px;
    }

    .subtitle-text::after {
        right: -5px;
        bottom: -15px;
    }



    .subtitle-line {
        width: 80px;
        height: 3px;
    }

    .clients-highlight-box {
        margin: 30px auto 0;
        padding: 25px 20px;
        border-radius: 14px;
    }

    .highlight-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .clients-highlight-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .clients-highlight-text strong {
        font-size: 1.1rem;
    }

    .highlight-word {
        padding: 2px 10px;
    }
}

.nav-menu .nav-item:first-child {
    margin-left: 4px;
}

/* Visibility Control for Responsive Header */
.mobile-view {
    display: none !important;
}

.desktop-view {
    display: flex !important;
}

@media (max-width: 768px) {
    .mobile-view {
        display: flex !important;
    }

    .desktop-view {
        display: none !important;
    }
}
