:root {
    --white: #ffffff;
    --black: #111111;
    --eb-blue: #003366;
    --silk-grey: #f4f6f7;
}


/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Times New Roman', serif;
    background-color: var(--silk-grey);
    overflow-x: hidden;
    width: 100%;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* NAVBAR */
#main-nav {
    position: fixed;
    width: 100%;
    z-index: 2000;
    padding: 25px 0;
    transition: 0.4s;
}

#main-nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1500px;
    margin: 0 auto;
}

.brand-name {
    font-family: 'Times New Roman', serif;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

.brand-navbar,
.brand-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.25);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a {
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    background: var(--eb-blue);
    border-color: var(--eb-blue);
}

.nav-socials {
    display: flex;
    gap: 8px;
}

.nav-socials a {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-socials a:hover {
    background: var(--eb-blue);
    transform: translateY(-3px);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('imagem/fundolado.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.68) saturate(1.04);
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 28%, rgba(0,0,0,0) 55%),
        linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.22) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.42) 0%,
        rgba(0,0,0,0.18) 40%,
        rgba(0,0,0,0.42) 100%
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    color: #fff;
    text-align: center;
    width: 90%;
    text-shadow: 0 4px 18px rgba(0,0,0,0.30);
}

.hero-subphrase {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.2;
}

.elegant-line {
    width: 60px;
    height: 1.5px;
    background: var(--eb-blue);
    margin: 25px auto;
    box-shadow: 0 0 12px rgba(0, 51, 102, 0.35);
}

.hero-location-tag {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: bold;
}

/* PHILOSOPHY */
.philosophy-section {
    padding: 100px 5%;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 5;
}

.eb-subtitle {
    color: var(--eb-blue);
    letter-spacing: 4px;
    font-weight: bold;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--eb-blue);
    padding-bottom: 5px;
    margin-bottom: 15px;
    display: inline-block;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display';
    margin-bottom: 25px;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-num {
    font-size: 2.5rem;
    color: var(--eb-blue);
    font-weight: bold;
    font-family: 'Playfair Display';
    display: block;
}

.stat-desc {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

/* MAP SECTION */
.section-container.side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 5;
    background: var(--silk-grey);
}

.about-text h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display';
    margin: 20px 0;
}

.title-underline {
    width: 50px;
    height: 2px;
    background: var(--eb-blue);
    margin-bottom: 25px;
}

.elegant-check-list {
    list-style: none;
    margin-top: 25px;
}

.elegant-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

.elegant-check-list i {
    color: var(--eb-blue);
}

.map-box-refined {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

/* PORTFOLIO CAROUSEL */
.portfolio-circle-wrap {
    padding: 80px 0;
    overflow: hidden;
    background: #fff;
    position: relative;
    z-index: 5;
}

.circular-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: rotativeScroll 25s linear infinite;
}

.circle-item {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.circle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes rotativeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-1200px); }
}

/* PROCESS SECTION */
.process-section {
    background: var(--eb-blue);
    padding: 100px 5%;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 5;
}

.process-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.process-step {
    flex: 1;
}

.step-num {
    font-family: 'Great Vibes';
    font-size: 4rem;
    opacity: 0.3;
}

.process-step h4 {
    margin-bottom: 15px;
    font-family: 'Playfair Display';
    font-size: 1.4rem;
}

.process-step p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* VIDEO SHOWCASE - CONFIGURADO */
.video-showcase {
    padding: 100px 5%;
    text-align: center;
    background: var(--silk-grey);
    position: relative;
    z-index: 5;
}

.video-content-text {
    margin-bottom: 40px;
}

.video-content-text h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display';
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* TESTIMONIALS */
.testimonials-luxury {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px 20px;
    background: var(--silk-grey);
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--eb-blue);
    opacity: 0.15;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display';
    line-height: 1.6;
}

