/* Clean Typography Resets */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Text Shadow for enhanced readability */
.text-shadow-lg {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Smooth scrolling offset */
html {
    scroll-padding-top: 4rem;
}

/* Subtle grid pattern for professional texture */
.bg-grid-pattern {
    background-image: radial-gradient(#003366 0.8px, transparent 0.8px);
    background-size: 24px 24px;
}

/* Print styles for business context */
@media print {
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
    header, footer {
        break-inside: avoid;
    }
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

/* Custom font size override for hero title */
h1 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 900 !important;
    font-size: 52px !important;      /* Ajuste fino para ficar igual à foto */
    line-height: 1.05 !important;
    letter-spacing: 1px !important;
}

/* Smooth subtle fade-up animation */
.hero-title-anim {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.9s cubic-bezier(.17,.67,.47,1.03);
}

.hero-title-anim.reveal {
    opacity: 1;
    transform: translateY(0);
}
