/* ============================================ */
/* VARIÁVEIS GLOBAIS E ESTILOS BASE */
/* ============================================ */
:root {
    --ibee-primary: #976f40; /* Cor primária (dourado iBee) */
    --ibee-primary-dark: #7a5a33; /* Tom mais escuro do dourado */
    --ibee-dark: #212121; /* Preto para textos */
    --ibee-light: #FFFFFF; /* Branco */
    --ibee-gray: #F5F5F5; /* Cinza claro para fundos */
    --ibee-text: #424242; /* Cinza escuro para textos */
    --ibee-border: #E0E0E0; /* Cinza para bordas */
    --ibee-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Sombra padrão */
    --whatsapp-green: #976f40; /* Verde do WhatsApp */
}

/* Fonte San Francisco (similar ao iOS) */
@font-face {
    font-family: 'San Francisco';
    font-weight: 400;
    src: url('https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff2');
}

@font-face {
    font-family: 'San Francisco';
    font-weight: 600;
    src: url('https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-semibold-webfont.woff2');
}

@font-face {
    font-family: 'San Francisco';
    font-weight: 700;
    src: url('https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-bold-webfont.woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--ibee-light);
    color: var(--ibee-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================ */
/* HEADER */
/* ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.75);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(151, 111, 64, 0.12);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(8, 8, 8, 0.92);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 30px rgba(0,0,0,0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    transition: all 0.3s ease;
}

.header.scrolled .logo {
    height: 70px;
}

/* Navegação Desktop */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ibee-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Contato Header */
.header-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.contact-link:hover {
    color: var(--ibee-primary);
}

.contact-icon {
    margin-right: 8px;
    color: var(--ibee-primary);
    font-size: 16px;
}

/* Menu Mobile */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: rgba(255,255,255,0.85);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(8px);
}

.mobile-menu-button.open .hamburger {
    background-color: transparent;
}

.mobile-menu-button.open .hamburger::before {
    transform: rotate(45deg);
}

.mobile-menu-button.open .hamburger::after {
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(151,111,64,0.15);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
    padding-top: 80px;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-link {
    display: block;
    padding: 13px 28px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background-color: rgba(151, 111, 64, 0.1);
    border-left: 2px solid var(--ibee-primary);
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    padding: 13px 28px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    background: rgba(151, 111, 64, 0.12);
    border-top: 1px solid rgba(151,111,64,0.2);
    transition: all 0.3s ease;
}

.mobile-contact-link i {
    margin-right: 10px;
    color: var(--ibee-primary);
}

.mobile-contact-link:hover {
    background: rgba(151, 111, 64, 0.22);
    color: #fff;
}


/* ============================================ */
/* SECTION DIVIDER */
/* ============================================ */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 0;
    background: #0a0a0a;
}

.divider-line {
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(151,111,64,0.4), transparent);
}

.divider-dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(151,111,64,0.35);
}

.divider-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(151,111,64,0.25);
    border-radius: 50%;
    color: var(--ibee-primary);
    font-size: 11px;
    background: rgba(151,111,64,0.07);
}

/* ============================================ */
/* SLOGAN SECTION */
/* ============================================ */
.slogan-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    padding: 100px 6%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.slogan-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(151,111,64,0.09) 0%, transparent 65%);
    pointer-events: none;
}

.slogan-container {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Pills: Caiu · Molhou · Quebrou */
.slogan-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.slogan-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    cursor: default;
}

.slogan-pill:hover {
    background: rgba(151,111,64,0.1);
    border-color: rgba(151,111,64,0.3);
    color: rgba(255,255,255,0.9);
}

.slogan-pill-icon {
    width: 28px;
    height: 28px;
    background: rgba(151,111,64,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--ibee-primary);
    flex-shrink: 0;
}

.slogan-separator {
    font-size: 28px;
    color: rgba(151,111,64,0.3);
    margin: 0 12px;
    line-height: 1;
    user-select: none;
}

/* Headline principal */
.slogan-headline {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    line-height: 1;
    margin-bottom: 28px;
}

