@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@300;400;500;600;700;900&display=swap');

/* =============================================
   Midas Publi — Stylesheet
   Fonte: Google Sans (Product Sans)
   ============================================= */



/* =============================================
   Variáveis de Design
   ============================================= */
:root {
    --gold:       #D4AF37;
    --gold-dark:  #fcd450;
    --gold-light: #F4E4BC;
    --navy:       #0A1128;
    --navy-light: #1C2541;
    --gray:       #3A506B;
    --white:      #FFFFFF;
    --cream:      #F8F6F1;
    --accent:     #C9A050;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   Header & Navegação
   ============================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-30px, -30px) scale(1.05); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy);
    animation: fadeInUp 0.8s ease;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Google Sans', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =============================================
   Formulário de Orçamento (Hero Form Card)
   ============================================= */
.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.4rem 2rem;
    box-shadow: 0 20px 60px rgba(10, 17, 40, 0.12), 0 4px 16px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.form-card-title {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
    text-align: center;
}

.form-card-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 1.6rem;
    font-weight: 400;
}

.form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 0 0 1.6rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    font-family: 'Google Sans', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(10, 17, 40, 0.12);
    border-radius: 10px;
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: var(--cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder { color: #bbb; }

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    background: var(--white);
}

.select-wrap { position: relative; }

.select-wrap::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--gold);
    pointer-events: none;
}

select option[value=""] { color: #bbb; }
select option            { color: var(--navy); }

.btn-form {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border: none;
    border-radius: 10px;
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1.4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-form:hover::before { opacity: 1; }
.btn-form:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-form span { position: relative; z-index: 1; }

.btn-form.loading span::after {
    content: '...';
    animation: dots 1s infinite;
}

@keyframes dots {
    0%, 100% { content: '.'; }
    33%       { content: '..'; }
    66%       { content: '...'; }
}

.form-privacy {
    font-size: 0.72rem;
    color: #bbb;
    text-align: center;
    margin-top: 0.8rem;
}

/* Mensagem de sucesso */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.form-success .success-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
}

.form-success h3 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Mensagem de erro inline */
.form-error-msg {
    font-size: 0.75rem;
    color: #e53e3e;
    margin-top: 0.4rem;
    display: none;
}

/* =============================================
   Services Section
   ============================================= */
.services {
    padding: 6rem 2rem;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--cream);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* =============================================
   Cost Comparison Section
   ============================================= */
.cost-section {
    padding: 6rem 2rem;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cost-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cost-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cost-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.cost-intro h2 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cost-intro p {
    font-size: 1.2rem;
    color: var(--gold-light);
    max-width: 800px;
    margin: 0 auto;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.role-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.role-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.role-number {
    width: 40px; height: 40px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.role-card h3 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.role-card p {
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.role-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.total-cost {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.total-cost h3 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.total-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.total-description {
    font-size: 1.1rem;
    color: var(--navy-light);
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
    background: var(--cream);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
    padding: 6rem 2rem;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--gold); }

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
}

.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* =============================================
   Footer
   ============================================= */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gold-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--gold-light);
}

/* =============================================
   Responsividade — Tablet (max 968px)
   ============================================= */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1       { font-size: 2.6rem; }
    .tagline            { font-size: 1.1rem; }
    .hero-description   { font-size: 1rem; }
    .hero-buttons       { justify-content: center; }
    .hero-stats         { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .stat-number        { font-size: 2rem; }

    .nav-links          { display: none; }

    .section-title h2   { font-size: 2.2rem; }
    .section-title p    { font-size: 1rem; }

    .service-card h3    { font-size: 1.4rem; }

    .cost-intro h2      { font-size: 2.2rem; }
    .cost-intro p       { font-size: 1rem; }
    .role-card h3       { font-size: 1.3rem; }
    .role-price         { font-size: 1.4rem; }
    .total-cost h3      { font-size: 1.8rem; }
    .total-amount       { font-size: 3rem; }

    .cta-banner h2      { font-size: 2rem; }
    .cta-banner p       { font-size: 1rem; }

    .faq-question       { font-size: 0.95rem; padding: 1.4rem 1.6rem; }

    .footer-content     { grid-template-columns: 1fr; text-align: center; }
    .footer-brand h3    { font-size: 1.8rem; }
    .footer-section h4  { font-size: 1.2rem; }
}

/* =============================================
   Responsividade — Mobile (max 640px)
   ============================================= */
@media (max-width: 640px) {
    body                { font-size: 15px; }

    /* Hero */
    .hero               { padding: 6rem 1.2rem 3rem; }
    .hero-text h1       { font-size: 1.9rem; line-height: 1.15; }
    .tagline            { font-size: 1rem; }
    .hero-description   { font-size: 0.9rem; }
    .hero-buttons       { flex-direction: column; align-items: center; }
    .btn-primary,
    .btn-secondary      { width: 100%; text-align: center; font-size: 0.95rem; padding: 0.85rem 1.5rem; }
    .hero-stats         { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 2rem; padding-top: 2rem; }
    .stat-number        { font-size: 1.6rem; }
    .stat-label         { font-size: 0.75rem; }

    /* Form */
    .form-card          { padding: 1.6rem 1rem; }
    .form-card-title    { font-size: 1.3rem; }
    .form-card-subtitle { font-size: 0.78rem; }

    /* Serviços */
    .services           { padding: 3.5rem 1.2rem; }
    .section-title h2   { font-size: 1.6rem; }
    .section-title p    { font-size: 0.9rem; }
    .service-card       { padding: 2rem 1.4rem; }
    .service-card h3    { font-size: 1.2rem; }
    .service-card p     { font-size: 0.88rem; }
    .service-icon       { width: 56px; height: 56px; margin-bottom: 1rem; }

    /* Investimento */
    .cost-section       { padding: 3.5rem 1.2rem; }
    .cost-intro h2      { font-size: 1.6rem; }
    .cost-intro p       { font-size: 0.9rem; }
    .role-card          { padding: 1.4rem; }
    .role-card h3       { font-size: 1.1rem; }
    .role-card p        { font-size: 0.85rem; }
    .role-price         { font-size: 1.3rem; }
    .total-cost         { padding: 2rem 1.2rem; }
    .total-cost h3      { font-size: 1.4rem; }
    .total-amount       { font-size: 2.4rem; }
    .total-description  { font-size: 0.85rem; }

    /* CTA Banner */
    .cta-banner         { padding: 3rem 1.2rem; }
    .cta-banner h2      { font-size: 1.5rem; }
    .cta-banner p       { font-size: 0.9rem; margin-bottom: 1.8rem; }

    /* FAQ */
    .faq                { padding: 3.5rem 1.2rem; }
    .faq-question       { font-size: 0.88rem; padding: 1.2rem 1.2rem; }
    .faq-answer-content { font-size: 0.88rem; padding: 0 1.2rem 1.4rem; }
    .faq-icon           { font-size: 1.2rem; }

    /* Footer */
    footer              { padding: 3rem 1.2rem 1.5rem; }
    .footer-brand h3    { font-size: 1.5rem; }
    .footer-brand p     { font-size: 0.88rem; }
    .footer-section h4  { font-size: 1.1rem; margin-bottom: 1rem; }
    .footer-links li    { font-size: 0.88rem; }
    .footer-bottom      { font-size: 0.78rem; padding-top: 1.5rem; }
}

/* =============================================
   Responsividade — Mobile pequeno (max 390px)
   ============================================= */
@media (max-width: 390px) {
    .hero-text h1       { font-size: 1.65rem; }
    .section-title h2   { font-size: 1.4rem; }
    .cost-intro h2      { font-size: 1.4rem; }
    .cta-banner h2      { font-size: 1.3rem; }
    .total-amount       { font-size: 2rem; }
    .hero-stats         { grid-template-columns: repeat(3, 1fr); }
    .stat-number        { font-size: 1.3rem; }
}

/* =============================================
   Ícones SVG — service cards e footer
   ============================================= */
.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--navy);
    flex-shrink: 0;
}

