:root {
    --gold: #C5A021;
    --gold-glow: rgba(197, 160, 33, 0.3);
    --ivory: #F9F7F2;
    --deep: #121212;
    --white: #ffffff;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; }

body { 
    background-color: #F9F7F2; /* Cor Marfim/Off-white */
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    color: var(--deep); 
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.video-container {
    position: fixed;
    inset: 0;
    z-index: -2; /* Atrás de tudo */
    overflow: hidden;
}

.bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Faz o vídeo preencher a tela sem distorcer */
    filter: grayscale(0.5) brightness(1.2); /* Deixa o vídeo mais discreto */
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(249, 247, 242, 0.85); /* Cor marfim com transparência */
    /* Isso garante que o texto preto/dourado continue legível */
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.align-center { align-items: center; }

/* Background */
.luxury-bg { position: fixed; inset: 0; z-index: -1; background: #fff; }
.silk-texture { position: absolute; inset: 0; background: url('https://www.transparenttextures.com/patterns/silk.png'); opacity: 0.3; }
.gold-orb { position: absolute; top: -10%; right: -10%; width: 500px; height: 500px; background: var(--gold); filter: blur(180px); opacity: 0.05; border-radius: 50%; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 25px 0; transition: 0.4s; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: 2px; font-size: 1.2rem; }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--deep); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.btn-nav { border: 1px solid var(--gold); padding: 10px 25px; color: var(--gold) !important; }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; }
.tag-gold { font-weight: 700; letter-spacing: 5px; color: var(--gold); font-size: 0.7rem; display: block; margin-bottom: 20px; }
.title-main { font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 400; line-height: 1.1; margin-bottom: 30px; }
.italic-gold { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); }
.subtitle { font-size: 1.2rem; font-weight: 300; max-width: 650px; margin: 0 auto 50px; color: #555; }

/* Botões */
.btn-gold { background: var(--deep); color: var(--ivory); text-decoration: none; padding: 20px 50px; font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 2px; transition: 0.5s; display: inline-block; }
.btn-gold:hover { background: var(--gold); transform: translateY(-5px); box-shadow: 0 15px 30px var(--gold-glow); }

.status-luxury { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 30px; font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #888; }
.pulse-gold { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 var(--gold-glow); } 70% { transform: scale(1.5); box-shadow: 0 0 0 10px rgba(0,0,0,0); } 100% { transform: scale(1); } }

/* Sobre & Gold Frame */
.gold-frame { position: relative; padding: 15px; border: 1px solid var(--gold); display: inline-block; }
.gold-frame img { width: 100%; max-width: 400px; display: block; filter: grayscale(0.2) contrast(1.1); }
.about-text h2 { font-family: 'Cinzel', serif; font-size: 2.5rem; margin-bottom: 25px; }
.social-links a { text-decoration: none; color: var(--gold); font-weight: 700; font-size: 12px; letter-spacing: 2px; margin-right: 30px; text-transform: uppercase; }

/* Portfolio (456x217) */
.title-sm { font-family: 'Cinzel', serif; font-size: 3rem; margin-bottom: 60px; }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.p-frame { position: relative; width: 100%; aspect-ratio: 456 / 217; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.p-frame img { width: 100%; height: 100%; object-fit: cover; transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1); filter: brightness(0.9); }
.p-card:hover img { transform: scale(1.1); }
.p-overlay { position: absolute; inset: 0; background: rgba(197, 160, 33, 0.2); opacity: 0; display: flex; align-items: center; justify-content: center; transition: 0.4s; }
.p-card:hover .p-overlay { opacity: 1; }
.p-overlay span { border: 1px solid #fff; color: #fff; padding: 10px 20px; font-family: 'Cinzel'; font-size: 10px; letter-spacing: 2px; }
.p-meta { padding: 20px 0; }
.p-meta h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; }
.p-meta p { font-size: 10px; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-top: 5px; }

/* Contato */
.contact-card { background: var(--white); padding: 80px; border: 1px solid rgba(197, 160, 33, 0.1); max-width: 900px; margin: 0 auto; box-shadow: 0 40px 100px rgba(0,0,0,0.03); }
.luxury-form { margin-top: 50px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea { background: #fafafa; border: 1px solid #eee; padding: 20px; font-family: inherit; font-size: 14px; }
input:focus { border-color: var(--gold); }

/* Footer */
.footer { background: var(--deep); color: #666; padding: 60px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }

/* Responsive */
@media (max-width: 900px) {
    .grid-2, .grid-3, .portfolio-grid, .form-row { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .nav-links { display: none; }
}
/* --- HERO UPGRADE --- */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: transparent;
}

.hero-inner {
    z-index: 10;
    position: relative;
}

/* Linhas Finas (Efeito Arquitetura) */
.hero-lines .v-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 33, 0.2), transparent);
    z-index: 1;
}
.v-line.l { left: 15%; }
.v-line.r { right: 15%; }

/* Tag Superior */
.tag-gold-fancy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 30px;
}

