/**
*  Archivo CSS dedicado únicamente para la landing page de daycare y hospedaje.
* @autor - Ángel González Núñez - AeI Corp
*/

/* Variables de color propias */
        :root {
            --primary: #1a3c34;
            --secondary: #e8831a;
            --accent: #2e7d5e;
            --light-bg: #f8f6f2;
            --white: #ffffff;
            --dark: #1a1a1a;
            --gray: #6b6b6b;
            --shadow: 0 10px 40px rgba(0,0,0,0.08);
            --shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
            --radius: 20px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--dark);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }

        /* ===== NAVBAR ===== */
        .navbar-custom {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1050;
            transition: var(--transition);
        }
        .navbar-custom .navbar-brand {
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--primary);
            letter-spacing: -0.3px;
        }
        .navbar-custom .navbar-brand span {
            color: var(--secondary);
        }
        .navbar-custom .nav-link {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark);
            padding: 8px 18px !important;
            border-radius: 30px;
            transition: var(--transition);
        }
        .navbar-custom .nav-link:hover {
            background: var(--light-bg);
            color: var(--secondary);
        }
        .btn-orange {
            background: var(--secondary);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 8px 22px;
            font-weight: 700;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .btn-orange:hover {
            background: #d4730e;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 131, 26, 0.35);
        }
        .btn-green {
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 8px 22px;
            font-weight: 700;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .btn-green:hover {
            background: #1f6048;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 125, 94, 0.35);
        }
        .btn-dark-custom {
            background: var(--dark);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 14px 40px;
            font-weight: 700;
            transition: var(--transition);
        }
        .btn-dark-custom:hover {
            background: #333;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }

        /* ===== SECCIONES ===== */
        section {
            padding: 80px 0;
        }
        .section-tag {
            display: inline-block;
            background: rgba(232, 131, 26, 0.10);
            color: var(--secondary);
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 1px;
            padding: 6px 20px;
            border-radius: 50px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .section-title {
            font-weight: 900;
            font-size: 2.8rem;
            line-height: 1.15;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .section-title span {
            color: var(--secondary);
        }
        .section-sub {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 640px;
            line-height: 1.7;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 40px 0 60px;
            background: var(--light-bg);
        }
        .hero h1 {
            font-weight: 900;
            font-size: 3.6rem;
            line-height: 1.1;
            color: var(--primary);
            letter-spacing: -1.5px;
        }
        .hero h1 span {
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.8;
            max-width: 520px;
        }
        .hero-image-wrapper {
            position: relative;
        }
        .hero-image-wrapper img {
            border-radius: var(--radius);
            width: 100%;
            object-fit: cover;
            box-shadow: var(--shadow);
        }
        .hero-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--white);
            padding: 18px 28px;
            border-radius: 16px;
            box-shadow: var(--shadow-hover);
            border-left: 5px solid var(--secondary);
            max-width: 260px;
        }
        .hero-badge strong {
            color: var(--primary);
            display: block;
            font-size: 0.95rem;
        }
        .hero-badge span {
            font-size: 0.85rem;
            color: var(--gray);
        }
        .hero-float-tag {
            position: absolute;
            top: 20px;
            right: -10px;
            background: var(--secondary);
            color: #fff;
            font-weight: 800;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            box-shadow: 0 8px 25px rgba(232,131,26,0.3);
            transform: rotate(6deg);
        }

        /* ===== SERVICIOS ===== */
        .service-tabs .nav-link {
            background: transparent;
            border: none;
            border-radius: 12px;
            padding: 16px 24px;
            font-weight: 700;
            color: var(--gray);
            text-align: left;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .service-tabs .nav-link.active {
            background: var(--white);
            color: var(--primary);
            border-left-color: var(--secondary);
            box-shadow: var(--shadow);
        }
        .service-tabs .nav-link:hover {
            background: var(--white);
        }
        .service-content {
            background: var(--white);
            padding: 32px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            min-height: 320px;
        }
        .service-content .badge-premium {
            background: var(--secondary);
            color: #fff;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .service-content ul li {
            padding: 6px 0;
            font-size: 0.95rem;
            color: var(--gray);
        }
        .service-content ul li i {
            color: var(--secondary);
            margin-right: 10px;
        }
        .info-box {
            background: var(--light-bg);
            border-radius: var(--radius);
            padding: 24px 30px;
            margin-top: 30px;
            border-left: 5px solid var(--accent);
        }

        /* ===== BANNER NARANJA ===== */
        .banner-orange {
            background: var(--secondary);
            color: #fff;
            padding: 60px 0;
            border-radius: var(--radius);
            margin: 0 20px;
        }
        .banner-orange h2 {
            font-weight: 900;
            font-size: 2.6rem;
        }
        .banner-orange h2 span {
            color: var(--dark);
        }
        .banner-orange p {
            opacity: 0.9;
            font-size: 1.05rem;
            max-width: 540px;
            margin: 0 auto;
        }

        /* ===== GALERÍA ===== */
        .gallery-filters .btn-filter {
            background: transparent;
            border: none;
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--gray);
            transition: var(--transition);
        }
        .gallery-filters .btn-filter.active {
            background: var(--primary);
            color: #fff;
        }
        .gallery-filters .btn-filter:hover {
            background: var(--light-bg);
        }
        .gallery-grid img {
            border-radius: 16px;
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }
        .gallery-grid img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        /* ===== TESTIMONIOS ===== */
        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.04);
        }
        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .testimonial-card .stars {
            color: #f5b342;
            letter-spacing: 2px;
        }
        .testimonial-card .name {
            font-weight: 700;
            color: var(--primary);
        }
        .testimonial-card .pet {
            color: var(--gray);
            font-size: 0.85rem;
        }
        .testimonial-card .text {
            color: var(--gray);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* ===== FORMULARIO ===== */
        .form-section {
            background: var(--light-bg);
        }
        .form-wrapper {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .form-wrapper .form-control,
        .form-wrapper .form-select {
            border-radius: 12px;
            padding: 12px 18px;
            border: 1px solid #e5e5e5;
            font-size: 0.95rem;
        }
        .form-wrapper .form-control:focus,
        .form-wrapper .form-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(232,131,26,0.15);
        }
        .benefit-list li {
            padding: 12px 0;
            font-weight: 500;
            color: var(--primary);
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        .benefit-list li i {
            color: var(--secondary);
            margin-right: 14px;
            font-size: 1.2rem;
        }

        /* ===== PLANES VIP ===== */
        .plan-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
        }
        .plan-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        .plan-card.recommended {
            border-color: var(--secondary);
            background: #fffbf5;
        }
        .plan-card .badge-popular {
            background: var(--secondary);
            color: #fff;
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
        }
        .plan-card .price {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
        }
        .plan-card .price small {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--gray);
        }
        .plan-card ul li {
            padding: 8px 0;
            font-size: 0.95rem;
            color: var(--gray);
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        .plan-card ul li:last-child {
            border-bottom: none;
        }
        .plan-card ul li i {
            color: var(--secondary);
            margin-right: 10px;
        }

        /* ===== FAQ ===== */
        .accordion-faq .accordion-item {
            border: none;
            border-radius: 12px !important;
            margin-bottom: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .accordion-faq .accordion-button {
            font-weight: 700;
            color: var(--primary);
            padding: 20px 28px;
            background: var(--white);
            border: none;
            border-radius: 12px !important;
        }
        .accordion-faq .accordion-button:not(.collapsed) {
            background: var(--white);
            color: var(--secondary);
            box-shadow: none;
        }
        .accordion-faq .accordion-button:focus {
            box-shadow: none;
        }
        .accordion-faq .accordion-body {
            padding: 0 28px 24px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary);
            color: rgba(255,255,255,0.85);
            padding: 60px 0 30px;
        }
        .footer h5 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer a {
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .footer .footer-links li {
            padding: 6px 0;
        }
        .footer .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            margin-top: 40px;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .section-title { font-size: 2.2rem; }
            .hero h1 { font-size: 2.6rem; }
            .hero-badge { position: relative; bottom: 0; left: 0; margin-top: 20px; max-width: 100%; }
            .hero-float-tag { right: 10px; top: 10px; font-size: 0.75rem; padding: 6px 16px; }
            .banner-orange h2 { font-size: 2rem; }
        }
        @media (max-width: 576px) {
            section { padding: 50px 0; }
            .section-title { font-size: 1.8rem; }
            .hero h1 { font-size: 2rem; }
            .form-wrapper { padding: 24px; }
            .banner-orange { margin: 0 10px; padding: 40px 20px; }
        }

      .fullscreen-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .fullscreen-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .enlarged-img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .close-overlay-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
        transition: transform 0.2s;
    }

    .close-overlay-btn:hover {
        transform: scale(1.2);
    }