.slogan-ibee {
    font-size: clamp(64px, 10vw, 110px);
    font-weight: 900;
    letter-spacing: -4px;
    background: linear-gradient(135deg, var(--ibee-primary) 0%, #d4a76a 40%, var(--ibee-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sloganGold 5s linear infinite;
}

.slogan-resolve {
    font-size: clamp(64px, 10vw, 110px);
    font-weight: 900;
    letter-spacing: -4px;
    color: #ffffff;
}

@keyframes sloganGold {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.slogan-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 40px;
}

.slogan-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: linear-gradient(135deg, var(--ibee-primary), var(--ibee-primary-dark));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 36px rgba(151,111,64,0.4);
    border: 1px solid rgba(151,111,64,0.3);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}

.slogan-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: 0.5s;
}

.slogan-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 50px rgba(151,111,64,0.55);
    color: #fff;
    text-decoration: none;
}

.slogan-cta:hover::before {
    left: 100%;
}

/* ============================================ */
/* SEÇÃO SOBRE */
/* ============================================ */
.sobre {
    background: linear-gradient(160deg, #0d0d0d 0%, #161616 60%, #0a0a0a 100%);
    text-align: center;
    padding: 120px 30px;
    position: relative;
    overflow: hidden;
}

.sobre::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(151,111,64,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.conteudo-sobre {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.conteudo-sobre h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 40%, var(--ibee-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conteudo-sobre p {
    max-width: 620px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-weight: 400;
}

/* Botão "Saiba mais!" */
.btn-sobre {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--ibee-primary), var(--ibee-primary-dark));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 8px 30px rgba(151,111,64,0.35);
    border: 1px solid rgba(151,111,64,0.3);
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 0.3px;
}

.btn-sobre:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(151,111,64,0.5);
    color: #fff;
    text-decoration: none;
}

/* ============================================ */
/* SEÇÃO DIFERENCIAIS */
/* ============================================ */
.diferenciais {
    background: #111111;
    padding: 100px 8%;
    color: white;
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/produtos.png') no-repeat center center / cover;
    opacity: 0.07;
    pointer-events: none;
}

.diferenciais::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(151,111,64,0.5), transparent);
}

.textos-diferenciais {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(151,111,64,0.15);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    backdrop-filter: blur(10px);
}

.item:hover {
    background: rgba(151,111,64,0.08);
    border-color: rgba(151,111,64,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.item h4 {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ibee-primary);
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.icone-diferencial {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(58%) sepia(30%) saturate(500%) hue-rotate(10deg);
}

.item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.75;
    text-shadow: none;
}

/* ============================================ */
/* SEÇÃO DADOS (CONTADORES) */
/* ============================================ */
.dados {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 80px 20px;
    text-align: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.dados::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(151,111,64,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.bloco-dado {
    flex: 1;
    min-width: 200px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.bloco-dado + .bloco-dado::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(151,111,64,0.4), transparent);
}

.bloco-dado:hover {
    transform: translateY(-5px);
}

.bloco-dado h3 {
    font-size: 56px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--ibee-primary), #c9924e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.bloco-dado p {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-top: 0;
}

.bloco-dado p::before {
    display: none;
}

/* ============================================ */
/* SEÇÃO PRODUTOS APPLE - COM ALTERAÇÕES */
/* ============================================ */
.apple-repair-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.apple-repair-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(151,111,64,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--ibee-primary), #c9924e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    display: none;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    width: 240px;
    padding: 110px 20px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    margin-top: 80px;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-12px);
    background: rgba(151,111,64,0.08);
    border-color: rgba(151,111,64,0.35);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(151,111,64,0.1);
}

/* IMAGENS DOS PRODUTOS - PADRONIZADAS */
.product-image {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: auto;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(151,111,64,0.2));
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* AJUSTES ESPECÍFICOS PARA CADA PRODUTO */
.product-image.iphone-image {
    width: 160px;
}

.product-image.ipad-image {
    width: 170px;
    top: -55px;
}

.product-image.apple-watch-image {
    width: 150px;
}

.product-image.macbook-image {
    width: 170px;
    top: -55px;
}

.card:hover .product-image {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(151,111,64,0.35));
}

