/* ==================== RESET GLOBAL ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== CORREÇÃO MOBILE ==================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--light-gray);
    width: 100%;
    max-width: 100%;
}

/* ==================== VARIÁVEIS CSS ==================== */
:root {
    --primary-purple: #7345FF;
    --secondary-purple: #5025EC;
    --accent-yellow: #FFE952;
    --accent-pink: #FF91D1;
    --accent-cyan: #31D9CB;
    --accent-orange: #FF6B35;
    --text-dark: #1a237e;
    --text-light: #757575;
    --white: #ffffff;
    --light-gray: #F8F9FA;
    --gold: #FFD700;
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.4s ease;
    gap: 20px;
}

.navbar.transparent {
    background-color: transparent;
}

.navbar.solid {
    background-color: rgba(115, 69, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 5%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
}

.navbar.solid .logo-img {
    height: 50px;
}

.navbar-logo span {
    display: inline-block;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    color: white;
    opacity: 0.85;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-nav a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.navbar-nav a span {
    display: block;
    font-size: 0.55rem;
    opacity: 0.7;
    font-weight: 300;
}

.navbar-cta {
    background: var(--accent-yellow);
    color: var(--primary-purple);
    border: none;
    padding: 10px 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 233, 82, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* ===== REDUZIR TEXTO EM TELAS MÉDIAS ===== */
@media (max-width: 1300px) {
    .navbar-nav {
        gap: 15px;
    }
    .navbar-nav a {
        font-size: 0.75rem;
        padding: 4px 6px;
    }
}

@media (max-width: 1150px) {
    .navbar-nav {
        gap: 10px;
    }
    .navbar-nav a {
        font-size: 0.7rem;
        padding: 3px 5px;
    }
    .navbar-cta {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) {
    .navbar-nav {
        gap: 8px;
    }
    .navbar-nav a {
        font-size: 0.65rem !important;
        padding: 4px 4px !important;
        white-space: normal !important;
        max-width: 65px;
    }
    .navbar-cta {
        padding: 5px 12px;
        font-size: 0.65rem;
    }
}

@media (max-width: 900px) {
    .navbar-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(115, 69, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.5s ease;
        z-index: 999;
    }
    .navbar-nav.active { left: 0; }
    .navbar-nav a { 
        font-size: 1.2rem !important; 
        padding: 10px;
        max-width: 100%;
    }
    .mobile-menu-btn { display: block; }
    .navbar-cta { 
        margin-right: 10px; 
        padding: 8px 16px; 
        font-size: 0.8rem; 
    }
    .logo-img { height: 35px; }
}

@media (max-width: 480px) {
    .navbar-logo span { display: none; }
    .logo-img { height: 30px; }
    .navbar-cta { padding: 6px 12px; font-size: 0.7rem; }
}

/* ===== GARANTIR QUE NÃO HAJA SUBLINHADO ===== */
.navbar-nav a {
    text-decoration: none !important;
}
/* ==================== HERO SECTION ==================== */
/* ==================== HERO SECTION ==================== */
.hero-container {
    display: flex;
    min-height: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
}

/* ===== LEFT SECTION (COM A IMAGEM rightsidelogo.jpg) ===== */
/* ===== LEFT SECTION ===== */
/* ===== LEFT SECTION ===== */

/* FORÇAR A IMAGEM */


.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.left-section .content,
.left-section .social-icons {
    position: relative;
    z-index: 2;
}

@media (min-width: 769px) {
    .left-section {
        padding: 120px 5% 50px;
    }
}

@media (max-width: 768px) {
    .left-section {
        padding: 80px 5% 30px;
        min-height: 500px;
    }
}

.content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

@media (max-width: 768px) {
    .content {
        max-width: 100%;
        text-align: center;
    }
}

.left-section h1 {
    color: white;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.highlight {
    color: #AF9C03;
}

.subtitle { 
    color: #FFE484;
    font-size: clamp(0.9rem, 4vw, 1.3rem);
    margin-bottom: 10px;
    font-weight: 600;
}

.description {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.cta-button {
    background: #AF9C03;
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 3.5vw, 1rem);
}

.cta-button:hover {
    background: #8a7a02;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-button {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
}

/* ===== RIGHT SECTION (CARROSSEL) ===== */
.right-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.carrossel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.carrossel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.carrossel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carrossel-slide.active {
    opacity: 1;
}

.right-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 20;
    opacity: 0;
}

.right-section:hover .carrossel-btn {
    opacity: 1;
}

.carrossel-btn:hover {
    background: #AF9C03;
    color: #27038b;
    transform: translateY(-50%) scale(1.1);
}

.carrossel-prev {
    left: 20px;
}

.carrossel-next {
    right: 20px;
}

.carrossel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.right-section:hover .carrossel-indicators {
    opacity: 1;
}

.carrossel-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrossel-dot.active {
    background: #AF9C03;
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .right-section {
        min-height: 300px;
    }
    .carrossel-container,
    .carrossel-slides,
    .carrossel-slide {
        min-height: 300px;
    }
    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        opacity: 1;
    }
    .carrossel-indicators {
        opacity: 1;
    }
}

/* ===== ÍCONES SOCIAIS ===== */
.meus-icones-sociais {
    position: absolute;
    bottom: 30px;
    left: 5%;
    display: flex;
    gap: 30px;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.meu-icone {
    display: inline-block;
    color: #ffffff;
    font-size: 1.4rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    pointer-events: auto !important;
    z-index: 999999 !important;
    position: relative;
}

.meu-icone:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: #FFE952;
}

@media (max-width: 768px) {
    .meus-icones-sociais {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 30px;
        padding-bottom: 20px;
    }
}
/* ==================== SEÇÃO SERVIÇOS ESPECIALIZADOS ==================== */
.services-showcase-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    padding: 5rem 5%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
}

.services-showcase-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(115, 69, 255, 0.08) 0%, transparent 60%),
                      radial-gradient(circle at 80% 70%, rgba(255, 107, 35, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.services-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-badge {
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    color: #1a1a2e;
    padding: 0.3rem 1.2rem;
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    margin: 2rem 0 2.5rem;
    flex-wrap: nowrap;
}

.service-card {
    flex: 0 0 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 1.2rem 1rem;
    transition: all 0.4s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #AF9C03, #FF6B35);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(175, 156, 3, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper {
    margin-bottom: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(175, 156, 3, 0.2), rgba(255, 107, 35, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #AF9C03, #FF6B35);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 1.8rem;
    color: #AF9C03;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 0.8rem 0 1rem;
    padding: 0;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-features li i {
    color: #AF9C03;
    font-size: 0.6rem;
    width: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #AF9C03;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    color: #FFD700;
}

.services-footer {
    text-align: center;
    margin-top: 1rem;
}

.services-cta-btn {
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    border: none;
    padding: 12px 28px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(175, 156, 3, 0.4);
    background: linear-gradient(135deg, #FFD700, #AF9C03);
}

@media (max-width: 1300px) {
    .service-card { flex: 0 0 190px; }
}
@media (max-width: 1150px) {
    .services-grid { gap: 1rem; }
    .service-card { flex: 0 0 180px; padding: 1rem 0.8rem; }
    .service-title { font-size: 0.9rem; }
}
@media (max-width: 1000px) {
    .services-grid { gap: 0.8rem; }
    .service-card { flex: 0 0 170px; padding: 0.8rem; }
    .service-icon { width: 50px; height: 50px; }
    .service-icon i { font-size: 1.5rem; }
}
@media (max-width: 900px) {
    .services-grid {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }
    .service-card { flex: 0 0 200px; }
    .services-grid::-webkit-scrollbar { height: 5px; }
    .services-grid::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); }
    .services-grid::-webkit-scrollbar-thumb { background: #AF9C03; }
}
@media (max-width: 600px) {
    .services-showcase-section { padding: 3rem 4%; }
    .service-card { flex: 0 0 180px; }
}

/* ==================== SEÇÃO MANUTENÇÃO INDUSTRIAL ==================== */
/* ==================== SEÇÃO MANUTENÇÃO INDUSTRIAL ==================== */
/* ==================== SEÇÃO MANUTENÇÃO INDUSTRIAL ==================== */
/* ==================== SEÇÃO MANUTENÇÃO INDUSTRIAL ==================== */
/* ==================== SEÇÃO MANUTENÇÃO INDUSTRIAL ==================== */

.industrial-maintenance-section {
    position: relative;
    padding: 5rem 5%;
    overflow: hidden;
    background-image: url('monitoramento.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    min-height: 400px;
}

.industrial-maintenance-section .maintenance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 247, 250, 0.88);
    z-index: 1;
}

.maintenance-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.maintenance-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.maintenance-badge {
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    color: #1a1a2e;
    padding: 0.4rem 1.5rem;
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.maintenance-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.maintenance-subtitle {
    color: #4a5a6a;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    overflow-x: auto;
}

.maintenance-card {
    min-width: 250px;
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease backwards;
}

.maintenance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(175, 156, 3, 0.4);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fc, #ffffff);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #AF9C03;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a2e;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #AF9C03;
    margin: 0;
    letter-spacing: -0.5px;
}

.card-photo-container {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background-color: #1a1a2e;
}

.card-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.card-photo.active {
    opacity: 1;
    z-index: 2;
}

.card-photo-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: #3a4a5c;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f2f5;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #AF9C03;
    font-size: 0.85rem;
    width: 20px;
}

.card-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-tag {
    background: #fef5e6;
    border: 1px solid #f0e0c0;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #AF9C03;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
}

.service-main-item {
    margin-bottom: 1.2rem;
    border-left: 3px solid #AF9C03;
    padding-left: 0.8rem;
}

.service-main-item:last-child {
    margin-bottom: 0;
}

.service-main-title {
    font-weight: 700;
    font-size: 0.82rem;
    color: #AF9C03;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-main-title i {
    font-size: 0.85rem;
    color: #FFD700;
}

.service-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 1.5rem;
}

.service-sub-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    font-size: 0.73rem;
    color: #2c3e4e;
    border-bottom: none;
}

.service-sub-list li i {
    color: #AF9C03;
    font-size: 0.6rem;
    width: 14px;
}

.maintenance-footer {
    text-align: center;
    margin-top: 2rem;
}

.maintenance-cta-btn {
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    border: none;
    padding: 14px 36px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(175, 156, 3, 0.25);
}

.maintenance-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(175, 156, 3, 0.35);
    background: linear-gradient(135deg, #FFD700, #AF9C03);
}

.maintenance-note {
    margin-top: 1.5rem;
    color: #5a6a7a;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {
    .maintenance-grid {
        grid-template-columns: repeat(4, minmax(280px, 1fr));
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    .maintenance-grid::-webkit-scrollbar {
        height: 6px;
    }
    .maintenance-grid::-webkit-scrollbar-track {
        background: #e0e0e0;
        border-radius: 10px;
    }
    .maintenance-grid::-webkit-scrollbar-thumb {
        background: #AF9C03;
        border-radius: 10px;
    }
}

@media (max-width: 1024px) {
    .maintenance-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
        overflow-x: auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .industrial-maintenance-section {
        padding: 3rem 5%;
        background-attachment: scroll;
    }
    .maintenance-grid {
        grid-template-columns: repeat(3, minmax(260px, 280px)) !important;
        overflow-x: auto;
    }
    .card-header {
        padding: 1rem;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .card-photo-container {
        height: 180px;
    }
}


/* ==================== STANDARDIZAÇÃO ==================== */
.standardization-section {
    background: rgb(134, 98, 211);
    padding: 3rem 5%;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.standard-card {
    background: #f8f9fa;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #AF9C03 !important;
}

.standard-number {
    font-size: 1.8rem;
    font-weight: 800;
}

.standard-number.sgq {
    background: linear-gradient(135deg, #31D9CB, #00B4D8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.standard-number.sga {
    background: linear-gradient(135deg, #FFE952, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.standard-number.sgsst {
    background: linear-gradient(135deg, #FF91D1, #FF6B9D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.standard-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    display: inline-block;
    border-radius: 20px;
    margin: 0.5rem 0;
}

.standard-tag.sgq {
    background: rgba(49, 217, 203, 0.12);
    color: #00B4D8;
}

.standard-tag.sga {
    background: rgba(255, 233, 82, 0.15);
    color: #d4a000;
}

.standard-tag.sgsst {
    background: rgba(255, 145, 209, 0.12);
    color: #e05a9f;
}

.standard-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .standard-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .standardization-section {
        padding: 2rem 4% !important;
    }
}

/* ==================== SEÇÃO DESENHO ESTRUTURAL ==================== */
.desenhos-section {
    background: white;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.desenhos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.desenhos-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.desenhos-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(175,156,3,0.15);
    border-color: #AF9C03;
}

.desenhos-img-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
}

.desenhos-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.desenhos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.95), rgba(175,156,3,0.9));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

.desenhos-overlay:hover {
    opacity: 1;
}

.desenhos-overlay i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.desenhos-overlay h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.desenhos-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.desenhos-overlay ul li {
    color: white;
    font-size: 0.75rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desenhos-overlay ul li i {
    color: #FFD700;
    font-size: 0.7rem;
    margin: 0;
}

.desenhos-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a2e;
    z-index: 3;
}

.desenhos-card-content {
    padding: 1.5rem;
}

.desenhos-card-content .icon-wrapper {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(175,156,3,0.15), rgba(255,215,0,0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desenhos-card-content .icon-wrapper i {
    font-size: 1.4rem;
    color: #AF9C03;
}

.desenhos-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.desenhos-card-content .tag {
    background: rgba(175,156,3,0.12);
    color: #AF9C03;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.desenhos-btn {
    width: 100%;
    background: #1a1a2e;
    border: none;
    padding: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.desenhos-btn:hover {
    background: #AF9C03;
    gap: 15px;
}

/* Carrossel de projetos */
.projetos-carrossel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0 1rem 0;
    scrollbar-width: thin;
}

.projetos-carrossel::-webkit-scrollbar {
    height: 5px;
}
.projetos-carrossel::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}
.projetos-carrossel::-webkit-scrollbar-thumb {
    background: #AF9C03;
    border-radius: 10px;
}

.projeto-item {
    flex: 0 0 calc(33.333% - 0.7rem);
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.projeto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(175,156,3,0.15);
}

.projeto-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.projeto-item .info {
    padding: 1rem;
}

.projeto-item .info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}

.projeto-item .info p {
    font-size: 0.7rem;
    color: #777;
}

.carrossel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(26,26,46,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.carrossel-nav-btn:hover {
    background: #AF9C03;
}

@media (max-width: 900px) {
    .desenhos-grid {
        grid-template-columns: repeat(3, minmax(300px, 1fr));
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    .desenhos-grid::-webkit-scrollbar {
        height: 6px;
    }
    .desenhos-grid::-webkit-scrollbar-track {
        background: #e0e0e0;
        border-radius: 10px;
    }
    .desenhos-grid::-webkit-scrollbar-thumb {
        background: #AF9C03;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .desenhos-section {
        padding: 3rem 4%;
    }
    .desenhos-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
    }
    .desenhos-img-container {
        height: 200px;
    }
    .projeto-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .desenhos-grid {
        grid-template-columns: repeat(3, minmax(260px, 1fr));
    }
    .projeto-item {
        flex: 0 0 85%;
    }
}

/* ==================== SEÇÃO SOBRE NÓS ==================== */
.sobre-nos-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    padding: 5rem 5%;
    position: relative;
}

.sobre-nos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.sobre-nos-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.8rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sobre-nos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #AF9C03, #FFD700, #AF9C03);
    transition: left 0.5s ease;
}

.sobre-nos-card:hover::before {
    left: 0;
}

.sobre-nos-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(175, 156, 3, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.sobre-nos-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(175, 156, 3, 0.2), rgba(255, 215, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.sobre-nos-card:hover .sobre-nos-card-icon {
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    transform: scale(1.1);
}

.sobre-nos-card-icon i {
    font-size: 2.5rem;
    color: #AF9C03;
    transition: all 0.4s ease;
}

.sobre-nos-card:hover .sobre-nos-card-icon i {
    color: #1a1a2e;
}

.sobre-nos-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sobre-nos-card:hover .sobre-nos-card-title {
    color: #AF9C03;
}

.sobre-nos-card-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sobre-nos-card:hover .sobre-nos-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.sobre-nos-card-footer {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.sobre-nos-tag {
    background: rgba(175, 156, 3, 0.15);
    border: 1px solid rgba(175, 156, 3, 0.3);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #AF9C03;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.sobre-nos-card:hover .sobre-nos-tag {
    background: rgba(175, 156, 3, 0.3);
    border-color: #AF9C03;
    color: #FFD700;
}

.sobre-nos-cta-btn {
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
}

.sobre-nos-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(175, 156, 3, 0.4);
    background: linear-gradient(135deg, #FFD700, #AF9C03);
}

@media (max-width: 992px) {
    .sobre-nos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sobre-nos-section {
        padding: 3rem 5%;
    }
    .sobre-nos-grid {
        grid-template-columns: 1fr;
    }
    .sobre-nos-card {
        padding: 1.5rem;
    }
    .sobre-nos-card-icon {
        width: 65px;
        height: 65px;
    }
    .sobre-nos-card-icon i {
        font-size: 2rem;
    }
    .sobre-nos-card-title {
        font-size: 1.4rem;
    }
}

/* ==================== SEÇÃO FABRICO DE ESTRUTURAS ==================== */

/* ==================== SEÇÃO FABRICO DE ESTRUTURAS ==================== */
/* ==================== SEÇÃO FABRICO DE ESTRUTURAS ==================== */
/* ==================== SEÇÃO FABRICO DE ESTRUTURAS ==================== */
/* ==================== SEÇÃO FABRICO DE ESTRUTURAS ==================== */

/* ==================== SEÇÃO CONSTRUÇÃO CIVIL ==================== */
#construcao-civil .maintenance-grid {
    grid-template-columns: repeat(3, 1fr);
}

#construcao-civil .maintenance-card {
    min-width: auto;
}

#construcao-civil .maintenance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #AF9C03, #FFD700, #AF9C03);
    transition: left 0.5s ease;
    z-index: 10;
}

#construcao-civil .maintenance-card:hover::before {
    left: 0;
}

@media (max-width: 1024px) {
    #construcao-civil .maintenance-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    #construcao-civil .maintenance-card {
        min-width: 280px;
    }
    #construcao-civil .maintenance-grid::-webkit-scrollbar {
        height: 6px;
    }
    #construcao-civil .maintenance-grid::-webkit-scrollbar-track {
        background: #e0e0e0;
        border-radius: 10px;
    }
    #construcao-civil .maintenance-grid::-webkit-scrollbar-thumb {
        background: #AF9C03;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    #construcao-civil .maintenance-grid {
        grid-template-columns: repeat(3, minmax(260px, 280px));
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    #construcao-civil .maintenance-grid {
        grid-template-columns: repeat(3, minmax(240px, 260px));
    }
}

