/* Inversiones HSL - Custom CSS */
/* Converted from Tailwind CSS to traditional CSS */

/* CSS Variables - Design System */
:root {
    /* Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(215, 25%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 15%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(215, 25%, 15%);
    
    /* Primary - Azul oscuro corporativo */
    --primary: hsl(215, 60%, 20%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(215, 60%, 30%);
    
    /* Secondary - Dorado premium */
    --secondary: hsl(45, 95%, 55%);
    --secondary-foreground: hsl(215, 60%, 20%);
    
    --muted: hsl(210, 20%, 96%);
    --muted-foreground: hsl(215, 15%, 45%);
    
    /* Accent - Dorado para elementos destacados */
    --accent: hsl(45, 95%, 55%);
    --accent-foreground: hsl(215, 60%, 20%);
    --accent-light: hsl(45, 95%, 65%);
    
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --border: hsl(214, 20%, 90%);
    --input: hsl(214, 20%, 90%);
    --ring: hsl(215, 60%, 20%);
    
    --radius: 0.75rem;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(215, 60%, 20%) 0%, hsl(215, 60%, 30%) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(45, 95%, 55%) 0%, hsl(45, 95%, 65%) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 30px -5px rgba(245, 180, 0, 0.3);
    --shadow-hover: 0 12px 40px -8px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode variables */
.dark {
    --background: hsl(215, 40%, 8%);
    --foreground: hsl(0, 0%, 98%);
    --card: hsl(215, 35%, 12%);
    --card-foreground: hsl(0, 0%, 98%);
    --popover: hsl(215, 35%, 12%);
    --popover-foreground: hsl(0, 0%, 98%);
    --primary: hsl(215, 60%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(45, 95%, 55%);
    --secondary-foreground: hsl(215, 60%, 15%);
    --muted: hsl(215, 30%, 15%);
    --muted-foreground: hsl(215, 10%, 65%);
    --accent: hsl(45, 95%, 55%);
    --accent-foreground: hsl(215, 60%, 15%);
    --destructive: hsl(0, 62.8%, 30.6%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(215, 25%, 20%);
    --input: hsl(215, 25%, 20%);
    --ring: hsl(215, 60%, 40%);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 3rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none;
    padding: 0.5rem 1rem;
    height: 2.5rem;
}

.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Button Variants */
.btn-default {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-default:hover {
    background-color: hsl(215, 60%, 18%);
    box-shadow: var(--shadow-soft);
}

.btn-hero {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
    background-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.btn-gold {
    background-color: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    opacity: 0.9;
    box-shadow: 0 12px 40px -8px rgba(245, 180, 0, 0.4);
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.btn-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    background: none;
    padding: 0;
    height: auto;
}

.btn-link:hover {
    text-decoration: none;
}

/* Button Sizes */
.btn-sm {
    height: 2.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    height: 3rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    height: 3.5rem;
    padding: 0.75rem 2.5rem;
    font-size: 1.125rem;
}

.btn.w-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled {
    /* Same as default state now */
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.navbar-logo .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-accent {
    color: var(--accent);
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.navbar-link {
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-hover);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    z-index: 1000;
    border: 1px solid var(--border);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: var(--muted);
    color: var(--primary);
}

.navbar-link:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding-bottom: 1.5rem;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.mobile-menu-link:hover {
    color: var(--accent);
}

.hidden {
    display: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 4rem;
    height: 4rem;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--accent);
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Page Hero Section */
.page-hero {
    background: var(--gradient-hero);
    padding: 2rem 0 1.5rem 0;
    margin-top: 100px; /* Reduced space for fixed navbar */
    min-height: 150px;
    display: flex;
    align-items: center;
}

.page-hero-content {
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .page-hero-title {
        font-size: 3rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.25rem;
    }
}

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

@media (max-width: 767px) {
    .page-hero {
        margin-top: 90px; /* Reduced space on mobile */
        padding: 1.5rem 0 1rem 0;
        min-height: 120px;
    }
}

/* Specific styles for property detail page */
.property-detail-grid {
    margin-top: 1rem;
}

.properties-section {
    padding-top: 2rem !important;
}

/* Property sections with different backgrounds */
.properties-section-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

.lands-section-wrapper {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 4px 20px -2px rgba(14, 165, 233, 0.1);
}

/* Blog card links */
.blog-card-link {
    display: block;
    transition: var(--transition-smooth);
    border-radius: 0.75rem;
}

.blog-card-link:hover {
    transform: translateY(-4px);
}

.blog-card-link:hover .blog-card {
    box-shadow: var(--shadow-hover);
}

/* Property badges in detail page (not absolute positioned) */
.property-info .property-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.property-info .property-badge {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    display: inline-block;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-buttons {
    justify-content: center;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    animation: fadeIn 0.6s ease-out;
}

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

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    animation: fadeIn 0.6s ease-out;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

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

.hero-tagline {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

@media (min-width: 640px) {
    .hero-tagline {
        font-size: 1.875rem;
    }
}

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

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 0.6s ease-out;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-nav:hover svg {
    transform: scale(1.1);
}

.hero-prev {
    left: 1.5rem;
}

.hero-next {
    right: 1.5rem;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.hero-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-indicator.active {
    background-color: var(--accent);
    width: 2rem;
}

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

/* Cards */
.card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-primary-light {
    background-color: rgba(215, 60%, 20%, 0.1);
}

.bg-accent-light {
    background-color: rgba(45, 95%, 55%, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.card-content {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    margin-top: 4rem;
}

.values-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.value-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.value-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-0.5rem);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(45, 95%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Properties */
.property-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.property-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-0.5rem);
}

.property-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.property-badge-premium {
    right: 1rem;
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.property-badge-type {
    left: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.property-content {
    padding: 1.5rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.4;
}

.property-detail svg {
    margin-right: 0.25rem;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px;
    max-height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex: 0 0 16px;
    stroke-width: 1.8;
    shape-rendering: geometricPrecision;
    vector-effect: non-scaling-stroke;
    overflow: hidden;
}

.property-price {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.property-price svg {
    margin-right: 0.375rem;
    width: 20px !important;
    height: 20px !important;
    max-width: 20px;
    max-height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex: 0 0 20px;
    stroke-width: 2;
    shape-rendering: geometricPrecision;
    vector-effect: non-scaling-stroke;
    overflow: hidden;
}

/* Blog */
.blog-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-0.5rem);
}

.blog-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(45, 95%, 55%, 0.1);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-date {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    gap: 0.5rem;
}

.blog-date svg {
    flex-shrink: 0;
}

.blog-date span {
    white-space: nowrap;
    line-height: 1;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    color: var(--accent);
}

.blog-link svg {
    transition: transform 0.3s ease;
}

.blog-link:hover svg {
    transform: translateX(0.25rem);
}

/* Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card:hover {
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background-color: rgba(45, 95%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-text {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.contact-link:hover {
    color: rgba(45, 95%, 55%, 0.8);
}

.contact-map {
    height: 16rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-form-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: calc(var(--radius) - 2px);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px rgba(215, 60%, 20%, 0.2);
}

.form-textarea {
    min-height: 8rem;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0 2rem 0;
}

/* Admin Link - Sin subrayado en todos los estados */
a.admin-link,
a.admin-link:link,
a.admin-link:visited,
a.admin-link:hover,
a.admin-link:active,
a.admin-link:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent);
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--accent);
}

.admin-link {
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.admin-link:hover,
.admin-link:focus,
.admin-link:active,
.admin-link:visited {
    background: linear-gradient(135deg, #f59e0b, var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    color: white !important;
    border: none;
    outline: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.footer-contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-link:hover {
    color: var(--accent);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* Grid System */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.bg-background {
    background-color: var(--background);
}

.bg-muted {
    background-color: var(--muted);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-accent {
    background-color: var(--accent);
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-white {
    color: white;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-btn,
    .hero-nav,
    .hero-indicators {
        display: none;
    }
    
    .hero-section {
        height: auto;
        min-height: 50vh;
    }
    
    .section {
        padding: 2rem 0;
    }
}
