/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    /* 60% - Dominant Background (Darker) */
    --bg-dominant: #0b1015;
    /* Almost Black/Deep Navy */
    /* 30% - Secondary Structure (Dark Midnight) */
    --bg-secondary: #161b22;
    /* Darker than previous slate, blending better with neon */
    /* 10% - Accent Highlight */
    --primary-blue: #448AFF;
    /* Brighter Electric Blue from Logo */
    --dark-blue: #2c3e50;
    /* Dark Slate */

    --text-color: #ecf0f1;
    --text-muted: #bdc3c7;
    --white: #ffffff;
    --black-strip: #0d1117;
    --border-color: rgba(255, 255, 255, 0.05);

    --call-btn-blue: #448AFF;
    /* Keeping consistent with accent */
    --whatsapp-green: #25D366;
}

body {
    background-color: var(--bg-dominant);
    color: var(--text-color);
    overflow-x: hidden;
}

/* --- HEADER SUPERIOR --- */
.top-header {
    background-color: var(--bg-secondary);
    background-image: linear-gradient(to bottom, #0f131a, #161b22);
    /* Subtle depth */
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

/* --- LOGO & CONTACT --- */
.logo-sub {
    font-size: 14px;
    color: var(--primary-blue);
}

.logo-circle-img {
    height: 14rem;
    width: 14rem;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
    padding: 2px;
    background-color: var(--bg-secondary);
    /* Dark background */
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
    color: var(--text-color);
}

.email-top {
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.phones {
    display: flex;
    gap: 20px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    color: var(--primary-blue);
    font-size: 20px;
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-icon.whatsapp {
    color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
}

.phone-text strong {
    display: block;
    font-size: 16px;
    color: var(--white);
}

.phone-text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- RESPONSIVE NAV BAR --- */
.navbar {
    background-color: var(--bg-secondary);
    /* Dark Slate */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid var(--primary-blue);
    /* Accent Strip */
    color: var(--white);
    position: relative;
}

.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    padding: 15px;
}

.mobile-menu-icon div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.nav-list a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dominant);
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--bg-secondary);
}

.nav-list li {
    list-style: none;
}

.nav-list li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 20px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.dropdown-menu a:hover {
    background-color: var(--bg-secondary);
    color: var(--white);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container-nav {
        justify-content: space-between;
    }

    .mobile-menu-icon {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        /* Dark Slate */
        z-index: 999;
        text-align: center;
        border-bottom: 2px solid var(--primary-blue);
    }

    .nav-list a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border: none;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .phones {
        flex-direction: column;
        gap: 10px;
    }

    .logo-area {
        margin-bottom: 10px;
    }
}

/* --- FIXED WHATSAPP QR WIDGET --- */
#whatsapp-fixed-qr {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    width: 160px;
    /* Fixed width for consistency */
}

#whatsapp-fixed-qr:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.qr-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qr-header i {
    font-size: 18px;
}

#qrcode-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

#qrcode-container img {
    border: 1px solid #eee;
    padding: 2px;
    border-radius: 4px;
}

.qr-footer {
    font-size: 10px;
    color: #888;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive: Hide on very small screens if needed, or adjust size */
@media (max-width: 480px) {
    #whatsapp-fixed-qr {
        width: 130px;
        padding: 10px;
        bottom: 10px;
        right: 10px;
    }

    #qrcode-container img {
        width: 100px !important;
        height: 100px !important;
    }

    .qr-header {
        font-size: 12px;
    }

    .qr-footer {
        font-size: 9px;
        display: none;
        /* Hide footer text on very small screens to save space */
    }
}

/* --- FOOTER & PRE-FOOTER --- */
/* --- FOOTER & PRE-FOOTER --- */
.pre-footer {
    background-color: var(--bg-dominant);
    padding: 50px 0;
    text-align: center;
}

.pre-footer p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.5;
}

.pre-footer strong {
    color: var(--white);
    font-weight: 900;
}

.cta-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.arrow-draw {
    position: absolute;
    right: -60px;
    top: -30px;
    width: 50px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Cpath d='M40,10 C30,0 10,20 0,40' fill='none' stroke='%232962FF' stroke-width='2'/%3E%3Cpath d='M0,40 L10,35 M0,40 L5,30' fill='none' stroke='%232962FF' stroke-width='2'/%3E%3C/svg%3E");
    transform: rotate(10deg);
}

.footer-main {
    background-color: var(--black-strip);
    color: var(--text-color);
    padding-top: 50px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 40px;
    position: relative;
}

.contact-tab {
    position: absolute;
    top: -85px;
    left: 20px;
    background-color: var(--call-btn-blue);
    color: var(--white);
    padding: 10px 20px;
    font-weight: bold;
    font-family: 'Handlee', cursive;
    border-radius: 5px 5px 0 0;
    transform: skew(-10deg);
    z-index: 10;
}

