/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #faf7f2;
    /* Warm off-white */
    --bg-card: #ffffff;
    --text-primary: #2c2c2c;
    --text-secondary: #5a5a5a;
    --accent-primary: #8b0000;
    /* Deep red from logo */
    --accent-secondary: #22c55e;
    /* Green accent */
    --accent-yellow: #eab308;
    /* Yellow accent */
    --navbar-bg: rgba(255, 255, 255, 0.95);

    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Constants */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    /* Less rounded for traditional feel */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(139, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #680900;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background-color: var(--accent-primary);
    color: #ffffff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--navbar-bg);
    border-bottom: 2px solid var(--accent-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.25rem 5%;
}

.logo-img {
    height: 121px;
    /* Adjust according to logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.15rem;
}

.nav-links a:not(.btn-tuboleta-nav):hover {
    color: var(--accent-primary);
}

.btn-tuboleta-nav {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-secondary));
    color: #000000 !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700 !important;
}

.btn-tuboleta-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 5% 0;
    background: radial-gradient(circle at top right, rgba(234, 179, 8, 0.1) 0%, rgba(15, 17, 21, 1) 50%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-primary);
    background: linear-gradient(to right, var(--accent-primary), #fff);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}