:root {
    --color-primary: #1A1A1A;
    --color-secondary: #2A2A2A;
    --color-background: #0D0D0D;
    --color-footer-bg: #070707;
    --color-button: #FFD700;
    --color-text-primary: #F0F0F0;
    --color-text-secondary: #B0B0B0;
    --color-accent-gold: #FFD700;
    --color-accent-turquoise: #40E0D0;

    --font-family-heading: 'Roboto Mono', monospace;
    --font-family-body: 'Inter', sans-serif;

    --border-radius-base: 0.75rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    --shadow-base: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px var(--color-background), 0 4px 6px -2px var(--color-background);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-accent-gold);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    letter-spacing: -0.05em; /* Brutalismo elegante */
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px var(--color-accent-turquoise); /* Brutalismo */
}

h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px var(--color-text-secondary);
}

h3 {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent-turquoise);
}

h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-accent-turquoise);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--color-accent-gold);
    border-bottom: 1px solid var(--color-accent-gold);
}

strong {
    color: var(--color-accent-gold);
    font-weight: 700;
}

section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background-color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

section:nth-of-type(odd) {
    background-color: var(--color-secondary);
    border-color: rgba(64, 224, 208, 0.1);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--color-button);
    color: var(--color-primary);
    border: none;
    border-radius: var(--border-radius-base);
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    letter-spacing: 0.05em;
}

.btn:hover {
    background-color: var(--color-accent-turquoise);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 0 0 5px rgba(64, 224, 208, 0.3);
}

.btn-secondary {
    background-color: var(--color-accent-turquoise);
    color: var(--color-background);
    border: 2px solid var(--color-accent-turquoise);
    box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.7);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--color-accent-turquoise);
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.card {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-base);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-base);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-accent-gold);
}

.input-field,
.textarea-field {
    width: 100%;
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--color-text-secondary);
    border-radius: var(--border-radius-base);
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    font-family: var(--font-family-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.textarea-field {
    min-height: 120px;
    resize: vertical;
}

/* Specific styles for elegant brutalism */
.header-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--color-accent-gold);
    padding: var(--spacing-2xl) var(--spacing-md);
}

.header-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 10% 10%, rgba(64, 224, 208, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 90% 90%, rgba(255, 215, 0, 0.1) 0%, transparent 30%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

.header-hero > * {
    position: relative;
    z-index: 1;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-secondary);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    border-top: 3px solid var(--color-accent-turquoise);
    font-family: var(--font-family-heading);
    letter-spacing: 0.05em;
}

.footer a {
    color: var(--color-accent-gold);
    border-color: transparent;
}

.footer a:hover {
    color: var(--color-accent-turquoise);
    border-color: var(--color-accent-turquoise);
}

/* Utility for text gradients */
.text-gradient-gold-turquoise {
    background: linear-gradient(to right, var(--color-accent-gold), var(--color-accent-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 0px var(--color-accent-turquoise);
    }

    h2 {
        font-size: 2rem;
        text-shadow: 1px 1px 0px var(--color-text-secondary);
    }

    h3 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 1rem;
    }

    section {
        padding: var(--spacing-lg) var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }

    .footer {
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

/* Alpine.js specific styles for transitions */
[x-cloak] {
    display: none !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}

.slide-enter-active, .slide-leave-active {
    transition: all 0.3s ease-out;
}
.slide-enter-from, .slide-leave-to {
    transform: translateY(20px);
    opacity: 0;
}

/* Brutalismo elegante - additional details */
.border-accent-gold {
    border: 2px solid var(--color-accent-gold);
}

.border-accent-turquoise {
    border: 2px solid var(--color-accent-turquoise);
}

/* Example of a custom component with brutalist touch */
.feature-block {
    background-color: var(--color-primary);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    border: 3px solid var(--color-accent-turquoise);
    box-shadow: 8px 8px 0px var(--color-accent-gold); /* Brutalist shadow */
    transition: all 0.2s ease-in-out;
    border-radius: 0; /* No border-radius for brutalism */
}

.feature-block:hover {
    transform: translate(-4px, -4px); /* Shift on hover */
    box-shadow: 12px 12px 0px var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

.feature-block h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

/* Custom list styles */
ul.styled-list {
    list-style: none;
    padding-left: 0;
}

ul.styled-list li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-secondary);
}

ul.styled-list li::before {
    content: '›'; /* Brutalist arrow */
    position: absolute;
    left: 0;
    color: var(--color-accent-gold);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

/* Hero section specific content styling */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.hero-content .btn {
    margin-top: var(--spacing-md);
}

/* Accent lines for visual separation */
.section-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-accent-turquoise), var(--color-accent-gold));
    margin: var(--spacing-xl) auto;
    border: none;
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

/* For elements that are part of a grid, to ensure consistent spacing */
.grid-item {
    margin-bottom: var(--spacing-lg);
}

/* For images to be responsive and have a subtle border */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-base);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: var(--shadow-base);
}

/* Form labels */
label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-family-heading);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Placeholder styling */
::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.7;
}

/* Focus state for interactive elements */
:focus-visible {
    outline: 2px solid var(--color-accent-turquoise);
    outline-offset: 2px;
}<ctrl63>


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}

* {
    will-change: transform;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(64, 224, 208, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(64, 224, 208, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}

.card {
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02) perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
    border-color: var(--color-accent-gold);
}

img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9) contrast(1.1);
}

img:hover {
    transform: scale(1.05) rotate(1deg);
    filter: brightness(1.1) contrast(1.2);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-button), #FFA500);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5), 0 0 20px rgba(64, 224, 208, 0.3);
    animation: glow 2s ease-in-out infinite;
}

h1, h2, h3 {
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-turquoise));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

h1::after, h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-turquoise));
    animation: expand 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes expand {
    to {
        width: 100%;
    }
}

section {
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(64, 224, 208, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

section:hover::before {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

header a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.text-gradient-gold-turquoise {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.grid-item,
[class*="grid"] > * {
    animation: fadeInUp 0.6s ease-out backwards;
}

[class*="grid"] > *:nth-child(1) { animation-delay: 0.1s; }
[class*="grid"] > *:nth-child(2) { animation-delay: 0.2s; }
[class*="grid"] > *:nth-child(3) { animation-delay: 0.3s; }
[class*="grid"] > *:nth-child(4) { animation-delay: 0.4s; }
[class*="grid"] > *:nth-child(5) { animation-delay: 0.5s; }
[class*="grid"] > *:nth-child(6) { animation-delay: 0.6s; }

a {
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-turquoise));
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

input, textarea, select {
    transition: all 0.3s ease;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(64, 224, 208, 0.1);
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, var(--color-footer-bg), rgba(26, 26, 26, 0.95));
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-turquoise), var(--color-accent-gold), var(--color-accent-turquoise));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.hero-slider img,
[data-slide] img {
    animation: pulse-glow 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}