.contact-tab span {
    display: block;
    transform: skew(10deg);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--white);
}

.footer-col p,
.footer-col div {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.cnpj-tag {
    display: inline-block;
    background-color: rgba(68, 138, 255, 0.1);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    margin: 5px 0 10px 0;
    border: 1px solid var(--primary-blue);
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.cnpj-tag:hover {
    background-color: rgba(68, 138, 255, 0.2);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: var(--black-strip);
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 11px;
}

.btn-call {
    background-color: var(--call-btn-blue);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-large {
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 16px;
}

/* COOKIE CONSENT */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dominant);
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-text {
    font-size: 12px;
    color: var(--text-color);
    max-width: 800px;
}

.cookie-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
}

/* LOGO PLACEHOLDER */
.logo-placeholder {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-top {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: bold;
}

.logo-main {
    font-size: 32px;
    color: var(--white);
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.logo-main span {
    display: inline-block;
    background: radial-gradient(circle, #3498db 40%, transparent 50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    font-size: 20px;
    margin: 0 5px;
}

/* PAGE HEADER (Common for subpages) */
.page-header {
    background-color: var(--bg-dominant);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.ph-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ph-content h1 {
    font-size: 24px;
    color: var(--white);
    font-weight: 300;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

@media (max-width: 768px) {
    .ph-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .contact-tab {
        display: none;
    }

    .arrow-draw {
        display: none;
    }
}

/* --- FIXED WHATSAPP QR WIDGET --- */
#whatsapp-fixed-qr {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    width: 160px;
    /* Fixed width for consistency */
}

#whatsapp-fixed-qr:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.qr-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qr-header i {
    font-size: 18px;
}

#qrcode-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

#qrcode-container img {
    border: 1px solid #eee;
    padding: 2px;
    border-radius: 4px;
}

.qr-footer {
    font-size: 10px;
    color: #888;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive: Hide on very small screens if needed, or adjust size */
@media (max-width: 480px) {
    #whatsapp-fixed-qr {
        width: 130px;
        padding: 10px;
        bottom: 10px;
        right: 10px;
    }

    #qrcode-container img {
        width: 100px !important;
        height: 100px !important;
    }

    .qr-header {
        font-size: 12px;
    }

    .qr-footer {
        font-size: 9px;
        display: none;
        /* Hide footer text on very small screens to save space */
    }
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    height: 500px;
    /* Fixed Height */
    overflow: hidden;
}

.slide {
    display: none;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.7), rgba(41, 98, 255, 0.3));
    /* Dark Slate + Electric Blue Tint */
    z-index: 1;
}

/* Reusing .hero-content but ensuring z-index is higher */
.hero-slider .hero-content {
    z-index: 2;
    text-align: left;
    /* Keep left aligned as per original design */
    padding-left: 5%;
    /* Add some padding for alignment */
}

/* Animations */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* --- FIXED WHATSAPP QR WIDGET --- */
#whatsapp-fixed-qr {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    width: 160px;
    /* Fixed width for consistency */
}

#whatsapp-fixed-qr:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.qr-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qr-header i {
    font-size: 18px;
}

#qrcode-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

#qrcode-container img {
    border: 1px solid #eee;
    padding: 2px;
    border-radius: 4px;
}

.qr-footer {
    font-size: 10px;
    color: #888;
    margin-top: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive: Hide on very small screens if needed, or adjust size */
@media (max-width: 480px) {
    #whatsapp-fixed-qr {
        width: 130px;
        padding: 10px;
        bottom: 10px;
        right: 10px;
    }

    #qrcode-container img {
        width: 100px !important;
        height: 100px !important;
    }

    .qr-header {
        font-size: 12px;
    }

    .qr-footer {
        font-size: 9px;
        display: none;
        /* Hide footer text on very small screens to save space */
    }
}

/* Navigation Buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* --- COMPANY PAGE STYLES --- */
.company-section {
    padding: 50px 0;
    background-color: var(--bg-dominant);
    text-align: center;
}

.company-intro h2 {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    /* Theme color */
    margin-bottom: 30px;
}

.company-intro h2 span {
    background-color: var(--primary-blue);
    /* Will use the main theme color (Amber/Yellow if updated) */
    color: var(--white);
    padding: 0 5px;
    font-weight: 700;
}

.company-intro p {
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.media-highlight h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 300;
}

.highlight-blue_light {
    color: var(--primary-blue);
    font-weight: 700;
}

.media-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 40px;
}

.media-link:hover {
    text-decoration: underline;
}



/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 500px;
    background-image: url('../img/hero_electric.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 35, 49, 0.8), rgba(41, 98, 255, 0.4));
    /* Dark Slate + Electric Blue Tint */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-subtitle span {
    font-weight: 700;
    color: var(--primary-blue);
    /* Blue highlight */
}

/* --- INFO BAR --- */
.info-bar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.info-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.4;
}