/* ==================== SEÇÃO SERVIÇOS REALIZADOS ==================== */
.bunk-classes-section {
    position: relative;
  
    padding: 5rem 5%;
}

.bunk-classes-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

.bunk-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
}

.bunk-card-wrapper {
    background: rgba(255, 248, 235, 0.96);
    backdrop-filter: blur(3px);
    padding: 2.5rem;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.bunk-badge {
    background: #FFE0A3;
    color: #5025EC;
    padding: 0.3rem 1.2rem;
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.bunk-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.bunk-subtitle {
    color: #FFE484;
    margin-bottom: 2rem;
    font-weight: 500;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.class-card {
    background: rgba(255, 255, 255, 0.96);
    padding: 1.6rem 1rem;
    text-align: center;
    transition: all 0.25s;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
}

.class-card:hover { transform: translateY(-8px); }

.class-photo {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.class-card.featured {
    background: #FFF2DD;
    border: 2px solid #FFE952;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD966, #FFB347);
    color: #2C3E50;
    padding: 4px 16px;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
}

.extra-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 2rem 0 0.5rem;
    color: #2C3E50;
    border-left: 5px solid #FFE952;
    padding-left: 1rem;
    text-align: left;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.96);
    padding: 1.6rem 1rem;
    text-align: center;
    transition: all 0.25s;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.industry-card:hover { transform: translateY(-8px); background: white; }

.industry-photo {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.offer-note {
    background: rgba(0, 0, 0, 0.75);
    display: inline-block;
    padding: 0.6rem 1.8rem;
    color: white;
    margin-top: 1.8rem;
    font-weight: 500;
}

.bunk-cta-btn {
    background: #FFB347;
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    color: #2C3E50;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
}

@media (max-width: 1000px) {
    .classes-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .classes-grid, .industries-grid { grid-template-columns: 1fr; }
}


/* ==================== SEÇÃO AGRICULTURA ==================== */

/* ==================== SEÇÃO CLIENTES E PARCEIROS ==================== */
.honor-bunk-section {
    position: relative;
    background: url('elecrt.png') center/cover fixed no-repeat;
    padding: 5rem 5%;
}

.honor-bunk-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.honor-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
}

.honor-card-wrapper {
    background: rgba(255, 248, 235, 0.95);
    backdrop-filter: blur(3px);
    padding: 2.5rem;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.honor-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C3E50;
    padding: 0.3rem 1.2rem;
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.honor-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.honor-subtitle {
    color: #FFE484;
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.honor-card {
    background: rgba(255, 255, 255, 0.96);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-card:hover {
    transform: translateY(-8px);
    background: white;
}

.honor-photo {
    width: 180px;
    height: 180px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    border: 3px solid #FFD700;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.honor-card:hover .honor-photo {
    transform: scale(1.05);
    border-color: #FFA500;
}

.honor-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.honor-cta-btn {
    background: #FFD700;
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    color: #2C3E50;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1000px) {
    .honor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .honor-grid { grid-template-columns: 1fr; }
    .honor-photo { width: 140px; height: 140px; }
}



/* ==================== SEÇÃO CONTACTOS ==================== */
/* ==================== SEÇÃO CONTACTOS ==================== */
/* ==================== SEÇÃO CONTACTOS ==================== */
.contact-bunk-section {
    background: #f5f5f5;
    padding: 80px 20px;
    position: relative;
    min-height: 500px;
}

.contact-bunk-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.contact-bunk-section * {
    position: relative;
    z-index: 1;
}

.contact-card-wrapper {
    background: rgba(255, 248, 235, 0.95);
    backdrop-filter: blur(3px);
    padding: 2.5rem;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
}

.contact-badge {
    background: #FFE0A3;
    color: #5025EC;
    padding: 0.3rem 1.2rem;
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #FFE484;
    margin-bottom: 2.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    max-width: 700px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.96);
    padding: 1.8rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7345FF, #5025EC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    color: #2C3E50;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-details p {
    font-size: 0.9rem;
    color: #555;
}

.contact-form {
    background: rgba(255, 255, 255, 0.96);
    padding: 1.8rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: #2C3E50;
    font-weight: 600;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 0.9rem;
    font-family: inherit;
}

.contact-submit-btn {
    width: 100%;
    background: #FFB347;
    border: none;
    padding: 12px;
    font-weight: 700;
    color: #2C3E50;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn:hover {
    background: #ffa01e;
    transform: translateY(-2px);
}

.contact-map {
    margin-top: 1rem;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.96);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

@media (max-width: 1000px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ==================== FOOTER ==================== */
/* ==================== FOOTER ==================== */
/* ==================== FOOTER ==================== */
.footer-section {
    background: linear-gradient(135deg, #1a237e 0%, #0A1F2E 100%);
    color: white;
    padding: 60px 40px 30px;
}

.footer-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 28px;
    color: #FFB703;
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 14px;
}

/* ===== REDES SOCIAIS ===== */
/* ===== REDES SOCIAIS ===== */
/* ==================== FOOTER ==================== */
.footer-section {
    background: linear-gradient(135deg, #1a237e 0%, #0A1F2E 100%);
    color: white;
    padding: 60px 40px 30px;
}

.footer-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 28px;
    color: #FFB703;
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 14px;
}

/* ===== REDES SOCIAIS ===== */
.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 12px !important;
}

.social-icon-footer i {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 11px !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon-footer span {
    font-size: 12px !important;
    line-height: 1;
}

.social-icon-footer:hover {
    color: #FFB703;
    transform: translateX(5px);
}

.social-icon-footer:hover i {
    background: #FFB703;
    color: #1a237e;
}

/* ===== LINKS DO FOOTER ===== */
.footer-links h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #ADE8F4;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 3px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 12px !important;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #FFB703;
    padding-left: 6px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
    font-size: 13px;
}

.copyright {
    text-align: center;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1000px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    .footer-links ul {
        text-align: center;
    }
    .footer-links a:hover {
        padding-left: 0;
    }
    .social-links-footer {
        align-items: center;
    }
    .social-icon-footer:hover {
        transform: translateX(0);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==================== WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 10px 18px;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    border-left: 4px solid #25D366;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(10px);
}

@media (max-width: 768px) {
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-btn { width: 55px; height: 55px; font-size: 1.8rem; }
    .whatsapp-tooltip { display: none; }
}


/* ===== BOTÃO SOLICITAR PROJETO ===== */
.btn-solicitar-projeto {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #AF9C03, #FFD700);
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(175, 156, 3, 0.3);
    text-decoration: none;
}

.btn-solicitar-projeto:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(175, 156, 3, 0.4);
    gap: 18px;
    background: linear-gradient(135deg, #FFD700, #AF9C03);
}

.btn-solicitar-projeto i {
    font-size: 1.1rem;
}

/* ===== GARANTIR QUE OS BOTÕES NÃO TENHAM SUBLINHADO ===== */
a.btn-solicitar-projeto,
a.services-cta-btn,
a.maintenance-cta-btn,
a.fabrico-cta-btn,
a.bunk-cta-btn,
a.cta-button {
    text-decoration: none !important;
}