/* Entre Pulgas - Design System */

:root {
    --primary: #6c5ced;
    /* Vibrant Indigo/Purple */
    --primary-dark: #5848d6;
    --secondary: #00d2ad;
    /* Mint Green */
    --accent: #ffd166;
    /* Warm Yellow */
    --bg-light: #f7f9ff;
    --white: #ffffff;
    --dark: #2d3436;
    --gray: #636e72;
    --border-radius: 28px;
    --shadow: 0 12px 40px rgba(108, 92, 237, 0.12);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(108, 92, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
    box-shadow: 0 12px 32px rgba(108, 92, 237, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-whatsapp-large {
    background-color: #25d366;
    color: var(--white);
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
}

.header.scrolled {
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    color: var(--dark);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

.highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(108, 92, 237, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(108, 92, 237, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight-text {
    color: var(--primary);
}

.hero p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(108, 92, 237, 0.15);
}

/* Features Bar */
.section-features {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.features-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.feature-item p {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(108, 92, 237, 0.2);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.7rem;
}

/* Gallery Slider */
.gallery {
    background-color: var(--bg-light);
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
    flex: 0 0 25%;
    padding: 0 10px;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: var(--transition);
}

.slide img:hover {
    transform: scale(1.02);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dfe6e9;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 100%;
    }

    .slide img {
        height: 350px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }
}

/* Opening Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hour-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.hour-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.hour-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hour-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.hour-card .time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.hour-card .status {
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Reviews */
.reviews {
    background-color: #fcfcfc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-box {
    background: var(--white);
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-bottom: 6px solid var(--secondary);
}

.review-stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-box p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.reviewer {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.info-list {
    list-style: none;
    margin: 40px 0;
}

.info-list li {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.info-list i {
    width: 60px;
    height: 60px;
    background: rgba(108, 92, 237, 0.08);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-list strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 5px;
}

.info-list span {
    font-size: 1.2rem;
    font-weight: 700;
}

.info-list a {
    text-decoration: none;
    color: inherit;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    padding: 80px 0;
    background-color: var(--dark);
    color: var(--white);
}

.footer-logo {
    font-size: 2.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.footer-logo img {
    height: 50px;
    width: auto;
    /*  filter: brightness(0) invert(1); */
    object-fit: contain;
}

.footer p {
    opacity: 0.7;
}

/* Floating WA */
.float-wa {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.active {
    opacity: 1;
    transform: translate(0);
}

.transition-delay-100 {
    transition-delay: 0.2s;
}

.transition-delay-200 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        order: -1;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.6s;
    }

    .nav.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .menu-toggle {
        display: block;
    }

}

.hero-btns .btn {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp-large {
    font-size: 0.95rem;
    padding: 16px 20px;
}

.btn-whatsapp-large i {
    font-size: 1.6rem;
}

.feature-item {
    width: 100%;
    justify-content: center;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 35px;
    }
}