.product-name {
    font-size: 1.2em;
    color: #fff;
    margin: 10px 0 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* BOTÕES DE ORÇAMENTO */
.btn-quote {
    display: inline-block;
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--ibee-primary), var(--ibee-primary-dark));
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(151,111,64,0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.btn-quote:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(151,111,64,0.5);
    color: white !important;
}

/* ============================================ */
/* SEÇÃO GOOGLE REVIEWS (ELFSIGHT) */
/* ============================================ */
.google-reviews-section {
    background: #111111;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(151,111,64,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.google-reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.google-reviews-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ibee-primary);
    margin-bottom: 16px;
}

.google-reviews-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #fff 40%, var(--ibee-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* CARROSSEL DE CLIENTES */
/* ============================================ */
.clientes-carrossel {
    background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.clientes-carrossel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(151,111,64,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.clientes-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.clientes-container h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 40%, var(--ibee-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitulo {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.carrossel-quadrado {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 48px 0 0;
    padding: 8px 0;
}

.carrossel-quadrado::before,
.carrossel-quadrado::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carrossel-quadrado::before {
    left: 0;
    background: linear-gradient(to right, #0d0d0d, transparent);
}

.carrossel-quadrado::after {
    right: 0;
    background: linear-gradient(to left, #0d0d0d, transparent);
}

.carrossel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: calc(180px * 12);
}

.cliente-quadrado {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
    margin: 0 6px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(151,111,64,0.15);
}

.cliente-quadrado:hover {
    transform: scale(1.08);
    z-index: 2;
    border-color: rgba(151,111,64,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.cliente-quadrado img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cliente-quadrado:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 6)); }
}

/* ============================================ */
/* SEÇÃO IPAD */
/* ============================================ */
.ipad-section {
    background: linear-gradient(160deg, #0a0a0a 0%, #161616 60%, #0d0d0d 100%);
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 6%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    overflow: hidden;
}

.ipad-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 20% 50%, rgba(151,111,64,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.ipad-container {
    max-width: 360px;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.ipad-image {
    width: 100%;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(151,111,64,0.15));
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.ipad-container:hover .ipad-image {
    transform: translateY(-8px) rotate(-2deg);
}

.content-below {
    text-align: left;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.content-below h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.content-below .black-text {
    color: #fff;
}

.content-below .gold-text {
    background: linear-gradient(135deg, var(--ibee-primary), #c9924e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-below p.black-text {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.8;
    -webkit-text-fill-color: unset;
    background: none;
    margin-bottom: 32px;
}

.cta-container {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Botões "Orçamento" e "Serviços" */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--ibee-primary), var(--ibee-primary-dark));
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 8px 30px rgba(151,111,64,0.35);
    border: 1px solid rgba(151,111,64,0.3);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(151,111,64,0.5);
    color: white !important;
    text-decoration: none !important;
}

.cta-button.secondary {
    background: transparent;
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

a.cta-button,
a.cta-button:hover,
a.cta-button:focus,
a.cta-button:visited {
    color: white !important;
    text-decoration: none !important;
    outline: none;
}

/* ============================================ */
/* MAPA DE LOCALIZAÇÃO */
/* ============================================ */
.mapa-localizacao {
    width: 80%;
    margin: 30px auto 0;
    max-width: 1000px;
}

.mapa-localizacao iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: var(--ibee-shadow);
    display: block;
}

/* ============================================ */
/* RODAPÉ */
/* ============================================ */
.footer-ibee {
    background: #0a0a0a;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-ibee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(151,111,64,0.6), transparent);
}

.footer-ibee::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(151,111,64,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding: 0;
}

.footer-title {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 0;
}

.footer-title::after {
    display: none;
}

.footer-contacts p,
.footer-hours p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
}

.footer-contacts p a,
.footer-hours p a {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
    pointer-events: none;
}

.footer-contacts i,
.footer-hours i {
    color: var(--ibee-primary);
    font-size: 14px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    padding: 4px;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-4px);
    border-color: rgba(151,111,64,0.5);
    background: rgba(151,111,64,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.footer-copyright {
    text-align: center;
    padding-top: 24px;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* ============================================ */
/* BOTÕES FLUTUANTES */
/* ============================================ */
:root {
    --ibee-primary: #976f40;
    --ibee-primary-dark: #7a5a33;
    --ibee-dark: #212121;
    --ibee-light: #ffffff;
    --whatsapp-green: #976f40;
    --whatsapp-green-dark: #7a5a33;
}

.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ibee-primary), var(--ibee-primary-dark));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.534);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-green-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-icon {
    position: relative;
    z-index: 2;
    color: var(--ibee-light);
    font-size: 28px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--ibee-dark);
    color: var(--ibee-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Efeito de onda ao clicar */
@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-btn:active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--whatsapp-green);
    border-radius: 50%;
    animation: wave 0.6s ease-out;
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================ */
/* ANIMAÇÕES E ESTADOS */
/* ============================================ */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.nav-link.active {
    color: var(--ibee-primary) !important;
}

.nav-link.active::after {
    width: 100% !important;
    background-color: var(--ibee-primary) !important;
}

/* Header mobile show/hide */
@media (max-width: 992px) {
    .desktop-nav,
    .header-contact { display: none; }
    .mobile-menu-button { display: block; }
}

@media (max-width: 768px) {
    .header { padding: 12px 0; }
    .logo { height: 62px; }
}

/* ============================================ */
/* HERO SECTION - APPLE STYLE                  */
/* ============================================ */
.hero-apple {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 40%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 0;
}

.hero-apple::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(151,111,64,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(151,111,64,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(151, 111, 64, 0.6);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-120vh) scale(0.5); opacity: 0; }
}

.hero-content-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px 0;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
}

.hero-text-block {
    flex: 1;
    align-self: center;
    padding-bottom: 60px;
    max-width: 580px;
    opacity: 0;
    transform: translateX(-50px);
    animation: heroSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ibee-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(151,111,64,0.4);
    border-radius: 20px;
    background: rgba(151,111,64,0.08);
}

.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    color: #f5f5f7;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #c8a96e 0%, #976f40 50%, #f0d090 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(245,245,247,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #976f40, #c8a96e);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(151,111,64,0.4);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(151,111,64,0.55);
    color: #fff;
    text-decoration: none;
}

.hero-btn-primary:hover::before { opacity: 1; }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.08);
    color: rgba(245,245,247,0.9);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-phone-mockup {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    opacity: 0;
    animation: heroPhoneIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    width: 640px;
    max-width: 640px;
    align-self: flex-end;
    overflow: visible;
    margin-bottom: -80px;
}