.info-text strong {
    color: var(--primary-blue);
    display: block;
    font-size: 16px;
}

/* --- INTRO SERVICES --- */
.intro-services {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-dominant);
}

.intro-header h2 {
    font-size: 32px;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 20px;
}

.intro-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.highlight-blue {
    color: var(--primary-blue);
    font-weight: bold;
}

/* Services Grid */
.services-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-box {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: var(--text-color);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-blue);
}

.service-box i {
    font-size: 30px;
    color: var(--primary-blue);
}

.service-box span {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- PROCESS TIMELINE --- */
.process-timeline {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.timeline-curve {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
    /* Reduced opacity for dark mode */
}

/* Timeline SVG stroke */
.timeline-curve path {
    stroke: var(--primary-blue);
}

.timeline-items {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    max-width: 1000px;
}

.t-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.t-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--bg-dominant);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-dominant);
}

.t-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-item {
    flex: 1.5;
}

.big-circle {
    width: 160px;
    height: 160px;
    border: 5px solid var(--primary-blue);
}

.t-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.t-item p strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .timeline-items {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-curve {
        display: none;
    }

    .info-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        height: 400px;
        text-align: center;
    }
}

/* --- FIXED WHATSAPP QR WIDGET (with Toggle) --- */
#whatsapp-fixed-qr {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    padding-top: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s,
        opacity 0.3s;
    width: 190px;
}

/* Close/Minimize Button */
.qr-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    border: none;
    background: #eee;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #666;
    transition: all 0.2s;
    z-index: 2;
    padding: 0;
}

.qr-close-btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

/* Hidden State */
#whatsapp-fixed-qr.qr-hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

/* Floating WhatsApp Bubble */
.qr-open-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: bubblePulse 2s infinite;
}

.qr-open-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes bubblePulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

#whatsapp-fixed-qr:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.qr-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.qr-header i {
    font-size: 18px;
}

/* Toggle Buttons */
.qr-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--primary-blue);
}

.qr-toggle-btn {
    flex: 1;
    padding: 5px 10px;
    border: none;
    background-color: #f0f0f0;
    color: #666;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-toggle-btn.active {
    background-color: var(--primary-blue);
    color: #fff;
}

.qr-toggle-btn:hover:not(.active) {
    background-color: #e0e0e0;
}

/* QR Panels */
.qr-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: qrFadeIn 0.3s ease;
}

.qr-panel.active {
    display: flex;
}

@keyframes qrFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.qr-panel img {
    border: 1px solid #eee;
    padding: 2px;
    border-radius: 4px;
}

.qr-name {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-top: 4px;
}

/* Message Notice */
.qr-msg-notice {
    font-size: 9px;
    color: #c0392b;
    margin-top: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 3px 6px;
    background-color: #fdf2f2;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

.qr-msg-notice i {
    font-size: 10px;
}

.qr-footer {
    font-size: 10px;
    color: #888;
    margin-top: 6px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    #whatsapp-fixed-qr {
        width: 160px;
        padding: 10px;
        bottom: 10px;
        right: 10px;
    }

    .qr-panel img {
        width: 90px !important;
        height: 90px !important;
    }

    .qr-header {
        font-size: 12px;
    }

    .qr-footer {
        font-size: 9px;
        display: none;
    }

    .qr-msg-notice {
        font-size: 8px;
    }
}

/* =============================================
   GLOBAL MOBILE RESPONSIVE FIXES
   ============================================= */

@media (max-width: 768px) {

    /* Hero Slider - reduce height and text on mobile */
    .hero-slider {
        height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-slider .hero-content {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .btn-call {
        font-size: 12px;
        padding: 8px 18px;
    }

    /* Logo - smaller on mobile */
    .logo-circle-img {
        height: 8rem;
        width: 8rem;
    }

    /* Pre-footer CTA - stack vertically */
    .cta-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .pre-footer p {
        font-size: 15px;
        padding: 0 15px;
    }

    /* Consent banner - stack */
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px 15px;
    }

    .cookie-text {
        font-size: 11px;
    }

    /* Intro services text */
    .intro-header h2 {
        font-size: 24px;
        padding: 0 10px;
    }

    .intro-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    /* Company section */
    .company-intro h2 {
        font-size: 24px;
        padding: 0 10px;
    }

    .company-intro p {
        padding: 0 10px;
        font-size: 14px;
    }

    /* Footer bottom */
    .footer-bottom p {
        font-size: 11px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .logo-circle-img {
        height: 6rem;
        width: 6rem;
    }

    .services-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-box {
        padding: 20px 10px;
    }

    /* Timeline circles */
    .t-circle {
        width: 90px;
        height: 90px;
    }

    .big-circle {
        width: 120px;
        height: 120px;
    }

    /* QR open bubble on mobile */
    .qr-open-bubble {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 10px;
        right: 10px;
    }
}