/* --- VARIÁVEIS E CORES --- */
:root {
    --vermelho: #e60000;
    --vermelho-neon: #ff0000;
    --vermelho-escuro: #8B0000;
    --preto: #0c0c0c;
    --preto-puro: #000000;
    --branco: #ffffff;
    --sombra: rgba(0, 0, 0, 0.1);
}

/* --- RESET E TIPOGRAFIA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif; /* Fonte Clássica */
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--branco);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 50px 0;
}

/* --- HEADER E LOGO --- */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: var(--preto);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* FC em Negrito e Resto Fino via Poppins */
.logo-brand {
    text-decoration: none;
    color: var(--branco);
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif !important;
}

.logo-brand strong {
    font-weight: 800;
}

.logo-brand span {
    font-weight: 300;
    color: var(--vermelho);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.btn-menu-outline {
    border: 1px solid var(--vermelho);
    padding: 8px 18px;
    border-radius: 30px;
    color: white !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-menu-outline:hover {
    background: var(--vermelho);
}

/* Ícones Sociais Vermelhos no Menu */
.nav-socials-red a {
    color: var(--vermelho);
    font-size: 1.2rem;
    margin-left: 10px;
    transition: 0.3s;
}

.nav-socials-red a:hover {
    color: var(--branco);
    transform: scale(1.1);
}

/* --- HERO SECTION --- */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin-bottom: 5px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px; /* Perto do título, longe do botão */
}

.btn-hero-outline-large {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--branco);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    background: transparent;
    transition: 0.3s;
}

.btn-hero-outline-large:hover {
    background: var(--vermelho);
    border-color: var(--vermelho);
}

/* --- BARRA DE STATUS (Rigor, Higiene, Montagem) --- */
.stats-bar {
    background: #fff;
    padding: 30px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px var(--sombra);
    border-radius: 10px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--vermelho);
    margin-bottom: 10px;
}

.stat-item span {
    font-weight: 700;
    display: block;
    font-size: 1.1rem;
}

/* --- SERVIÇOS (Corrigido: Lado a Lado e Botões) --- */
.dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-column {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border-bottom: 5px solid var(--vermelho);
    box-shadow: 0 10px 30px var(--sombra);
    text-align: center;
    transition: 0.3s;
}

.icon-main {
    font-size: 3rem;
    color: var(--vermelho);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    min-height: 100px;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-list i {
    color: var(--vermelho);
    margin-right: 10px;
}

.btn-outline-dark {
    display: inline-block;
    border: 2px solid var(--preto);
    color: var(--preto);
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    background: var(--preto);
    color: white;
}

/* --- COMPROMISSO (Com Detalhes em Vermelho) --- */
.about-header {
    margin-bottom: 20px;
}

.red-line {
    width: 60px;
    height: 4px;
    background: var(--vermelho);
    display: block;
    margin-bottom: 15px;
}

.map-card-premium {
    padding: 10px;
    background: white;
    border-radius: 15px;
    border: 1px solid var(--vermelho); /* Detalhe vermelho */
    box-shadow: 0 10px 30px var(--sombra);
}

/* --- PREÇOS (Corrigido: Grid Lado a Lado) --- */
.pricing-bg {
    background: var(--preto);
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Garante colunas */
    gap: 30px;
    margin-bottom: 30px;
}

.price-card-white {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.price-header {
    background: var(--vermelho);
    color: white;
    padding: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.p-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}

.p-row strong {
    color: var(--vermelho);
}

/* --- ATENDIMENTO (Neon LED e Botão Preto) --- */
.contact-box-premium {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--vermelho-neon);
    box-shadow: 0 0 15px var(--vermelho-neon), inset 0 0 5px var(--vermelho-neon); /* Efeito LED */
    transition: 0.3s;
}

.btn-neon-black {
    background: var(--preto-puro) !important;
    color: white !important;
    display: block;
    padding: 14px;
    border-radius: 5px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 700;
    border: 1.5px solid var(--vermelho-neon);
    box-shadow: 0 0 8px var(--vermelho-neon);
    transition: 0.4s;
}

.btn-neon-black:hover {
    background: var(--vermelho-escuro) !important;
    box-shadow: 0 0 20px var(--vermelho-neon);
}

/* --- MODAL (Com X Vermelho e Estilo) --- */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 50px 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 40px;
    color: var(--vermelho);
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

.city-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.city-item {
    background: #f4f4f4;
    padding: 12px;
    border-radius: 5px;
    font-weight: 700;
    border-left: 5px solid var(--vermelho);
    text-align: left;
}

/* --- WHATSAPP FLOAT (Arredondado com whats.png) --- */
.whatsapp-float-logo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 1000;
    border-radius: 50%;
    overflow: hidden; /* Corta a imagem em círculo */
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 2px solid white;
}