/* Título */
.title-premium {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    letter-spacing: -3px;
    color: var(--deep);
}

.title-premium span { display: block; }

/* Divisória Elegante */
.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 40px auto;
}

/* Subtítulo */
.subtitle-premium {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #666;
    font-weight: 300;
    line-height: 1.4;
}

/* Botão Titanium */
.btn-titanium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 45px;
    background: var(--deep);
    color: var(--ivory);
    text-decoration: none;
    font-family: 'Cinzel';
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 0;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--deep);
}

.btn-titanium:hover {
    background: transparent;
    color: var(--deep);
    border-color: var(--gold);
}

/* Status Pill (Apple Style) */
.status-pill {
    margin-top: 30px;
    padding: 10px 20px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(197, 160, 33, 0.2);
    background: rgba(255, 255, 255, 0.5);
}

.pulse-container { position: relative; width: 10px; height: 10px; }
.pulse-gold { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; display: block; }
.pulse-ring {
    position: absolute;
    inset: -4px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: ring-pulse 2s infinite;
}

@keyframes ring-pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Glow que segue o mouse */
.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 33, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
}
/* --- GRID DE PORTFÓLIO --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px; /* Espaço entre os cards */
    margin-top: 60px;
}

.p-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Trava da Imagem: 456x217 */
.p-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 456 / 217; /* Garante que todas as fotos fiquem iguais */
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(197, 160, 33, 0.1);
}

.p-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher o espaço sem distorcer */
    filter: grayscale(0.5);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover da Imagem */
.p-card:hover .p-frame img {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.05);
}

/* Badge Técnica */
.p-tech-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: rgba(18, 18, 18, 0.85);
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    padding: 5px 12px;
    letter-spacing: 2px;
    border: 1px solid var(--gold);
}

/* Metadados (Texto abaixo da imagem) */
.p-meta-tech {
    margin-top: 25px;
    text-align: left;
}

/* Linha técnica de alinhamento */
.p-top-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.p-code { font-family: monospace; font-size: 11px; color: var(--gold); }
.p-line { flex-grow: 1; height: 1px; background: rgba(197, 160, 33, 0.2); }
.p-status { font-size: 9px; font-weight: 800; color: #888; letter-spacing: 1px; }

.p-meta-tech h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--deep);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.p-meta-tech p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    min-height: 42px; /* TRAVA DE ALINHAMENTO: Garante que 2 linhas de texto ocupem o mesmo espaço */
}

/* Responsividade */
@media (max-width: 850px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}
/* --- CONVERSION GRID --- */
.conversion-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

/* Specialist Side */
.image-stack {
    position: relative;
    display: inline-block;
}

.gold-layer {
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1px solid var(--gold);
    z-index: 1;
}

.main-profile-img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: contrast(1.1) sepia(0.2);
    border: 1px solid var(--white);
}

.titanium-stamp {
    position: absolute;
    top: 40px;
    right: -40px;
    background: var(--deep);
    color: var(--gold);
    padding: 8px 15px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    z-index: 3;
    transform: rotate(90deg);
}

.specialist-info { margin-top: 50px; }
.cinzel-title { font-family: 'Cinzel'; font-size: 2.5rem; letter-spacing: -1px; }
.logic-tag { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: 4px; }
.bio-short { color: #666; font-size: 1.1rem; margin: 20px 0; max-width: 450px; font-weight: 300; }

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--deep);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: 0.3s;
}
.contact-link:hover { color: var(--gold); }

/* Form Side (Glass Card) */
.glass-card {
    background: var(--white);
    padding: 60px;
    border: 1px solid rgba(197, 160, 33, 0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.04);
    position: relative;
    min-height: 500px;
}

.card-header h3 { font-family: 'Cinzel'; font-size: 1.8rem; margin-bottom: 15px; }
.gold-line-short { width: 40px; height: 2px; background: var(--gold); margin-bottom: 40px; }

