:root {
    --primary: #004a99;
    --secondary: #d4af37;
    --light: #f4f7f6;
    --dark: #333;
    --white: #ffffff;
    --success: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    padding: 10px 20px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Grid & Cards */
.section-title {
    text-align: center;
    margin: 50px 0;
    font-size: 2.5rem;
    color: var(--primary);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary);
    margin: 15px 0;
}

/* Buttons */
.btn, .btn-wa {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-wa {
    background: var(--success);
    color: var(--white);
    width: 100%;
    text-align: center;
}

.btn:hover { background: #003366; }
.btn-wa:hover { opacity: 0.9; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--success);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: var(--white);
    padding: 20px;
    z-index: 2000;
    display: none; /* Controlled by JS */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.btn-small {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: var(--secondary);
    color: #000;
    font-weight: bold;
}

.btn-alt {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.admin-notice-box {
    background: #fff;
    color: #333;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto 40px;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.admin-notice-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.admin-notice-box p {
    margin: 5px 0;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    line-height: 2;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 100px 20px;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .contact-container { grid-template-columns: 1fr; }
    nav { flex-direction: column; height: auto; padding: 20px; }
    .nav-links { flex-direction: column; text-align: center; }
}