@keyframes heroPhoneIn {
    from { opacity: 0; transform: translateY(80px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-phone-glow {
    position: absolute;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151,111,64,0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite alternate;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

@keyframes glowPulse {
    from { transform: scale(0.9); opacity: 0.6; }
    to { transform: scale(1.1); opacity: 1; }
}

.hero-phone-img {
    width: 600px;
    max-width: 100%;
    filter: drop-shadow(0 -20px 60px rgba(151,111,64,0.25)) drop-shadow(0 40px 80px rgba(0,0,0,0.7));
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(151,111,64,0.8), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================ */
/* iPHONE ANIMATION CARD SECTION              */
/* ============================================ */
.iphone3d-section {
    position: relative;
    background: #151515;
    padding: 100px 40px 120px;
    overflow: hidden;
}

.iphone3d-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(151,111,64,0.5), transparent);
}

/* ─── Section Header ─── */
.iphone3d-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.iphone3d-eyebrow-sec {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ibee-primary);
    margin-bottom: 16px;
}

.iphone3d-title-sec {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 800;
    color: #f5f5f7;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.iphone3d-grad-sec {
    background: linear-gradient(135deg, #c8a96e, #976f40, #f0d090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iphone3d-sub-sec {
    color: rgba(245,245,247,0.5);
    font-size: 17px;
    line-height: 1.6;
}

/* ─── Cards Wrapper ─── */
.iphone-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

/* ─── Card base (igual ao repositório) ─── */
.iphone-card {
    position: relative;
    width: 300px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.5s ease;
    transition-delay: 0.5s;
    cursor: pointer;
}

.iphone-card:hover {
    width: 600px;
    transition-delay: 0.5s;
}

/* ─── Circle that expands on hover ─── */
.iphone-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #191919;
    border: 8px solid var(--clr);
    transition: 0.5s, background 0.5s;
    transition-delay: 0.75s, 1s;
    filter: drop-shadow(0 0 10px var(--shadow)) drop-shadow(0 0 60px var(--shadow));
}

.iphone-card:hover .iphone-circle::before {
    transition-delay: 0.5s;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--clr2);
    border: 8px solid var(--clr2);
}

/* ─── iBee logo inside circle ─── */
.iphone-logo {
    position: relative;
    width: 120px;
    transition: 0.5s;
    transition-delay: 0.5s;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    z-index: 1;
}

.iphone-card:hover .iphone-logo {
    transform: scale(0);
    transition-delay: 0s;
}

/* ─── iPhone product image ─── */
.iphone-product-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(315deg);
    height: 300px;
    transition: 0.5s ease-in-out;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    z-index: 2;
    pointer-events: none;
}

