@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1D5D63;
    --secondary-color: #D97706; /* Darker gold for better contrast on light */
    --bg-main: #F8FAFC;
    --bg-secondary: #F1F5F9;
    --card-bg: #FFFFFF;
    --text-main: #0F172A; /* Slate 900 for high readability */
    --text-muted: #576574;
    --nav-bg: rgba(255, 255, 255, 0.85);
    --border-light: #E2E8F0;
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Premium Navbar */
.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: var(--shadow-soft);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-wibar {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-wibar:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 93, 99, 0.2);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(248, 250, 252, 0.8), rgba(248, 250, 252, 0.95)), url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 45px 35px;
    border-radius: 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

/* Section Decor */
.section-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-main);
}

/* Visual Sections */
.img-wrapper {
    position: relative;
    padding: 15px;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: var(--primary-color);
    border-radius: 30px;
    opacity: 0.1;
    z-index: -1;
}

.social-img {
    border-radius: 40px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.15);
    border: 8px solid white;
}

.alt-bg {
    background-color: var(--bg-secondary);
}

/* Owner Section */
.owner-perks {
    background-color: var(--text-main);
    color: white;
    padding: 80px;
    border-radius: 50px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.owner-perks .section-title, .owner-perks .text-muted {
    color: white !important;
}

.owner-perks .section-tag {
    color: var(--secondary-color);
}

/* Contact Form */
#contato {
    margin-bottom: 120px;
}

.contact-card {
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.form-control {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #CBD5E1;
    background-color: #F8FAFC;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(29, 93, 99, 0.1);
    background-color: white;
}

/* Footer */
.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

footer {
    background-color: white;
    padding: 100px 0 50px;
    border-top: 1px solid var(--border-light);
}

.social-links a {
    background: var(--bg-secondary);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .owner-perks { padding: 40px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .contact-card { padding: 30px; }
}
