/* ============================================ */
/* CSS COMPLETO OPTIMIZADO - HOYO EN UNO */
/* Sin duplicaciones, limpio y organizado */
/* ============================================ */

/* ============================================ */
/* 1. RESET Y VARIABLES */
/* ============================================ */

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

:root {
    --primary: #1a472a;
    --primary-light: #2d6e3e;
    --secondary: #7cb342;
    --accent: #c9b55a;
    --dark: #0a1f12;
    --light: #f5f9f6;
    --gray: #6b7280;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient-1: linear-gradient(135deg, #1a472a 0%, #2d6e3e 100%);
    --gradient-2: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* ============================================ */
/* 2. NAVBAR */
/* ============================================ */

.navbar-elegant {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a472a;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-elegant.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.navbar-logo img {
    height: 70px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.navbar-elegant.scrolled .navbar-logo img {
    height: 60px;
}

.navbar-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: #c9b55a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-logo-subtitle {
    font-size: 10px;
    color: rgba(201, 181, 90, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Menú */
.navbar-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9b55a;
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: #c9b55a;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Botón carrito */
.navbar-cart-btn {
    background: #2d6e3e;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-cart-btn:hover {
    background: #3a8a4f;
    border-color: #c9b55a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.navbar-cart-icon {
    font-size: 18px;
}

/* ✅ PONER ESTO: */
.navbar-cart-badge {
    background: #c9b55a;
    color: #1a472a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(201, 181, 90, 0.4);
    position: relative; /* ✅ AGREGAR ESTO */
}

/* Toggle hamburguesa */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: #c9b55a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle:hover span {
    background: #d4c26a;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================ */
/* 3. HERO SECTION */
/* ============================================ */

.hero {
    position: relative;
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 85px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.4) 0%, rgba(45, 110, 62, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(26, 71, 42, 0.7);
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.hero-feature {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* ============================================ */
/* 4. CONTAINER Y TABS */
/* ============================================ */

.container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.category-tabs::-webkit-scrollbar {
    height: 6px;
}

.category-tabs::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.tab {
    background: var(--white);
    border: 2px solid #e5e7eb;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.tab:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* ============================================ */
/* 5. SERVICE CARDS */
/* ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-header {
    background: var(--gradient-2);
    color: var(--white);
    padding: 1.5rem;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
}

.service-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.price-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
    min-height: 180px;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.service-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Reservation Section */
.reservation-section {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.reservation-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-wrapper.full-width {
    grid-column: 1 / -1;
}

.input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

.input-field {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem;
    justify-content: center;
}

.qty-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.qty-btn:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

.qty-display {
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================ */
/* 6. CART SIDEBAR */
/* ============================================ */

.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active,
.cart-sidebar.open,
.cart-sidebar.show {
    right: 0;
}

.cart-header {
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
}

.close-cart {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-cart:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--primary);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.cart-item-title {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.cart-item-remove,
.remove-item-btn {
    background: var(--danger);
    color: var(--white);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-remove:hover,
.remove-item-btn:hover {
    transform: scale(1.1);
    background: #dc2626;
}

.cart-item-details {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--gray);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.cart-footer {
    padding: 1.5rem;
    background: var(--light);
    border-top: 2px solid #e5e7eb;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.cart-total-label {
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-btn.primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.payment-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.payment-btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================ */
/* 7. MODALS */
/* ============================================ */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    padding: 2rem 2rem 1.5rem 2rem;
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
    color: #1a472a;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-close {
    background: #f3f4f6;
    border: none;
    color: #6b7280;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a472a;
    box-shadow: 0 0 0 4px rgba(26, 71, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Reservation Summary */
.reservation-summary {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.reservation-summary h3 {
    color: #166534;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.summary-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid #bbf7d0;
}

.summary-item strong {
    color: #1a472a;
    display: block;
    margin-bottom: 0.5rem;
}

.summary-total {
    background: #1a472a;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.25rem;
}

.confirm-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #1a472a 0%, #2d6e3e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.3);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.4);
}

/* Success Modal */
.success-modal .modal-content {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    margin: 1rem 0;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-modal h2 {
    color: #1a472a;
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
}

.success-details {
    background: #f9fafb;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.reservation-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin: 0.75rem 0;
    border: 2px solid #e5e7eb;
}

.total-amount {
    background: linear-gradient(135deg, #1a472a 0%, #2d6e3e 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.next-steps {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #fbbf24;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.whatsapp-btn-large {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-large:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    width: 100%;
    padding: 1rem 1.5rem;
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* ============================================ */
/* 8. WHATSAPP BUTTON */
/* ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4);
}

/* ============================================ */
/* 9. NOTIFICATION */
/* ============================================ */

.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10003;
    transition: top 0.3s ease;
    min-width: 300px;
    border: 2px solid #10b981;
}

.notification.show {
    top: 120px;
}

/* ============================================ */
/* 10. ANIMACIONES */
/* ============================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ============================================ */
/* 11. SCROLLBAR */
/* ============================================ */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ============================================ */
/* 12. RESPONSIVE - TABLETS (968px) */
/* ============================================ */

@media (max-width: 968px) {
    /* Navbar */
    .navbar-container {
        padding: 0.75rem 1.5rem;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: #1a472a;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-menu a {
        font-size: 18px;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu a::after {
        display: none;
    }
}

/* ============================================ */
/* 13. RESPONSIVE - MÓVIL (768px) */
/* ============================================ */

@media (max-width: 768px) {
    /* Navbar */
    .navbar-container {
        padding: 0.75rem 1rem;
    }
    
    .navbar-logo img {
        height: 55px;
    }
    
    .navbar-logo-text {
        display: none;
    }
    
    .navbar-cart-btn {
        padding: 0.7rem 1.4rem;
        font-size: 13px;
    }
    
    /* Hero */
    .hero {
        min-height: 65vh;
        padding: 4rem 1rem 4rem;
        margin-top: 75px;
    }
    
    .hero-content {
        padding: 1rem 1.25rem;
        max-width: 90%;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-feature {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Container */
    .container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    /* Service Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-features {
        min-height: auto;
    }
    
    .input-group {
        grid-template-columns: 1fr;
    }
    
    /* Cart */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    /* Modals */
    .modal-content {
        max-width: 95%;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Notification */
    .notification {
        min-width: calc(100% - 40px);
        left: 20px;
        transform: none;
    }
    
    .notification.show {
        top: 100px;
    }
}

/* ============================================ */
/* 14. RESPONSIVE - MÓVIL PEQUEÑO (480px) */
/* ============================================ */

@media (max-width: 480px) {
    .navbar-logo img {
        height: 50px;
    }
    
    .navbar-cart-btn {
        padding: 0.6rem 1.2rem;
        font-size: 12px;
    }
    
    .navbar-cart-btn span:not(.navbar-cart-icon):not(.navbar-cart-badge) {
        display: none;
    }
    
    .navbar-cart-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        border: 2px solid white;
    }
    
    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 3rem 0.75rem 3rem;
    }
    
    .hero h1 {
        font-size: 1.25rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    /* Modals */
    .modal-header {
        padding: 1.25rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
    
    .success-icon {
        font-size: 3.5rem;
    }
}

/* ============================================ */
/* 15. UTILIDADES */
/* ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
/* ============================================ */
/* ESTILOS PARA SECCIONES ADICIONALES */
/* Agregar al final del styles.css */
/* ============================================ */

/* ============================================ */
/* VIDEO SHOWCASE SECTION */
/* ============================================ */

.video-showcase {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid #86efac;
}

.video-showcase-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.video-showcase-subtitle {
    font-size: 1.1rem;
    color: #166534;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: var(--dark);
}

.video-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #c9b55a 0%, #d4c26a 100%);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10;
    letter-spacing: 0.5px;
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* ============================================ */
/* INFO SECTION - INFORMACIÓN DEL JUEGO */
/* ============================================ */

.info-section {
    background: var(--white);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.info-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-left-color: var(--accent);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3::before {
    content: '⛳';
    font-size: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card ul li {
    padding: 0.75rem 0;
    color: var(--gray);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-card ul li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================ */
/* HISTORY SECTION */
/* ============================================ */

.history-section {
    background: linear-gradient(135deg, #1a472a 0%, #2d6e3e 100%);
    color: var(--white);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '📖';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 15rem;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.history-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.history-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    text-align: justify;
    margin-bottom: 1.5rem;
}

.history-content p:last-child {
    margin-bottom: 0;
}

/* ============================================ */
/* CONTACT SECTION */
/* ============================================ */

.contact-section {
    background: var(--white);
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--light);
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-section > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #86efac;
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.contact-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================ */
/* RESPONSIVE - TABLET (768px) */
/* ============================================ */

@media (max-width: 768px) {
    .video-showcase {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .video-showcase-title {
        font-size: 2rem;
    }

    .video-showcase-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .video-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Info Section */
    .info-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .info-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    /* History Section */
    .history-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .history-title {
        font-size: 2rem;
    }

    .history-content p {
        font-size: 1rem;
        text-align: left;
    }

    /* Contact Section */
    .contact-section {
        padding: 2.5rem 1.5rem;
        margin: 3rem 0;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-item {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* RESPONSIVE - MÓVIL (480px) */
/* ============================================ */

@media (max-width: 480px) {
    .video-showcase {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .video-showcase-title {
        font-size: 1.75rem;
    }

    .video-showcase-subtitle {
        font-size: 0.9rem;
    }

    .video-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .video-container {
        border-radius: 12px;
    }

    /* Info Section */
    .info-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .info-title {
        font-size: 1.75rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-card ul li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    /* History Section */
    .history-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .history-title {
        font-size: 1.75rem;
    }

    .history-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Contact Section */
    .contact-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ============================================ */
/* ANIMACIONES ADICIONALES */
/* ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-showcase,
.info-section,
.history-section,
.contact-section {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================ */
/* ACCESIBILIDAD */
/* ============================================ */

.video-container video:focus {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

.contact-item:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Ajuste de márgenes para mejor flujo */
.golf-courses-section {
    margin-top: 3rem;  /* Separación de los precios */
    margin-bottom: 2rem; /* Separación del video */
}

.video-showcase {
    margin-top: 2rem; /* Reduce el margen superior */
}
/* ============================================ */
/* CONTACTO (Mantener como está) */
/* ============================================ */

.contact-section {
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0 0 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-section > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid #86efac;
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.contact-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================ */
/* FOOTER MINIMALISTA - VERDE OSCURO */
/* ============================================ */

.footer-minimal {
    background: linear-gradient(135deg, #1a472a 0%, #0f2d1a 100%);
    color: var(--white);
    padding: 2.5rem 2rem 1.5rem;
    margin-top: 0;
}

.footer-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

/* Logo + Eslogan */
.footer-branding {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 2.5rem;
}

.footer-logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Horario pequeño */
.footer-schedule {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ============================================ */
/* REDES SOCIALES DEL FOOTER */
/* Reemplazar los estilos de .footer-social */
/* ============================================ */

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
}

/* Facebook - Azul oficial */
.social-link.facebook {
    background: #1877F2;
}

.social-link.facebook:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Instagram - Gradiente oficial */
.social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #d16d1e, #c42569, #6d2a91, #4149b8);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(221, 42, 123, 0.4);
}

/* WhatsApp - Verde oficial */
.social-link.whatsapp {
    background: #25D366;
}

.social-link.whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-social {
        gap: 0.875rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

.checkout-btn {
    background: #009ee3; /* Azul Mercado Pago */
    /* o */
    background: #25d366; /* Verde WhatsApp style */
    /* o */
    background: var(--primary); /* Tu color principal */
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Copyright */
.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright strong {
    color: rgba(255,255,255,0.8);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0 0 0;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-section > p {
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-item {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    .footer-minimal {
        padding: 2rem 1.5rem 1.25rem;
    }

    .footer-logo-icon {
        font-size: 2rem;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-schedule {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2.5rem 1rem;
        margin: 2rem 0 0 0;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-minimal {
        padding: 1.75rem 1rem 1rem;
    }

    .footer-logo-icon {
        font-size: 1.75rem;
    }

    .footer-logo-text {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

