:root {
    --primary-orange: #F5A623;
    --text-white: #ffffff;
    --bg-header: #1B2E4B4D;
    --bg-blur: 10px;
    --header-height: 0px;
}

body {
    margin: 0;
    padding-top: 100px;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.main-header {
    position: fixed;
    top: 0;
    height: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-header);
    backdrop-filter: blur(var(--bg-blur));
    -webkit-backdrop-filter: blur(var(--bg-blur));
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

main {
  margin-top: var(--header-height);
}

.header-container {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.site-logo {
    flex-shrink: 0;
    width: 200px;
    /* Adjust according to logo size */
}

.logo-wrapper img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Center Content: Social + Nav */
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-white);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--text-white);
    color: #333;
    transform: scale(1.1);
}

/* Navigation Menu */
.main-navigation {
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    opacity: 0.9;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    opacity: 1;
    border-bottom: 3px solid var(--text-white);
}

/* Header Right Actions */
.header-right {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    justify-content: flex-end;
}

/* Contact Button */
.btn-contacto {
    background-color: var(--primary-orange);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 48, 0.4);
    font-size: 1.1rem;
}

.btn-contacto:hover {
    transform: translateY(-3px);
    background-color: #f39c12;
    box-shadow: 0 6px 20px rgba(255, 179, 48, 0.5);
}

/* Responsive */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .header-container {
        padding: 0 20px;
    }

    .site-logo,
    .header-right {
        width: auto;
    }
}