.iphone-card:hover .iphone-product-img {
    transition-delay: 0.75s;
    top: 25%;
    left: 75%;
    height: 420px;
    transform: translate(-50%, -50%) scale(1) rotate(5deg);
}

/* ─── Content text that appears on hover ─── */
.iphone-content {
    position: absolute;
    width: 40%;
    left: 20%;
    padding: 20px;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
    z-index: 3;
}

.iphone-card:hover .iphone-content {
    transition-delay: 0.75s;
    opacity: 1;
    visibility: visible;
    left: 20px;
}

.iphone-content h2 {
    color: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 2.4em;
    line-height: 1em;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.iphone-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.iphone-content a {
    position: relative;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.iphone-content a:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .iphone-cards-wrapper { gap: 24px; }
    .iphone-card { width: 260px; height: 310px; }
    .iphone-card:hover { width: 500px; }
    .iphone-circle::before { width: 250px; height: 250px; }
    .iphone-product-img { height: 250px; }
    .iphone-card:hover .iphone-product-img { height: 370px; top: 25%; left: 73%; }
}

@media (max-width: 768px) {
    .iphone3d-section { padding: 60px 16px 80px; }
    .iphone-cards-wrapper { flex-direction: column; align-items: center; gap: 24px; }
    .iphone-card { width: 90vw; max-width: 340px; height: 340px; }
    .iphone-card:hover { width: 90vw; max-width: 340px; }
    .iphone-circle::before { width: 260px; height: 260px; }
    .iphone-logo { width: 100px; }
    .iphone-card:hover .iphone-logo { transform: scale(0); }
    .iphone-product-img { height: 240px; }
    .iphone-card:hover .iphone-product-img {
        top: 18%;
        left: 68%;
        height: 320px;
        transform: translate(-50%, -50%) scale(1) rotate(5deg);
    }
    .iphone-content { width: 52%; left: 5%; }
    .iphone-content h2 { font-size: 1.7em; }
    .iphone-content p { font-size: 12px; }
    .iphone-card:hover .iphone-content { left: 14px; }
}

@media (max-width: 480px) {
    .iphone-card { width: 92vw; max-width: 320px; height: 300px; }
    .iphone-card:hover { width: 92vw; max-width: 320px; }
    .iphone-circle::before { width: 220px; height: 220px; }
    .iphone-card:hover .iphone-product-img {
        top: 20%;
        left: 65%;
        height: 270px;
    }
    .iphone-content { width: 50%; }
    .iphone-content h2 { font-size: 1.4em; }
    .iphone-content a { padding: 8px 14px; font-size: 12px; }
}

/* ─── old iphone3d classes removed (replaced by iphone-card system) ─── */

/* ============================================ */
/* ============================================ */
/* NOSSAS UNIDADES SECTION                    */
/* ============================================ */
.unidades-section {
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 60%, #0d0d0d 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.unidades-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(151,111,64,0.5), transparent);
}

.unidades-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(151,111,64,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.unidades-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.unidades-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ibee-primary);
    margin-bottom: 16px;
}

