:root {
    /* Colors - Vibrant & Premium */
    --background: 210 40% 98%;
    --foreground: 222 47% 11%;
    --card: 0 0% 100%;
    --primary: 222 47% 11%;
    --secondary: 217 33% 17%;
    --accent: 45 100% 51%; /* Vibrant Taxi Yellow */
    --accent-foreground: 222 47% 11%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --border: 214.3 31.8% 91.4%;
    --taxi: 48 100% 50%;
    
    /* Effects */
    --shadow-premium: 0 20px 40px -15px rgba(0,0,0,0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --radius: 16px;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    background-color: hsl(var(--background));
    background-image: 
        radial-gradient(at 0% 0%, hsla(45, 100%, 90%, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(210, 100%, 95%, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(45, 100%, 92%, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(210, 100%, 95%, 0.4) 0px, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: hsl(var(--taxi));
    color: hsl(var(--taxi-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: var(--shadow-marker);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text p {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: hsl(var(--muted-foreground));
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-login-header:hover {
    background-color: hsl(var(--muted));
    color: hsl(var(--primary));
}

.btn-search-header {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--secondary));
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-soft);
}

.btn-search-header:hover {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .btn-search-header {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    color: hsl(var(--primary));
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 0.92fr 1.08fr;
        padding: 3.5rem 0;
    }
}

.hero-info {
    display: flex;
    flex-col: column;
    flex-direction: column;
    gap: 1.75rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--secondary));
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    max-width: 36rem;
    line-height: 1.6;
}

.region-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-filter {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: hsl(var(--card));
    color: hsl(var(--foreground));
    box-shadow: var(--shadow-soft);
}

.btn-filter:hover {
    transform: translateY(-2px);
}

.btn-filter.active {
    background-color: hsl(var(--primary));
    color: white;
    box-shadow: var(--shadow-marker);
}

/* Map Container */
.map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    box-shadow: var(--shadow-soft);
}

.map-container {
    height: 400px;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .map-container {
        height: 540px;
    }
}

.map-overlay {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 500;
    background-color: hsla(var(--card), 0.9);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    pointer-events: none;
}

.overlay-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
}

.overlay-region {
    font-size: 1.25rem;
    font-weight: 800;
    color: hsl(var(--secondary));
}

/* Stands Section */
.stands-section {
    background-color: hsl(var(--surface));
    padding: 3rem 0;
}

.stands-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .stands-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.subtitle {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    color: hsl(var(--accent));
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
}

.btn-reset-filter {
    padding: 0.75rem 1rem;
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.btn-reset-filter.hidden {
    display: none;
}

/* Stands Grid */
.stands-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .stands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Stand Card */
.stand-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-glass);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: hsl(var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stand-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: white;
}

.stand-card:hover::before {
    opacity: 1;
}

.card-top {
    display: flex;
    gap: 1rem;
    border: none;
    background: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-family: inherit;
}

.card-image-placeholder {
    width: 5rem;
    height: 5rem;
    background-color: hsl(var(--taxi));
    color: hsl(var(--taxi-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-marker);
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.star-icon {
    color: hsl(var(--accent));
    fill: hsl(var(--accent));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-address {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.btn-request {
    margin-top: 1.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background-color: hsl(var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-request:hover {
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: hsl(var(--card));
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    position: relative;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-marker);
    animation: modalAppear 0.3s ease-out;
}

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

.btn-close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--muted-foreground));
    padding: 0.25rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-image {
    width: 6rem;
    height: 6rem;
    background-color: hsl(var(--taxi));
    color: hsl(var(--taxi-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-marker);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    margin: 0.5rem 0 1.5rem;
}

.modal-details {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.detail-icon {
    color: hsl(var(--accent));
    flex-shrink: 0;
}

.btn-whatsapp {
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

.btn-site {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: hsl(var(--primary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-site:hover {
    transform: translateY(-2px);
    background-color: hsl(var(--secondary));
    box-shadow: var(--shadow-soft);
}

/* Custom Marker */
.taxi-map-marker {
    background: none;
    border: none;
}

.marker-inner {
    width: 44px;
    height: 44px;
    background-color: hsl(var(--primary));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-marker);
    border: 4px solid white;
}

.marker-inner-selected {
    width: 56px;
    height: 56px;
    background-color: hsl(var(--accent));
    color: hsl(var(--taxi-foreground));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-marker);
    border: 4px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
}

.advantages-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.highlight {
    color: hsl(var(--accent));
}

.section-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.advantage-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: hsl(var(--muted));
    color: hsl(var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.advantage-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.advantage-text p {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.advantages-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.advantages-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: hsla(var(--card), 0.9);
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.overlay-icon {
    font-size: 2rem;
}

.overlay-text {
    display: flex;
    flex-direction: column;
}

.overlay-text strong {
    font-size: 1.125rem;
    font-weight: 800;
    color: hsl(var(--secondary));
}

.overlay-text span {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: hsl(var(--primary));
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1.5fr; } }

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

.footer-brand p {
    color: #a0a0c0;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255,255,255,0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: hsl(var(--accent));
    color: hsl(var(--primary));
    transform: translateY(-3px);
}

.footer-grid h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-nav ul, .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #a0a0c0;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: hsl(var(--accent));
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0c0;
    font-size: 0.9375rem;
}

.footer-contact svg {
    color: hsl(var(--accent));
}

.quality-badge {
    background-color: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.quality-badge span {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--accent));
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #606080;
    font-size: 0.875rem;
}