.whatsapp-float-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- FOOTER --- */
footer {
    background: var(--preto-puro);
    color: #888;
    padding: 40px 0;
    text-align: center;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .pricing-grid, .city-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}




/* --- HEADER DINÂMICO --- */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent; /* Começa transparente */
    transition: all 0.4s ease; /* Transição suave */
}

/* Classe que será adicionada via JavaScript ao rolar */
header.scrolled {
    background: var(--preto);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- TÍTULOS CENTRALIZADOS --- */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

/* Linha vermelha centralizada abaixo dos títulos */
.red-line-center {
    width: 60px;
    height: 4px;
    background: var(--vermelho);
    margin: 0 auto 15px; /* Centraliza a linha */
    display: block;
}

/* Ajuste na tabela de preços para garantir que o título da secção também centre */
.pricing-bg .section-title h2 {
    color: white;
}

/* --- AJUSTES PARA TELEMÓVEL (MOBILE) --- */
@media (max-width: 768px) {
    /* Ajuste do Nome da Empresa para não quebrar */
    .logo-brand {
        font-size: 1.1rem; /* Reduz o tamanho no telemóvel */
        white-space: nowrap;
    }

    header {
        padding: 15px 0;
    }

    /* Esconder links normais e preparar o menu lateral */
    .nav-links {
        position: fixed;
        right: -100%; /* Escondido à direita */
        top: 0;
        background: var(--preto);
        width: 80%; /* Ocupa quase toda a largura */
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: 0.5s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0; /* Mostra o menu */
    }

    /* Ativar Menu Hambúrguer */
    .hamburger {
        display: flex !important; /* Força o aparecimento */
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: white;
        transition: 0.3s;
    }

    /* Animação do Hambúrguer quando aberto */
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

    /* Ajuste da Hero para o texto não ficar gigante */
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }

    /* Tabelas e Contactos ocupam a largura toda */
    .price-grid, .dual-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- BOTÃO WHATSAPP CORRIGIDO --- */
.whatsapp-float-logo {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    z-index: 1000;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-float-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o whats.png preencha o círculo */
}



/* --- AJUSTE DOS CARTÕES DE ATENDIMENTO --- */
.contact-box-premium {
    display: flex;
    flex-direction: column; /* FORÇA TUDO PARA BAIXO (Vertical) */
    align-items: center;    /* Centraliza os elementos */
    padding: 40px 30px;
    text-align: center;
}

/* Títulos: Agendamento Principal e Secundário */
.contact-box-premium h4 {
    font-size: 1.6rem !important; /* Letras maiores */
    color: var(--vermelho) !important; /* Cor vermelha para destaque */
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Nome (Anny / Fábio) */
.contact-box-premium p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

/* Número de Telefone */
.contact-box-premium strong {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 20px; /* Espaço para o botão não colar no número */
    color: #000;
}

/* Ajuste no Botão para ocupar largura adequada */
.btn-neon-black {
    width: 100%;
    max-width: 250px; /* Não deixa o botão ficar gigante em telas largas */
    margin-top: 0;    /* O margin já foi controlado no strong */
}


























/* ESTILOS ESPECÍFICOS PARA A PÁGINA DE SERVIÇOS */
.sub-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.sub-hero h1 { font-size: 3rem; margin-bottom: 10px; }
.sub-hero p { font-size: 1.2rem; opacity: 0.8; }

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Cards na área clara */
.detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--vermelho);
    transition: 0.3s;
}
.detail-card:hover { transform: translateY(-5px); }
.detail-card i { font-size: 2rem; color: var(--vermelho); margin-bottom: 15px; display: block; }
.detail-card h4 { font-size: 1.4rem; margin-bottom: 10px; }
.detail-card p { font-size: 1rem; color: #555; line-height: 1.6; }

/* Cards na área escura */
.detail-card-dark {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    color: white;
    border-top: 5px solid var(--vermelho);
    transition: 0.3s;
}
.detail-card-dark:hover { background: rgba(255,255,255,0.1); }
.detail-card-dark i { font-size: 2rem; color: var(--vermelho); margin-bottom: 15px; display: block; }
.detail-card-dark h4 { font-size: 1.4rem; margin-bottom: 10px; color: white; }
.detail-card-dark p { font-size: 1rem; color: #ccc; line-height: 1.6; }

.text-center { text-align: center; }

@media (max-width: 768px) {
    .sub-hero h1 { font-size: 2.5rem; }
    .detail-card, .detail-card-dark { padding: 20px; }
}







/* DESIGN DE LUXO PARA AS TABELAS */
.price-table-container {
    overflow-x: auto; /* Garante que no telemóvel a tabela deslize se for preciso */
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--branco);
    color: var(--preto);
    border-radius: 12px;
    overflow: hidden; /* Corta as quinas para respeitar o border-radius */
}

.premium-table thead tr {
    background-color: var(--vermelho);
    color: white;
    text-align: left;
    font-weight: bold;
}

.premium-table th, .premium-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.premium-table tbody tr:nth-of-type(even) {
    background-color: #f8f8f8; /* Efeito zebra: linha cinza muito clara */
}

.premium-table tbody tr:hover {
    background-color: #fff0f0; /* Efeito hover: fica levemente avermelhado ao passar o rato */
    transition: 0.2s;
}

.premium-table td:last-child {
    font-weight: 700;
    color: var(--vermelho);
    text-align: right; /* Alinha o preço à direita para ficar mais limpo */
}

/* Disclaimer Box (Aviso por baixo da tabela) */
.disclaimer-box {
    background: #fff3cd; /* Amarelo clarinho de aviso */
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    color: #856404;
    font-size: 0.9rem;
}









/* EFEITO DE IMAGEM PRESA (PARALLAX FIXO) */
.sub-hero-fixo {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed; /* ESTA LINHA PRENDE A IMAGEM */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
}

.sub-hero-fixo h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 10px; 
    font-weight: bold;
}

