/* VARIABLES GLOBALES */
:root {
    --green: #1B4D3E; 
    --lime: #4CAF50;
    --navy: #2c3e50;
    --dark: #222;
    --white: #fff;
    --alert: #e74c3c;
    --gray: #f4f6f8;
    --font: 'Montserrat', sans-serif;
}

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

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

/* BARRA DE NOTIFICACIÓN */
.notification-bar {
    background-color: var(--alert);
    color: white;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}
.bar-link { color: #fff; text-decoration: underline; font-weight: 800; margin-left: 5px; }

/* UTILIDADES */
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.narrow-container { max-width: 600px; } 
.center-all { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.center-text { text-align: center; }

/* NAVBAR */
.navbar { padding: 15px 0; background: var(--white); border-bottom: 1px solid #f0f0f0; }
.logo-img { height: 80px; width: auto; }

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh; 
    min-height: 600px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-pill {
    background: #FFD700; color: #000; padding: 6px 15px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 20px;
    text-transform: uppercase;
}
.hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; max-width: 700px; }
.btn-primary {
    background: var(--lime); color: var(--white); padding: 18px 40px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 1.2rem; transition: 0.3s;
    display: inline-block; box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); background: #43a047; }
.tiny-white { font-size: 0.9rem; margin-top: 25px; color: #ddd; font-weight: 500; }

/* TRUST SECTION */
.trust-intro { padding: 80px 0; background: #fff; text-align: left; }
.intro-grid { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.intro-text { flex: 1; min-width: 300px; }
.intro-image { flex: 1; min-width: 300px; }
.intro-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.green-text-small { color: var(--lime); font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; }
.intro-text h2 { color: var(--green); font-size: 2.2rem; margin: 10px 0 20px 0; font-weight: 800; }
.trust-list { list-style: none; margin-top: 20px; }
.trust-list li { margin-bottom: 10px; font-weight: 600; color: #444; }
.trust-list i { color: var(--lime); margin-right: 10px; }

/* PRICING */
.pricing { background: var(--gray); padding: 80px 0; }
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.price-card {
    background: var(--white); padding: 30px; border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); flex: 1; min-width: 280px; max-width: 350px;
    position: relative; transition: 0.3s;
}
.price-card:hover { transform: translateY(-5px); }
.popular { border: 3px solid var(--lime); transform: scale(1.05); z-index: 2; }
.popular-tag {
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--lime); color: white; padding: 5px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; border-radius: 10px 10px 0 0;
}
.price { font-size: 3rem; font-weight: 800; color: var(--green); margin: 15px 0; }
.price span { font-size: 1rem; color: #999; font-weight: 400; }
.features-list { list-style: none; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; text-align: left; }
.features-list li { margin-bottom: 10px; color: #555; }
.features-list i { color: var(--lime); margin-right: 8px; }
.full-btn { background: var(--lime); color: white; padding: 12px; border-radius: 8px; display: block; text-decoration: none; font-weight: 700; margin-top: 20px; }
.btn-outline { border: 2px solid #ddd; color: #666; padding: 12px; border-radius: 8px; display: block; text-decoration: none; font-weight: 700; margin-top: 20px; transition: 0.3s; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* REVIEWS & FAQ */
.reviews { padding: 80px 0; background: #fff; border-top: 1px solid #eee; }
.reviews-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; margin-top: 40px; }
.review-card { 
    background: #fdfdfd; padding: 25px; border-radius: 15px; border: 1px solid #f0f0f0;
    width: 100%; max-width: 400px; text-align: left; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.avatar-circle {
    width: 45px; height: 45px; background: #ddd; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem;
}
.user-info p { margin: 0; line-height: 1.2; }
.author-name { font-weight: 700; color: var(--dark); font-size: 1rem; }
.author-loc { font-size: 0.8rem; color: #888; }
.stars { color: #FFD700; margin-bottom: 10px; font-size: 0.9rem; }
.review-text { font-style: italic; color: #555; font-size: 0.95rem; }

/* FAQ SECTION ESTILOS */
.faq { padding: 80px 0; background: var(--white); border-top: 1px solid #eee; }
.faq-list { margin-top: 30px; text-align: left; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-item summary {
    padding: 20px; cursor: pointer; font-weight: 700; list-style: none; position: relative; color: var(--green);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 20px; font-weight: 700; font-size: 1.5rem; color: var(--lime);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content { padding: 0 20px 20px 20px; color: #555; font-size: 0.95rem; line-height: 1.6; }

/* BOOKING SECTION */
.contact { padding: 80px 0; background: var(--green); color: white; }
.booking-card { background: white; padding: 40px; border-radius: 15px; margin-top: 30px; color: var(--dark); }
.btn-yardbook {
    display: block; width: 100%; background: var(--navy); color: white;
    padding: 20px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1.2rem;
    transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-yardbook:hover { background: #34495e; transform: translateY(-2px); }

/* FOOTER */
.local-seo { padding: 50px 0; background: #fcfcfc; border-top: 1px solid #eee; }
.guarantee-badge i { font-size: 3rem; color: #FFD700; margin-bottom: 15px; }
.area-tags span { background: white; padding: 8px 15px; border-radius: 50px; margin: 5px; display: inline-block; border: 1px solid #eee; color: #666; font-size: 0.8rem; }

footer { 
    background: #111; color: #777; padding: 60px 0; font-size: 0.85rem; 
    border-top: 5px solid var(--green);
}
.footer-trust { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid #222; }
.trust-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; color: #444; margin-bottom: 15px; text-transform: uppercase; }
.payment-icons { display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 2rem; color: #666; }
.payment-icons i { transition: 0.3s; }
.payment-icons i:hover { color: #fff; transform: translateY(-3px); }
.divider { font-size: 1.5rem; color: #333; font-weight: 300; }
.footer-links { margin-top: 20px; }
.footer-links a { color: #666; text-decoration: none; margin: 0 10px; transition: 0.3s; }
.footer-links a:hover { color: var(--lime); text-decoration: underline; }

/* ANIMACIONES & UI */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; }

.float-btn {
    position: fixed; bottom: 25px; right: 25px;
    background: var(--lime); color: white; padding: 15px 30px; border-radius: 50px;
    font-weight: 700; text-decoration: none; box-shadow: 0 5px 20px rgba(0,0,0,0.3); z-index: 999;
    display: flex; align-items: center; gap: 10px;
}
.pulse-animation { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); } 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); } }

/* SOCIAL PROOF NOTIFICATION (POPUP) */
.social-toast {
    position: fixed; bottom: 25px; left: 25px; z-index: 1000;
    background: white; border-radius: 12px; padding: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15); border-left: 5px solid var(--lime);
    display: flex; align-items: center; gap: 15px;
    max-width: 320px;
    opacity: 0; transform: translateY(20px); transition: 0.5s ease-in-out;
    pointer-events: none; 
}
.social-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast-icon { 
    background: rgba(76, 175, 80, 0.1); width: 40px; height: 40px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
}
.toast-icon i { color: var(--lime); font-size: 1.2rem; }
.toast-content { text-align: left; }
.toast-title { font-size: 0.8rem; font-weight: 700; color: var(--green); margin-bottom: 2px; }
.toast-msg { font-size: 0.85rem; color: #555; line-height: 1.3; margin-bottom: 3px; }
.toast-time { font-size: 0.7rem; color: #999; }

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .intro-grid { flex-direction: column-reverse; }
    .float-btn { padding: 12px 20px; font-size: 0.9rem; bottom: 20px; right: 20px; }
    .social-toast { bottom: 80px; left: 20px; right: 20px; max-width: none; }
}