:root {
    --primary-color: #0d1b2a; /* Azul Noche Profundo */
    --secondary-color: #1b263b; /* Azul Marino */
    --accent-gold: #e5b326; /* Dorado del logo */
    --accent-silver: #e0e1dd; /* Plateado/Blanco humo */
    --text-light: #ffffff;
    --text-gray: #778da9;
    --whatsapp-green: #25D366;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header */
header {
    background-color: rgba(13, 27, 42, 0.95);
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    border-radius: 50%; /* Hacerlo redondo */
    border: 4px solid #0056b3; /* Azul del local */
    box-shadow: 0 0 0 4px #FFC107, 0 5px 15px rgba(0,0,0,0.5); /* Borde amarillo y sombra */
    background-color: #000; /* Fondo negro para que integre la imagen */
    transition: transform 0.3s;
    margin-top: 10px; /* Para que sobresalga un poco hacia abajo si es necesario */
}

.logo-container img:hover {
    transform: scale(1.05);
}

.contact-btn {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.4), var(--primary-color)), url('assets/images/real_1.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.5rem;
    color: var(--accent-silver);
    max-width: 600px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-gold), #ffd700);
    color: var(--primary-color);
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(229, 179, 38, 0.3);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(229, 179, 38, 0.5);
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin: 60px 0 40px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-silver);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Services */
.services-section {
    padding: 20px 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-family: var(--font-heading);
    color: var(--accent-silver);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content h3 i {
    color: var(--accent-gold);
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    margin-bottom: 10px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content ul li i {
    color: var(--whatsapp-green);
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
}

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

/* Banner VIP */
.vip-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: 2px dashed var(--accent-gold);
    margin: 60px auto;
    max-width: 800px;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
}

.vip-banner h2 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 2rem;
}

/* Footer */
footer {
    background-color: #050a10;
    padding: 40px 5% 20px;
    text-align: center;
    border-top: 1px solid rgba(229, 179, 38, 0.2);
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.info-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.footer-bottom {
    color: #4a5d73;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .header .logo-container img {
        height: 50px;
    }
    .contact-btn span {
        display: none;
    }
}