.quote-author {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--eb-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FORMULÁRIO DIVINE - RECONFIGURADO */
.contact-divine {
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    background: white;
    position: relative;
    z-index: 5;
}

.divine-card-pro {
    width: 100%;
    max-width: 850px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.divine-header {
    text-align: center;
    margin-bottom: 40px;
}

.divine-header .brand-name {
    justify-content: center;
    display: inline-block;
}

.divine-header h3 {
    font-size: 1.6rem;
    color: var(--eb-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 15px;
    font-family: 'Playfair Display';
}

.divine-separator {
    width: 50px;
    height: 2px;
    background: var(--eb-blue);
    margin: 25px auto;
}

.divine-form-pro {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.field-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.field-box label {
    font-size: 0.75rem;
    font-weight: bold;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input,
textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    background: #fafafa;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--eb-blue);
    outline: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,51,102,0.05);
}

/* BOTÃO DO FORMULÁRIO - DESTAQUE AZUL */
.btn-divine-pro { 
    width: 100%; 
    max-width: 350px; 
    margin: 20px auto 0; 
    padding: 22px; 
    background-color: var(--eb-blue) !important;
    color: #ffffff !important;
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: bold; 
    text-transform: uppercase; 
    transition: 0.4s; 
    display: block; 
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}

.btn-divine-pro:hover { 
    background-color: #002244 !important;
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.3); 
}

/* FOOTER */
.main-footer {
    background: #000;
    color: #fff;
    padding: 80px 5%;
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer-location {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--eb-blue);
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 !important;
}

/* BOTÕES FLUTUANTES */
.floating-contact-group {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-label {
    background: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #111;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    white-space: nowrap;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1 !important;
    visibility: visible !important;
}

.blue-arrow {
    color: var(--eb-blue);
    font-size: 1rem;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-rect-btn {
    position: relative;
    width: fit-content;
    min-width: unset;
    height: 72px;
    padding: 0 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    isolation: isolate;
    overflow: visible;
}

.floating-rect-btn i {
    font-size: 28px;
    min-width: 28px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.floating-number {
    position: relative;
    z-index: 3;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.05rem;
}

.call-rect-btn {
    background: linear-gradient(135deg, #003366 0%, #004a99 100%);
}

.wa-rect-btn {
    background: linear-gradient(135deg, #1fa855 0%, #25d366 100%);
}

.floating-rect-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}

/* ONDAS MAGNÉTICAS / PULSO EXTERNO */
.led-border-blue::before,
.led-border-blue::after,
.led-border-green::before,
.led-border-green::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: scale(1);
}

.led-border-blue::before,
.led-border-blue::after {
    border: 2px solid rgba(0, 229, 255, 0.9);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.75);
}

.led-border-green::before,
.led-border-green::after {
    border: 2px solid rgba(57, 255, 20, 0.95);
    box-shadow: 0 0 14px rgba(57, 255, 20, 0.85);
}

.led-border-blue::before,
.led-border-green::before {
    animation: magneticPulse 1.9s infinite ease-out;
}

.led-border-blue::after,
.led-border-green::after {
    animation: magneticPulse 1.9s infinite ease-out 0.95s;
}

@keyframes magneticPulse {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }
    70% {
        opacity: 0.28;
        transform: scale(1.12);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

/* ESPELHAR ÍCONE DE TELEFONE */
.mirrored {
    transform: scaleX(-1);
}

/* PULSE ANIMATIONS ORIGINAIS */
@keyframes pulseGreen {
    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); }
}

@keyframes pulseBlue {
    0% { box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 51, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 51, 102, 0); }
}

.pulse-green { animation: pulseGreen 2s infinite; }
.pulse-blue { animation: pulseBlue 2s infinite; }

/* ENTRADA DOS BOTÕES */
.floating-animate {
    opacity: 0;
    transform: translateX(80px);
    animation: floatingSlideIn 0.9s ease forwards;
}

.floating-animate-delay {
    animation-delay: 0.25s;
}

@keyframes floatingSlideIn {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* REFORMULAÇÃO MOBILE */
@media (max-width: 900px) {
    #main-nav {
        background: rgba(0, 0, 0, 0.95);
        padding: 15px 0;
        position: fixed;
        top: 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-right {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-links a {
        padding: 6px 12px;
        font-size: 0.65rem;
        background: rgba(255,255,255,0.05);
        border-radius: 30px;
    }

    .nav-socials {
        justify-content: center;
        width: 100%;
        padding-top: 5px;
    }

    .hero {
        min-height: 100svh;
        height: auto;
        padding-top: 70px;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 0;
        transform: translateY(0);
        padding-top: 40px;
    }

    .hero-bg-image {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('imagem/fundope.png') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        z-index: 1 !important;
        filter: brightness(0.66) saturate(1.03);
    }

    .hero::before {
        background:
            radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 24%, rgba(0,0,0,0) 50%),
            linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.22) 40%, rgba(0,0,0,0.42) 100%);
    }

    .section-container.side-by-side {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 5%;
    }

    .process-container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row-pro {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .floating-contact-group {
        right: 12px;
        left: auto;
        bottom: 20px;
        align-items: flex-end;
        gap: 14px;
    }

    .floating-item {
        width: auto;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .floating-label {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.75rem;
        padding: 10px 16px;
        max-width: none;
        white-space: nowrap !important;
        line-height: 1.2;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.85rem;
    }

    .floating-rect-btn {
        width: fit-content;
        min-width: unset;
        height: 62px;
        padding: 0 18px;
        border-radius: 16px;
        gap: 12px;
        font-size: 0.9rem;
    }

    .floating-rect-btn i {
        font-size: 22px;
        min-width: 22px;
    }

    .floating-number {
        font-size: 0.9rem;
    }

    .video-wrapper {
        border-width: 5px;
    }

    .divine-card-pro {
        padding: 40px 20px;
    }
}

/* CORREÇÃO DO ZOOM ABSURDO NAS OUTRAS IMAGENS (MOBILE) */
@media (max-width: 900px) {
    .contact-hero-premium, 
    .page-header-premium, 
    .page-header,
    .contact-hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .page-header-premium,
    .contact-hero-premium {
        height: 40vh !important;
        min-height: 300px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
    }

    .hero-content {
        padding-top: 30px;
        width: 92%;
    }

    .hero-subphrase {
        font-size: clamp(1.45rem, 7vw, 2.2rem);
        line-height: 1.18;
    }

    .elegant-line {
        margin: 18px auto;
    }

    .hero-location-tag {
        font-size: 0.68rem;
        letter-spacing: 2px;
    }

    .floating-contact-group {
        right: 8px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-item {
        gap: 6px;
    }

    .floating-label {
        display: inline-flex !important;
        font-size: 0.58rem;
        padding: 7px 8px;
        white-space: nowrap !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        font-size: 0.72rem;
    }

    .floating-rect-btn {
        height: 56px;
        padding: 0 14px;
        font-size: 0.78rem;
        gap: 9px;
    }

    .floating-rect-btn i {
        font-size: 18px;
        min-width: 18px;
    }

    .floating-number {
        font-size: 0.76rem;
    }
}



/* Link que envolve todo o botão flutuante */
.floating-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
}

.floating-link:hover {
    text-decoration: none;
}



























/* ===========================================
   ESTILOS ESPECÍFICOS DA PÁGINA SERVIÇOS / SOBRE
   =========================================== */
:root {
    --eb-blue: #003366;
    --eb-dark: #001a33;
    --white: #ffffff;
    --silk-grey: #f4f6f7;
    --text-main: #333333;
}

* {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

html, body { 
    max-width: 100%; 
    overflow-x: hidden; 
    width: 100%; 
    font-family: 'Times New Roman', serif; 
    color: var(--text-main);
    background-color: var(--white);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MENU PREMIUM FIXO */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(0,0,0,0.98);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.brand-name {
    font-family: 'Times New Roman', serif;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

.brand-navbar,
.brand-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.25);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-links a { 
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    transition: 0.4s;
    text-decoration: none;
}

.nav-active-link {
    background: var(--eb-blue);
    border-color: var(--eb-blue) !important;
}

.nav-socials {
    display: flex;
    gap: 10px;
}

.nav-socials a {
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-socials a:hover {
    color: var(--eb-blue);
    transform: translateY(-3px);
}

/* HEADER SERVIÇOS */
.page-header {
    position: relative;
    min-height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('imagem/img4.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 5% 100px 5%;
}

/* HEADER PREMIUM */
.page-header-premium {
    position: relative;
    min-height: 65vh;
    background: url('imagem/img4.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 5% 100px 5%;
}

.header-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,51,102,0.8) 0%, rgba(0,0,0,0.85) 100%);
}

.eb-subtitle-premium {
    position: relative;
    color: #fff;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
    margin-bottom: 20px;
    display: inline-block;
}

.playfair-display-title {
    position: relative;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

.elegant-line-center {
    position: relative;
    width: 80px;
    height: 3px;
    background: #fff;
    margin: 25px auto 0;
}

/* SECÇÃO QUEM SOMOS */
.section-about-core {
    padding: 120px 5%;
    background: #fff;
}

.about-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.about-visual-box {
    position: relative;
}

.image-border-effect {
    padding: 15px;
    border: 1px solid var(--eb-blue);
    border-radius: 30px;
}

.about-visual-box img {
    width: 100%;
    border-radius: 20px;
    display: block;
    filter: brightness(0.95);
}

.eb-tag {
    color: var(--eb-blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.about-text-content h2 {
    font-family: 'Playfair Display';
    font-size: 2.8rem;
    color: var(--eb-blue);
    margin: 15px 0;
}

.p-lead {
    font-size: 1.25rem;
    color: var(--eb-blue);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-box {
    border-left: 4px solid var(--eb-blue);
    padding-left: 25px;
    margin-top: 40px;
    font-style: italic;
    color: #555;
}

/* SERVIÇOS */
.services-list-section {
    padding: 110px 5%;
    background: #fff;
}

.services-grid-detailed {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-item-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 28px;
    padding: 45px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.service-item-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.08);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--eb-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
}

.service-item-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--eb-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item-box p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.mini-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.mini-check-list i {
    color: var(--eb-blue);
}

/* TECH SPECS */
.tech-specs {
    padding: 110px 5%;
    background: var(--eb-blue);
    color: #fff;
}

.philosophy-container {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-top: 20px;
    margin-bottom: 55px;
}

.specs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.spec-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 26px;
    padding: 35px 28px;
}

.spec-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--eb-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.spec-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #fff;
}

.spec-text p {
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
}

/* QUADRADOS AZUIS - VALORES E DIFERENCIAIS */
.values-section-blue {
    padding: 100px 5%;
    background: var(--eb-blue);
    color: #fff;
    text-align: center;
}

.h2-white {
    color: #fff !important;
    font-family: 'Playfair Display';
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.eb-tag-white {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
    font-size: 0.75rem;
}

.values-grid-complex,
.reasons-grid-complex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-item-blue,
.reason-card-blue {
    background: rgba(255,255,255,0.05);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.value-item-blue:hover,
.reason-card-blue:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-15px);
    border-color: #fff;
}

.icon-circle-white {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--eb-blue);
    font-size: 1.8rem;
}

.value-item-blue h4,
.reason-card-blue h4 {
    font-family: 'Playfair Display';
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.value-item-blue p,
.reason-card-blue p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* DIFERENCIAIS */
.detailed-reasons-blue {
    padding: 100px 5%;
    background: var(--silk-grey);
    text-align: center;
}

.reason-card-blue {
    background: var(--eb-blue);
}

.reason-number {
    font-family: 'Great Vibes';
    font-size: 3.5rem;
    color: rgba(255,255,255,0.2);
    display: block;
    margin-bottom: 10px;
}

/* FAQ */
.faq-section {
    padding: 120px 5%;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
    max-width: 1100px;
    margin: 60px auto 0;
}

.faq-item h5 {
    font-family: 'Playfair Display';
    font-size: 1.3rem;
    color: var(--eb-blue);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* MARCAS */
.brands-section {
    padding: 90px 5%;
    text-align: center;
    background: #fff;
}

.eb-subtitle {
    display: inline-block;
    color: var(--eb-blue);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
    border-bottom: 2px solid var(--eb-blue);
    padding-bottom: 10px;
    margin-bottom: 28px;
}

.brands-logos {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--eb-blue);
    line-height: 1.8;
    font-weight: 700;
}

.dot {
    opacity: 0.35;
    margin: 0 8px;
}

/* CTA */
.final-cta-section,
.cta-simple {
    padding: 120px 5%;
    background: var(--eb-blue);
    color: #fff;
    text-align: center;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
}

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.btn-main-cta,
.btn-wa-cta,
.btn-divine-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    padding: 20px 34px;
    background: #fff;
    color: var(--eb-blue);
    border-radius: 60px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.4s;
    border: none;
}

.btn-wa-cta {
    background: #25d366;
    color: #fff;
}

.btn-main-cta:hover,
.btn-wa-cta:hover,
.btn-divine-pro:hover {
    transform: translateY(-4px);
}

/* FOOTER */
.main-footer {
    background: #000;
    color: #fff;
    padding: 80px 5%;
    text-align: center;
}

.footer-location {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--eb-blue);
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 !important;
}

/* BOTÕES FLUTUANTES */
.floating-contact-group {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
}

.floating-link:hover {
    text-decoration: none;
}

.floating-label {
    background: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    color: #111;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
}

.blue-arrow {
    color: var(--eb-blue);
    font-size: 1rem;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-rect-btn {
    position: relative;
    width: fit-content;
    min-width: unset;
    height: 72px;
    padding: 0 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    isolation: isolate;
    overflow: visible;
}

.floating-rect-btn i {
    font-size: 28px;
    min-width: 28px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.floating-number {
    position: relative;
    z-index: 3;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.05rem;
}

.call-rect-btn {
    background: linear-gradient(135deg, #003366 0%, #004a99 100%);
}

.wa-rect-btn {
    background: linear-gradient(135deg, #1fa855 0%, #25d366 100%);
}

.floating-rect-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}

.mirrored {
    transform: scaleX(-1);
}

/* ONDAS MAGNÉTICAS / PULSO EXTERNO */
.led-border-blue::before,
.led-border-blue::after,
.led-border-green::before,
.led-border-green::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: scale(1);
}

.led-border-blue::before,
.led-border-blue::after {
    border: 2px solid rgba(0, 229, 255, 0.9);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.75);
}

.led-border-green::before,
.led-border-green::after {
    border: 2px solid rgba(57, 255, 20, 0.95);
    box-shadow: 0 0 14px rgba(57, 255, 20, 0.85);
}

.led-border-blue::before,
.led-border-green::before {
    animation: magneticPulse 1.9s infinite ease-out;
}

.led-border-blue::after,
.led-border-green::after {
    animation: magneticPulse 1.9s infinite ease-out 0.95s;
}

@keyframes magneticPulse {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }
    70% {
        opacity: 0.28;
        transform: scale(1.12);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

/* ENTRADA DOS BOTÕES */
.floating-animate {
    opacity: 0;
    transform: translateX(80px);
    animation: floatingSlideIn 0.9s ease forwards;
}

.floating-animate-delay {
    animation-delay: 0.25s;
}

@keyframes floatingSlideIn {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVIDADE BLINDADA */
@media (max-width: 1100px) {
    .about-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .quote-box {
        border-left: none;
        border-top: 4px solid var(--eb-blue);
        padding: 20px 0 0 0;
    }

    .values-grid-complex,
    .reasons-grid-complex,
    .services-grid-detailed,
    .specs-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 800px) {
    body {
        padding-top: 120px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.65rem;
        padding: 6px 12px;
    }

    .page-header,
    .page-header-premium {
        padding: 80px 5% 80px 5%;
    }
    
    .values-grid-complex,
    .reasons-grid-complex,
    .faq-grid,
    .services-grid-detailed,
    .specs-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-item-blue,
    .reason-card-blue,
    .service-item-box,
    .spec-item {
        padding: 40px 25px;
    }

    .floating-contact-group {
        right: 12px;
        left: auto;
        bottom: 20px;
        align-items: flex-end;
        gap: 14px;
    }

    .floating-item {
        width: auto;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .floating-link {
        gap: 8px;
    }

    .floating-label {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.75rem;
        padding: 10px 16px;
        max-width: none;
        white-space: nowrap !important;
        line-height: 1.2;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.85rem;
    }

    .floating-rect-btn {
        width: fit-content;
        min-width: unset;
        height: 62px;
        padding: 0 18px;
        border-radius: 16px;
        gap: 12px;
        font-size: 0.9rem;
    }

    .floating-rect-btn i {
        font-size: 22px;
        min-width: 22px;
    }

    .floating-number {
        font-size: 0.9rem;
    }
}

/* CORREÇÃO DO ZOOM E SOBREPOSIÇÃO NO MOBILE */
@media (max-width: 900px) {
    .contact-hero-premium, 
    .page-header-premium, 
    .page-header,
    .contact-hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .page-header-premium,
    .contact-hero-premium,
    .page-header {
        min-height: 420px !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 135px;
    }

    .floating-contact-group {
        right: 8px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-item {
        gap: 6px;
    }

    .floating-link {
        gap: 6px;
    }

    .floating-label {
        display: inline-flex !important;
        font-size: 0.58rem;
        padding: 7px 8px;
        white-space: nowrap !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        font-size: 0.72rem;
    }

    .floating-rect-btn {
        height: 56px;
        padding: 0 14px;
        font-size: 0.78rem;
        gap: 9px;
    }

    .floating-rect-btn i {
        font-size: 18px;
        min-width: 18px;
    }

    .floating-number {
        font-size: 0.76rem;
    }
}















/* ===========================================
   PÁGINA DE CONTACTO - DESIGN LUXO RESPONSIVO
   =========================================== */
:root {
    --white: #ffffff;
    --black: #111111;
    --eb-blue: #003366;
    --silk-grey: #f4f6f7;
}

/* 1. FUNDAMENTOS ANTI-QUEBRA (CRÍTICO) */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box !important;
    -webkit-font-smoothing: antialiased; 
    text-decoration: none !important; 
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* 2. REVEAL SYSTEM (Animações de entrada) */
.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); 
}
.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* 3. NAVIGATION (Barra Fixa) */
#main-nav { 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    z-index: 2000; 
    padding: 25px 0; 
    transition: 0.4s; 
}
#main-nav.scrolled { 
    background: rgba(0, 0, 0, 0.98); 
    padding: 12px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}
.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 5%; 
    max-width: 1500px; 
    margin: 0 auto; 
    width: 100%; 
}
.brand-name { 
    font-family: 'Times New Roman', serif; 
    color: var(--white); 
    font-size: 1.8rem; 
    cursor: pointer; 
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

.brand-navbar,
.brand-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.25);
}

/* Menu Direita */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a { 
    color: #fff; 
    font-size: 0.7rem; 
    font-weight: bold; 
    padding: 8px 18px; 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 50px; 
    text-transform: uppercase; 
    transition: 0.3s; 
}

.nav-links a:hover,
.nav-active-link { 
    background: var(--eb-blue) !important; 
    border-color: var(--eb-blue) !important; 
    color: #fff !important; 
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3); 
}

.nav-socials {
    display: flex;
    gap: 8px;
}

.nav-socials a { 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.2); 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.3s; 
}

.nav-socials a:hover {
    background: var(--eb-blue);
    transform: translateY(-3px);
}

/* 4. CONTACT HERO (Cabeçalho Cinematográfico) */
.contact-hero-premium {
    position: relative;
    min-height: 65vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('imagem/img3.png') center/cover no-repeat fixed;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #fff; 
    padding: 180px 20px 100px 20px; 
    width: 100%;
}

.eb-subtitle { 
    display: inline-block; 
    color: #ffffff; 
    letter-spacing: 7px; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    border-bottom: 2px solid #fff; 
    margin-bottom: 30px; 
    padding-bottom: 10px; 
    font-weight: 700;
}

.playfair-display-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.2rem, 8vw, 4.5rem); 
    margin-bottom: 25px; 
    line-height: 1.1; 
    font-weight: 700; 
}