.success-icon svg {
    stroke: var(--white);
}

.footer-links svg {
    color: var(--gold-light);
    stroke: var(--gold-light);
}

/* =============================================
   Botões Flutuantes (FAB)
   ============================================= */
.fab {
    position: fixed;
    bottom: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.fab:hover {
    transform: translateY(-4px);
}

/* WhatsApp — esquerda */
.fab-whatsapp {
    left: 2rem;
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp:hover {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

/* Voltar ao topo — direita */
.fab-top {
    right: 2rem;
    background: var(--navy);
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(10, 17, 40, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.fab-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-top:hover {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

@media (max-width: 480px) {
    .fab { width: 48px; height: 48px; bottom: 1.2rem; }
    .fab-whatsapp { left: 1.2rem; }
    .fab-top { right: 1.2rem; }
}

/* =============================================
   Correção FAB — fix para hospedagem compartilhada
   ============================================= */
.fab-whatsapp,
.fab-top {
    position: fixed !important;
    bottom: 2rem !important;
    z-index: 99999 !important;
}

.fab-whatsapp {
    left: 2rem !important;
    background-color: #25D366 !important;
    color: #ffffff !important;
    fill: #ffffff !important;
}

.fab-whatsapp svg {
    fill: #ffffff !important;
    stroke: none !important;
    color: #ffffff !important;
    width: 28px !important;
    height: 28px !important;
    display: block;
    flex-shrink: 0;
}

.fab-top {
    right: 2rem !important;
    background-color: var(--navy) !important;
    color: var(--gold) !important;
}

.fab-top svg {
    stroke: var(--gold) !important;
    fill: none !important;
    width: 24px !important;
    height: 24px !important;
    display: block;
    flex-shrink: 0;
}

.fab-top:hover {
    background-color: var(--gold) !important;
    color: var(--navy) !important;
}

.fab-top:hover svg {
    stroke: var(--navy) !important;
}

@media (max-width: 480px) {
    .fab-whatsapp,
    .fab-top {
        bottom: 1.2rem !important;
        width: 48px !important;
        height: 48px !important;
    }
    .fab-whatsapp { left: 1.2rem !important; }
    .fab-top      { right: 1.2rem !important; }
}

/* =============================================
   Service card com link
   ============================================= */
.service-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card--link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-link {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    transition: gap 0.2s ease;
}

.service-card--link:hover .service-link {
    text-decoration: underline;
}

/* Remove sublinhado do card linkado — apenas .service-link fica estilizado */
.service-card--link,
.service-card--link h3,
.service-card--link p {
    text-decoration: none !important;
}

.service-card--link:hover h3 {
    color: var(--navy);
}