.field { margin-bottom: 25px; border-bottom: 1px solid #eee; transition: 0.4s; }
.field:focus-within { border-bottom-color: var(--gold); }

.field input, .field textarea {
    width: 100%; border: none; padding: 15px 0; background: transparent; font-family: inherit; font-size: 16px;
}

.btn-submit-luxury {
    width: 100%; padding: 22px; background: var(--deep); color: white; border: none;
    font-family: 'Cinzel'; letter-spacing: 2px; display: flex; align-items: center;
    justify-content: center; gap: 15px; cursor: pointer; transition: 0.5s;
}
.btn-submit-luxury:hover { background: var(--gold); transform: translateY(-3px); }

/* Success State Styles */
.success-wrap { text-align: center; }
.success-icon { 
    position: relative; width: 80px; height: 80px; margin: 0 auto 30px;
    display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.success-icon .ring { 
    position: absolute; inset: 0; border: 1px solid var(--gold); border-radius: 50%;
    animation: ringGrow 1s ease-out infinite; 
}
@keyframes ringGrow { from { transform: scale(0.8); opacity: 1; } to { transform: scale(1.5); opacity: 0; } }

.success-details { margin-top: 30px; padding-top: 30px; border-top: 1px solid #eee; }
.direct-wa { 
    color: var(--deep); text-decoration: none; font-weight: 700; border: 1px solid var(--deep);
    padding: 10px 25px; display: inline-block; margin-top: 20px; font-size: 12px;
}

@media (max-width: 1000px) {
    .conversion-grid { grid-template-columns: 1fr; gap: 60px; }
    .main-profile-img { width: 100%; height: 400px; }
}
/* --- SERVICES UPGRADE --- */
.services-premium {
    background: var(--white);
    position: relative;
}

/* Alerta Google */
.google-alert {
    max-width: 800px;
    margin: 40px auto 80px;
    padding: 30px;
    background: var(--ivory);
    border: 1px dashed var(--gold);
    position: relative;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.alert-content i { color: var(--gold); width: 40px; height: 40px; }
.alert-content p { font-size: 1.1rem; color: #444; line-height: 1.5; }
.alert-content strong { color: var(--deep); border-bottom: 2px solid var(--gold); }

/* Grid de Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.s-card-luxury {
    padding: 50px 40px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 33, 0.1);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.s-card-luxury:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(197, 160, 33, 0.08);
}

.s-card-luxury.featured {
    background: var(--deep);
    color: var(--white);
    border-color: var(--deep);
    transform: scale(1.05);
    z-index: 2;
}

.s-card-luxury.featured h3, .s-card-luxury.featured p { color: var(--white); }
.s-card-luxury.featured .gold-txt { color: var(--gold); }

/* Ícones e Listas */
.card-icon { margin-bottom: 30px; color: var(--gold); }
.card-icon i { width: 45px; height: 45px; }

.s-card-luxury h3 {
    font-family: 'Cinzel';
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.s-card-luxury p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
}

.card-list { list-style: none; margin-top: auto; }
.card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gold);
}

.performance-tag {
    margin-top: 25px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px;
    text-align: center;
}

/* Tech Specs Row */
.tech-specs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.spec-item { display: flex; gap: 20px; }
.spec-num {
    font-family: 'Cinzel';
    font-size: 1.5rem;
    color: rgba(197, 160, 33, 0.3);
    font-weight: 700;
}

.spec-txt h4 { font-family: 'Cinzel'; font-size: 1rem; margin-bottom: 5px; }
.spec-txt p { font-size: 0.85rem; color: #888; }

@media (max-width: 1000px) {
    .services-grid, .tech-specs-row { grid-template-columns: 1fr; }
    .s-card-luxury.featured { transform: scale(1); }
}
.main-profile-img {
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.6s ease; /* Transição para escala e cor */
}

.main-profile-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05); /* Aumenta a imagem em 5% */
}
:root {
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f2d47e 50%, #b8860b 100%);
    --dark-bg: #050505;
    --glass: rgba(255, 255, 255, 0.03);
}

.footer-premium {
    background-color: var(--dark-bg);
    position: relative;
    padding-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

/* Brilho de fundo para profundidade */
.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Logo e Brand */
.logo-premium {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}
.logo-premium span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-pitch {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #999;
    max-width: 300px;
    margin-bottom: 25px;
}

/* Links Sociais */
.social-links {
    display: flex;
    gap: 15px;
}
.social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    color: #fff;
}
.social-item:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Navegação Interna */
.footer-nav h4, .footer-contact h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}
.footer-nav ul li {
    margin-bottom: 12px;
}
.footer-nav ul li a {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    transition: 0.3s;
}
.footer-nav ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Badge de Status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 100, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00ff64;
    border: 1px solid rgba(0, 255, 100, 0.2);
    margin-top: 20px;
}
.dot {
    width: 8px;
    height: 8px;
    background: #00ff64;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff64;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.8rem;
    color: #666;
}
.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}
.legal-links a {
    color: #666;
    text-decoration: none;
}
.legal-links strong {
    color: #aaa;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand, .brand-pitch {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bottom-inner {
        flex-direction: column;
        gap: 15px;
    }
}
.whatsapp-luxury-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.wa-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

/* Estilo do ícone oficial */
.wa-icon-official {
    width: 28px !important; /* Um pouco maior para ver os detalhes */
    height: 28px !important;
    fill: #d4af37; /* Cor dourada TryWebDesign */
    display: block;
}

.wa-text {
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hover */
.whatsapp-luxury-btn:hover .wa-content {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.3);
}

.whatsapp-luxury-btn:hover .wa-icon-official {
    fill: #fff; /* O ícone fica branco no hover para dar destaque */
    transition: 0.3s;
}

/* Celular */
@media (max-width: 768px) {
    .wa-text { display: none; }
    .wa-content { padding: 15px; border-radius: 50%; }
}