.hero-tagline { 
    font-size: clamp(1rem, 2vw, 1.4rem); 
    opacity: 0.95; 
    max-width: 750px; 
    margin: 0 auto; 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    line-height: 1.7; 
}

/* 5. ESTRUTURA DE CONTEÚDO (Grid Principal) */
.contact-wrapper-detailed { 
    background: var(--silk-grey); 
    padding: 120px 0; 
    margin-top: -100px; 
    position: relative; 
    z-index: 10; 
    width: 100%; 
}

.contact-container-grid { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 420px 1fr;
    gap: 50px; 
    padding: 0 5%;
    width: 100%;
}

/* SIDEBAR CONCIERGE */
.contact-sidebar-concierge { 
    background: #ffffff; 
    padding: 60px 45px; 
    border-radius: 30px; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.06); 
    height: fit-content; 
    border: 1px solid rgba(0,0,0,0.03); 
    width: 100%;
}

.sidebar-header h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem; 
    color: var(--eb-blue); 
    margin-bottom: 15px; 
}

.elegant-line { 
    width: 60px; 
    height: 4px; 
    background: var(--eb-blue); 
    margin-bottom: 45px; 
    border-radius: 2px; 
}

.contact-method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: center;
    width: 100%;
}

.method-icon-circle { 
    width: 55px;
    height: 55px; 
    background: var(--silk-grey); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--eb-blue); 
    font-size: 1.3rem; 
    flex-shrink: 0; 
    border: 1px solid #eee; 
    transition: 0.4s;
}