.unidades-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.unidades-highlight {
    background: linear-gradient(135deg, #976f40, #c8a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unidades-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    line-height: 1.6;
}

.unidades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.unidade-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.unidade-card:hover {
    border-color: rgba(151,111,64,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(151,111,64,0.15);
    transform: translateY(-6px);
}

.unidade-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #976f40, #c8a96e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(151,111,64,0.4);
}

.unidade-badge.athenas {
    background: linear-gradient(135deg, #212121, #424242);
}

.unidade-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.unidade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.unidade-card:hover .unidade-img {
    transform: scale(1.07);
}

.unidade-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px;
    background: linear-gradient(to top, rgba(151,111,64,0.9) 0%, transparent 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.athenas-overlay {
    background: linear-gradient(to top, rgba(30,30,30,0.9) 0%, transparent 100%);
}

.unidade-info {
    padding: 28px;
}

.unidade-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--ibee-primary);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.athenas-tag {
    color: rgba(255,255,255,0.5);
}

.unidade-nome {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.unidade-desc {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.unidade-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
}

.unidade-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.unidade-detail-item i {
    color: var(--ibee-primary);
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.unidade-map {
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.unidade-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #976f40, #c8a96e);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(151,111,64,0.3);
}

.unidade-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(151,111,64,0.45);
    color: #fff;
    text-decoration: none;
}

.athenas-cta {
    background: linear-gradient(135deg, rgba(151,111,64,0.25), rgba(151,111,64,0.1));
    border: 1px solid rgba(151,111,64,0.35);
    box-shadow: none;
}

.athenas-cta:hover {
    background: linear-gradient(135deg, rgba(151,111,64,0.4), rgba(151,111,64,0.2));
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ─── In-view animations ─── */
.unidade-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.unidade-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.unidade-card:nth-child(2) {
    transition-delay: 0.15s;
}

/* ============================================ */
/* RESPONSIVE - NEW SECTIONS                  */
/* ============================================ */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 24px 0;
        align-items: center;
        min-height: auto;
    }
    .hero-text-block { max-width: 100%; align-self: auto; padding-bottom: 40px; }
    .hero-phone-mockup { max-width: 480px; width: 100%; margin-bottom: -50px; }
    .hero-phone-img { width: 440px; }
    .hero-cta-group { justify-content: center; }
    .hero-subtitle { max-width: 100%; }

    /* Sobre */
    .sobre { padding: 80px 30px; }
    .conteudo-sobre h2 { font-size: 2.2rem; }

    /* Diferenciais */
    .textos-diferenciais { grid-template-columns: 1fr; gap: 20px; }
    .diferenciais { padding: 80px 6%; }

    /* Dados */
    .dados { padding: 60px 20px; }
    .bloco-dado + .bloco-dado::before { display: none; }
    .bloco-dado h3 { font-size: 42px; }

    /* Products */
    .cards-container { gap: 20px; }
    .card { width: 200px; }

    /* iPad section */
    .ipad-section { flex-direction: column; align-items: center; text-align: center; gap: 40px; padding: 80px 6%; }
    .ipad-container { max-width: 280px; }
    .content-below { text-align: center; }
    .cta-container { justify-content: center; }

    /* Slogan Section */
    .slogan-ibee, .slogan-resolve { font-size: 72px; letter-spacing: -3px; }
    .slogan-section { padding: 80px 6%; }

    /* Unidades */
    .unidades-grid { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-apple { min-height: auto; padding: 100px 0 0; }
    .hero-title { font-size: 36px; }
    .hero-eyebrow { font-size: 12px; }
    .hero-phone-img { width: 360px; }
    .hero-phone-mockup { margin-bottom: -40px; }
    .hero-scroll-indicator { display: none; }

    /* Slogan Section */
    .slogan-ibee, .slogan-resolve { font-size: 56px; letter-spacing: -2px; }
    .slogan-pill { font-size: 13px; padding: 8px 16px; }
    .slogan-section { padding: 70px 6%; }

    /* Sobre */
    .sobre { padding: 70px 24px; }
    .conteudo-sobre h2 { font-size: 1.9rem; }
    .conteudo-sobre p { font-size: 1rem; }

    /* Diferenciais */
    .diferenciais { padding: 70px 5%; }
    .item { padding: 28px 22px; }

    /* Dados */
    .dados { flex-direction: column; padding: 60px 24px; }
    .bloco-dado { width: 100%; max-width: 320px; margin: 0 auto; padding: 24px 20px; }
    .bloco-dado h3 { font-size: 48px; }

    /* Produtos */
    .apple-repair-section { padding: 70px 20px; }
    .section-title { font-size: 1.7rem; letter-spacing: -0.5px; }
    .cards-container { gap: 50px 16px; }
    .card { width: 150px; padding: 80px 14px 24px; margin-top: 60px; }
    .product-image { width: 130px; }
    .product-image.iphone-image { width: 110px; }
    .product-name { font-size: 1rem; color: rgba(255,255,255,0.9); }
    .btn-quote { padding: 9px 16px; font-size: 11px; }

    /* Google Reviews */
    .google-reviews-section { padding: 70px 16px; }
    .google-reviews-title { font-size: 1.8rem; }

    /* Clientes carrossel */
    .clientes-carrossel { padding: 70px 0; }
    .clientes-container h1 { font-size: 1.6rem; }
    .clientes-container { padding: 0 20px; }

    /* iPad section */
    .ipad-section { flex-direction: column; padding: 70px 24px; gap: 32px; text-align: center; }
    .ipad-container { max-width: 220px; }
    .content-below h1 { font-size: 1.7rem; }
    .cta-container { justify-content: center; }

    /* iPhone 3d section */
    .iphone3d-section { padding: 80px 20px; }
    .iphone3d-title-sec { font-size: 28px; }
    .iphone3d-sub-sec { font-size: 14px; }

    /* Unidades */
    .unidades-section { padding: 70px 20px; }
    .unidades-title { font-size: 28px; }
    .unidade-map iframe { height: 180px; }

    /* Footer */
    .footer-row { flex-direction: column; gap: 32px; }
    .footer-col { text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .social-icons { justify-content: center; }
    .footer-contacts p,
    .footer-hours p { justify-content: center; }
    .footer-ibee { padding: 50px 0 24px; }
}

@media (max-width: 480px) {
    /* Hero buttons */
    .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-title { font-size: 28px; }
    .hero-phone-img { width: 320px; }
    .hero-phone-mockup { margin-bottom: -20px; }

    /* Sobre */
    .sobre { padding: 60px 20px; }
    .conteudo-sobre h2 { font-size: 1.7rem; }

    /* Diferenciais */
    .diferenciais { padding: 60px 5%; }

    /* Dados */
    .bloco-dado h3 { font-size: 40px; }

    /* Produtos cards - 2 por linha */
    .cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 12px; }
    .card { width: 100%; padding: 70px 10px 20px; margin-top: 50px; }
    .product-image { width: 110px; }
    .product-image.iphone-image { width: 90px; }
    .apple-repair-section { padding: 60px 16px; }
    .section-title { font-size: 1.4rem; }

    /* iPad section */
    .ipad-section { padding: 60px 20px; }
    .content-below h1 { font-size: 1.4rem; }
    .cta-button { padding: 12px 22px; font-size: 14px; }

    /* Slogan Section */
    .slogan-ibee, .slogan-resolve { font-size: 42px; letter-spacing: -1.5px; }
    .slogan-headline { gap: 10px; }
    .slogan-separator { display: none; }
    .slogan-pills { gap: 8px; }
    .slogan-pill { font-size: 12px; padding: 7px 14px; }
    .slogan-section { padding: 60px 5%; }

    /* Carrossel */
    .cliente-quadrado { width: 140px; height: 140px; }

    /* Unidade card */
    .unidade-detail-item span { font-size: 13px; }
    .unidade-cta { font-size: 14px; padding: 12px 20px; }

    /* Footer */
    .footer-container { padding: 0 16px; }
    .footer-ibee { padding: 40px 0 20px; }
}