.sub-hero-fixo p { 
    font-size: 1.2rem; 
    opacity: 0.9; 
}

/* Nota: Em alguns dispositivos móveis (iOS), o background-attachment: fixed pode não funcionar. 
   O código abaixo garante que ele se comporte bem em todos os lugares. */
@media (max-width: 1024px) {
    .sub-hero-fixo {
        background-attachment: scroll; /* Melhora a performance em telemóveis antigos */
    }
}



























/* =========================================
   ESTILOS GERAIS DE SUPORTE
   ========================================= */
:root {
    --vermelho: #e60000;
    --vermelho-neon: #ff0000;
    --vermelho-escuro: #4d0000;
    --preto: #0c0c0c;
    --preto-puro: #000000;
    --branco: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Times New Roman", Times, serif; }

/* --- LOGO (FC NEGRITO) --- */
.logo-brand { font-family: 'Poppins', sans-serif !important; font-weight: 800; color: white; text-decoration: none; }
.logo-brand span { font-weight: 300; color: var(--vermelho); }

/* =========================================
   SUB-HERO (PARALLAX)
   ========================================= */
.sub-hero-fixo {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin-top: 70px; /* Espaço para o menu fixo */
}

/* =========================================
   SECÇÃO DE PREÇOS (pricing-bg)
   ========================================= */
.pricing-bg { 
    background: var(--preto); 
    padding: 60px 0; 
}

/* Títulos Centralizados */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.red-line-center {
    width: 60px;
    height: 4px;
    background: var(--vermelho);
    margin: 0 auto 15px;
    display: block;
}

.section-title h2 {
    color: white;
    font-size: 2.5rem;
    text-transform: uppercase;
}

/* Container da Tabela */
.price-table-container {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-top: 6px solid var(--vermelho);
}

/* Tabela Premium */
.premium-table { 
    width: 100%; 
    border-collapse: collapse; 
}

.premium-table th { 
    background: #f8f8f8; 
    color: var(--preto); 
    padding: 20px; 
    text-align: left; 
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #eee;
}

.premium-table td { 
    padding: 15px 20px; 
    border-bottom: 1px solid #eee; 
    color: #333; 
    font-size: 1.1rem;
}

.premium-table td strong { color: var(--vermelho); }

.premium-table tr:nth-child(even) { background: #fafafa; }
.premium-table tr:hover { background: #fff0f0; transition: 0.3s; }

/* =========================================
   POSICIONAMENTO DO BOTÃO E AVISO
   ========================================= */
.btn-center-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column; /* FRASE ACIMA DO BOTÃO */
    align-items: center;    /* TUDO AO CENTRO */
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.disclaimer-box {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px; /* Espaçamento entre texto e botão */
    max-width: 700px;
    padding: 0 20px;
}

/* BOTÃO PRETO COM LED NEON */
.btn-neon-black {
    background: var(--preto-puro) !important;
    color: white !important;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--vermelho-neon);
    box-shadow: 0 0 10px var(--vermelho-neon);
    transition: 0.4s ease;
    display: inline-block;
}

.btn-neon-black:hover {
    background: var(--vermelho-escuro) !important;
    box-shadow: 0 0 25px var(--vermelho-neon);
    transform: translateY(-3px);
}

/* =========================================
   MODAL E WHATSAPP
   ========================================= */
.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 35px;
    color: var(--vermelho);
    cursor: pointer;
    font-weight: bold;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.city-item {
    background: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    font-weight: 700;
    border-left: 5px solid var(--vermelho);
}

/* WHATSAPP (whats.png arredondado) */
.whatsapp-float-logo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    z-index: 1000;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 2px solid white;
}

.whatsapp-float-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   AJUSTES MOBILE
   ========================================= */
@media (max-width: 768px) {
    .sub-hero-fixo {
        background-attachment: scroll; /* iOS fix */
        height: 40vh;
    }
    .section-title h2 { font-size: 1.8rem; }
    .premium-table th, .premium-table td { padding: 12px; font-size: 0.9rem; }
    .city-grid { grid-template-columns: 1fr; }
}



















/* =========================================
   ESTILOS EXCLUSIVOS: PÁGINA SOBRE NÓS
   ========================================= */

/* Content Wrapper */
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-info {
    flex: 1 1 500px;
}

.about-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

/* Layout da Imagem e Selo de Experiência */
.about-visual {
    flex: 1 1 400px;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.main-img-about {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    z-index: 2;
    border-radius: 20px; /* Caso uses uma foto em vez do logo */
}

/* Selo Flutuante de Experiência */
.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: var(--vermelho);
    color: var(--branco);
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(230, 0, 0, 0.4);
    z-index: 5;
    animation: floating 3s ease-in-out infinite; /* Efeito de flutuação */
}

.experience-badge strong {
    font-size: 2rem;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
}

/* Animação de Flutuação */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Alinhamento das Redes Sociais no Sobre */
.social-icons-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-item img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-item:hover img {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.2);
}

/* Ajustes de Responsividade */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-header {
        justify-content: center;
    }

    .social-icons-flex {
        justify-content: center;
    }

    .experience-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 30px;
        display: inline-block;
    }
    
    .about-info p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Espaçamento Extra para Seções de Valores */
.dual-grid .price-card-white {
    transition: 0.3s;
    cursor: default;
}

.dual-grid .price-card-white:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}