.contact-method-item:hover .method-icon-circle {
    background: var(--eb-blue);
    color: #fff;
    transform: scale(1.1);
}

.method-text span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 800;
    letter-spacing: 1px;
}

.method-text p,
.method-text a {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 700;
    transition: 0.2s;
    word-break: break-all;
}

/* Redes Sociais da Sidebar */
.sidebar-footer-social-box {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-links-blue {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links-blue a { 
    width: 45px;
    height: 45px; 
    border-radius: 50%; 
    background: var(--eb-blue); 
    color: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.3s; 
    font-size: 1.2rem;
}

.social-links-blue a:hover {
    transform: translateY(-5px);
    background: #002244;
}

/* 6. FORMULÁRIO DIVINE */
.contact-form-area-luxury { 
    background: #ffffff; 
    padding: 70px; 
    border-radius: 30px; 
    box-shadow: 0 50px 120px rgba(0,0,0,0.08); 
    border: 1px solid #eee; 
    width: 100%;
}

.form-intro-center {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro-center h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--eb-blue);
    margin-bottom: 15px;
}

.main-contact-form-premium label { 
    display: block; 
    font-size: 0.75rem; 
    font-weight: 800; 
    color: #333; 
    text-transform: uppercase; 
    margin: 20px 0 10px; 
    letter-spacing: 2px; 
}

.main-contact-form-premium input, 
.main-contact-form-premium textarea { 
    width: 100%; 
    padding: 20px; 
    border: 1px solid #e0e0e0; 
    border-radius: 12px; 
    background: #fcfcfc; 
    font-size: 1rem; 
    font-family: 'Playfair Display', serif; 
    transition: 0.3s;
}

.main-contact-form-premium input:focus, 
.main-contact-form-premium textarea:focus { 
    border-color: var(--eb-blue); 
    outline: none; 
    background: #fff; 
    box-shadow: 0 10px 25px rgba(0,51,102,0.05); 
}

.form-grid-dual-columns { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
    width: 100%;
}

.btn-submit-divine { 
    width: 100%; 
    margin-top: 40px; 
    padding: 25px; 
    background: #111; 
    color: #fff; 
    border: none; 
    border-radius: 60px; 
    font-size: 1rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    transition: 0.4s; 
    letter-spacing: 2px;
}

.btn-submit-divine:hover {
    background: var(--eb-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,51,102,0.2);
}

/* 7. MAPA E ETIQUETA */
.map-section-fluid {
    position: relative;
    padding-top: 60px;
    background: #fff;
    width: 100%;
}

.map-floating-label { 
    position: absolute; 
    top: -30px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 50; 
    background: var(--eb-blue); 
    color: #fff; 
    padding: 20px 40px; 
    border-radius: 60px; 
    font-weight: 800; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    white-space: nowrap; 
    box-shadow: 0 15px 40px rgba(0,51,102,0.3); 
    border: 2px solid rgba(255,255,255,0.1);
}

.map-box-refined {
    width: 100%;
    height: 500px;
}

.map-box-refined iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 8. BOTÕES FLUTUANTES */
.floating-contact-group { 
    position: fixed; 
    bottom: 30px; 
    right: 25px; 
    z-index: 3000; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    align-items: flex-end; 
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
}

.floating-link:hover {
    text-decoration: none;
}

.floating-label { 
    background: white; 
    padding: 14px 22px; 
    border-radius: 50px; 
    font-size: 0.95rem; 
    font-weight: bold; 
    color: #111; 
    box-shadow: 0 12px 30px rgba(0,0,0,0.12); 
    border: 1px solid #eee; 
    display: flex; 
    align-items: center; 
    gap: 12px;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
}

.blue-arrow { 
    color: var(--eb-blue); 
    font-size: 1rem;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-rect-btn {
    position: relative;
    width: fit-content;
    min-width: unset;
    height: 72px;
    padding: 0 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    isolation: isolate;
    overflow: visible;
}

.floating-rect-btn i {
    font-size: 28px;
    min-width: 28px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.floating-number {
    position: relative;
    z-index: 3;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.05rem;
}

.call-rect-btn {
    background: linear-gradient(135deg, #003366 0%, #004a99 100%);
}

.wa-rect-btn {
    background: linear-gradient(135deg, #1fa855 0%, #25d366 100%);
}

.floating-rect-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}

/* ESPELHAMENTO DO TELEFONE */
.mirrored {
    transform: scaleX(-1);
}

/* ONDAS MAGNÉTICAS / PULSO EXTERNO */
.led-border-blue::before,
.led-border-blue::after,
.led-border-green::before,
.led-border-green::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: scale(1);
}

.led-border-blue::before,
.led-border-blue::after {
    border: 2px solid rgba(0, 229, 255, 0.9);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.75);
}

.led-border-green::before,
.led-border-green::after {
    border: 2px solid rgba(57, 255, 20, 0.95);
    box-shadow: 0 0 14px rgba(57, 255, 20, 0.85);
}

.led-border-blue::before,
.led-border-green::before {
    animation: magneticPulse 1.9s infinite ease-out;
}

.led-border-blue::after,
.led-border-green::after {
    animation: magneticPulse 1.9s infinite ease-out 0.95s;
}

@keyframes magneticPulse {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }
    70% {
        opacity: 0.28;
        transform: scale(1.12);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

/* ANIMAÇÕES PULSE ORIGINAIS */
@keyframes pulseG {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseB {
    0% { box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 51, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 51, 102, 0); }
}

.pulse-green {
    animation: pulseG 2s infinite;
}

.pulse-blue {
    animation: pulseB 2s infinite;
}

/* ENTRADA DOS BOTÕES */
.floating-animate {
    opacity: 0;
    transform: translateX(80px);
    animation: floatingSlideIn 0.9s ease forwards;
}

.floating-animate-delay {
    animation-delay: 0.25s;
}

@keyframes floatingSlideIn {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 9. RESPONSIVIDADE BLINDADA (TELEMÓVEL) */
@media (max-width: 1200px) {
    .contact-container-grid { 
        grid-template-columns: 1fr;
        max-width: 900px; 
    }

    .contact-wrapper-detailed {
        margin-top: 0;
        padding: 80px 0;
    }
}

@media (max-width: 900px) {
    #main-nav {
        background: rgba(0, 0, 0, 0.98);
        padding: 15px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    body {
        padding-top: 120px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-right {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    .nav-links a {
        padding: 6px 14px;
        font-size: 0.65rem;
        background: rgba(255,255,255,0.05);
    }

    .contact-hero-premium {
        min-height: 50vh;
        padding: 80px 20px 80px 20px;
    }
    
    .contact-form-area-luxury { 
        padding: 45px 25px; 
        order: 1;
        border-radius: 20px;
    }

    .contact-sidebar-concierge { 
        padding: 45px 30px; 
        order: 2;
        border-radius: 20px;
    }
    
    .form-grid-dual-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-intro-center h2 {
        font-size: 2.2rem;
    }

    .floating-contact-group {
        right: 12px;
        left: auto;
        bottom: 20px;
        align-items: flex-end;
        gap: 14px;
    }

    .floating-item {
        width: auto;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .floating-link {
        gap: 8px;
    }

    .floating-label {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.75rem;
        padding: 10px 16px;
        max-width: none;
        white-space: nowrap !important;
        line-height: 1.2;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.85rem;
    }

    .floating-rect-btn {
        width: fit-content;
        min-width: unset;
        height: 62px;
        padding: 0 18px;
        border-radius: 16px;
        gap: 12px;
        font-size: 0.9rem;
    }

    .floating-rect-btn i {
        font-size: 22px;
        min-width: 22px;
    }

    .floating-number {
        font-size: 0.9rem;
    }
    
    .map-floating-label {
        width: 85%;
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
        padding: 15px;
    }

    .map-box-refined {
        height: 350px;
    }
}

/* ===========================================
   CORREÇÃO DO ZOOM ABSURDO NAS IMAGENS (MOBILE)
   =========================================== */
@media (max-width: 900px) {
    .contact-hero-premium, 
    .page-header-premium, 
    .page-header,
    .contact-hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .page-header-premium,
    .contact-hero-premium {
        min-height: 420px !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 135px;
    }

    .floating-contact-group {
        right: 8px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-item {
        gap: 6px;
    }

    .floating-link {
        gap: 6px;
    }

    .floating-label {
        display: inline-flex !important;
        font-size: 0.58rem;
        padding: 7px 8px;
        white-space: nowrap !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        font-size: 0.72rem;
    }

    .floating-rect-btn {
        height: 56px;
        padding: 0 14px;
        font-size: 0.78rem;
        gap: 9px;
    }

    .floating-rect-btn i {
        font-size: 18px;
        min-width: 18px;
    }

    .floating-number {
        font-size: 0.76rem;
    }
}






















/* ===========================================
   PÁGINA DE SERVIÇOS - VERSÃO DIVERSIFICADA
   =========================================== */

/* ===========================================
   PÁGINA DE SERVIÇOS - DESIGN REFORÇADO
   =========================================== */

:root {
    --white: #ffffff;
    --black: #111111;
    --eb-blue: #003366;
    --silk-grey: #f4f6f7;
}

/* BASE / BLINDAGEM */
* {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-decoration: none !important;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    font-family: 'Times New Roman', serif;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* NAVBAR */
#main-nav {
    position: fixed;
    width: 100%;
    z-index: 2000;
    padding: 15px 0;
    transition: 0.4s;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#main-nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.brand-name {
    font-family: 'Times New Roman', serif;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

.brand-navbar,
.brand-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.25);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-links a {
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    transition: 0.4s;
    text-decoration: none;
}

.nav-active-link {
    background: var(--eb-blue) !important;
    border-color: var(--eb-blue) !important;
    color: #fff !important;
}

.nav-socials {
    display: flex;
    gap: 10px;
}

.nav-socials a {
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-socials a:hover {
    color: var(--eb-blue);
    transform: translateY(-3px);
}

/* SUBTÍTULO GERAL */
.eb-subtitle {
    display: inline-block;
    color: var(--eb-blue);
    letter-spacing: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--eb-blue);
    padding-bottom: 6px;
    margin-bottom: 18px;
}

/* FOOTER */
.main-footer {
    background: #000;
    color: #fff;
    padding: 80px 5%;
    text-align: center;
}

.footer-location {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--eb-blue);
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0 !important;
}

/* PÁGINA DE SERVIÇOS */
.services-list-section {
    padding: 100px 5%;
    background: #fff;
    width: 100%;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.service-item-box {
    padding: 60px 40px;
    background: var(--silk-grey);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.service-item-box:hover {
    transform: translateY(-12px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,51,102,0.1);
    border-color: var(--eb-blue);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--eb-blue);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.service-item-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--eb-blue);
    margin-bottom: 20px;
}

.service-item-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* SEÇÃO TECH SPECS */
.tech-specs {
    padding: 120px 5%;
    background: #001a33;
    color: #fff;
    text-align: center;
    width: 100%;
}

.tech-specs h2 {
    font-family: 'Playfair Display';
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 60px;
}

.specs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.spec-item {
    text-align: left;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.spec-item:hover {
    background: rgba(255,255,255,0.08);
    transform: scale(1.02);
}

.spec-icon {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.spec-text h4 {
    font-family: 'Playfair Display';
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* SEÇÃO BRANDS */
.brands-section {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.brands-logos {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'Playfair Display';
    font-weight: bold;
    letter-spacing: 3px;
    color: var(--eb-blue);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Estilos extra para os novos elementos de Serviços */
.mini-check-list {
    list-style: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.mini-check-list li {
    font-size: 0.85rem;
    color: var(--eb-blue);
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.final-cta-section {
    padding: 100px 5%;
    background: var(--silk-grey);
    text-align: center;
}
.cta-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}
.cta-card h2 {
    font-family: 'Playfair Display';
    font-size: 2.2rem;
    color: var(--eb-blue);
    margin-bottom: 15px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.btn-main-cta {
    background: var(--eb-blue);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-wa-cta {
    background: #25d366;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* BOTÕES FLUTUANTES */
.floating-contact-group {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
}

.floating-link:hover {
    text-decoration: none;
}

.floating-label {
    background: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    color: #111;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
}

.blue-arrow {
    color: var(--eb-blue);
    font-size: 1rem;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-rect-btn {
    position: relative;
    width: fit-content;
    min-width: unset;
    height: 72px;
    padding: 0 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    isolation: isolate;
    overflow: visible;
}

.floating-rect-btn i {
    font-size: 28px;
    min-width: 28px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.floating-number {
    position: relative;
    z-index: 3;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.05rem;
}

.call-rect-btn {
    background: linear-gradient(135deg, #003366 0%, #004a99 100%);
}

.wa-rect-btn {
    background: linear-gradient(135deg, #1fa855 0%, #25d366 100%);
}

.floating-rect-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}

.mirrored {
    transform: scaleX(-1);
}

/* ONDAS MAGNÉTICAS / PULSO EXTERNO */
.led-border-blue::before,
.led-border-blue::after,
.led-border-green::before,
.led-border-green::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: scale(1);
}

.led-border-blue::before,
.led-border-blue::after {
    border: 2px solid rgba(0, 229, 255, 0.9);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.75);
}

.led-border-green::before,
.led-border-green::after {
    border: 2px solid rgba(57, 255, 20, 0.95);
    box-shadow: 0 0 14px rgba(57, 255, 20, 0.85);
}

.led-border-blue::before,
.led-border-green::before {
    animation: magneticPulse 1.9s infinite ease-out;
}

.led-border-blue::after,
.led-border-green::after {
    animation: magneticPulse 1.9s infinite ease-out 0.95s;
}

@keyframes magneticPulse {
    0% {
        opacity: 0.85;
        transform: scale(1);
    }
    70% {
        opacity: 0.28;
        transform: scale(1.12);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

/* ENTRADA DOS BOTÕES */
.floating-animate {
    opacity: 0;
    transform: translateX(80px);
    animation: floatingSlideIn 0.9s ease forwards;
}

.floating-animate-delay {
    animation-delay: 0.25s;
}

@keyframes floatingSlideIn {
    0% {
        opacity: 0;
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVIDADE BLINDADA SERVIÇOS */
@media (max-width: 1100px) {
    .services-grid-detailed, .specs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    #main-nav { background: rgba(0, 0, 0, 0.98); padding: 15px 0; }
    .nav-container { flex-direction: column; gap: 15px; }
    .brand-name { font-size: 1.4rem; }
    .brand-logo-img { width: 32px; height: 32px; }
    .nav-right { flex-direction: column; width: 100%; }
    .nav-links { justify-content: center; flex-wrap: wrap; }

    .services-grid-detailed, .specs-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-item-box, .spec-item {
        padding: 40px 25px;
    }
    
    .brands-logos {
        font-size: 0.9rem;
        line-height: 2;
    }

    .floating-contact-group {
        right: 12px;
        left: auto;
        bottom: 20px;
        align-items: flex-end;
        gap: 14px;
    }

    .floating-item {
        width: auto;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .floating-link {
        gap: 8px;
    }

    .floating-label {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.75rem;
        padding: 10px 16px;
        max-width: none;
        white-space: nowrap !important;
        line-height: 1.2;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.85rem;
    }

    .floating-rect-btn {
        width: fit-content;
        min-width: unset;
        height: 62px;
        padding: 0 18px;
        border-radius: 16px;
        gap: 12px;
        font-size: 0.9rem;
    }

    .floating-rect-btn i {
        font-size: 22px;
        min-width: 22px;
    }

    .floating-number {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .cta-buttons { flex-direction: column; }
    .btn-main-cta, .btn-wa-cta { width: 100%; }
}

/* ===========================================
   CORREÇÃO DO ZOOM ABSURDO NAS IMAGENS (MOBILE)
   =========================================== */

@media (max-width: 900px) {
    .contact-hero-premium, 
    .page-header-premium, 
    .page-header,
    .contact-hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .page-header-premium, .contact-hero-premium {
        height: 40vh !important;
        min-height: 300px !important;
    }
}

@media (max-width: 480px) {
    .floating-contact-group {
        right: 8px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-item {
        gap: 6px;
    }

    .floating-link {
        gap: 6px;
    }

    .floating-label {
        display: inline-flex !important;
        font-size: 0.58rem;
        padding: 7px 8px;
        white-space: nowrap !important;
    }

    .blue-arrow {
        display: inline-flex !important;
        font-size: 0.72rem;
    }

    .floating-rect-btn {
        height: 56px;
        padding: 0 14px;
        font-size: 0.78rem;
        gap: 9px;
    }

    .floating-rect-btn i {
        font-size: 18px;
        min-width: 18px;
    }

    .floating-number {
        font-size: 0.76rem;
    }
}