/* Base Reset & Layout */
:root {
    --transition-speed: 0.5s;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent scrollbar flash during transitions */
}

/* Theme Switcher UI */
.theme-switcher-panel {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 8px;
    z-index: 9999;
    color: white;
    font-family: sans-serif;
    border: 1px solid #333;
    backdrop-filter: blur(5px);
}

.theme-switcher-panel select {
    padding: 0.5rem;
    background: #222;
    color: white;
    border: 1px solid #555;
    border-radius: 4px;
    cursor: pointer;
}

/* Common Components */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: var(--border-width) var(--border-style) var(--primary-color);
    background: var(--surface-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition-speed);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--bg-color);
    border: var(--border-width) var(--border-style) var(--primary-color);
    font-family: var(--font-heading);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: var(--border-radius);
    transition: all 0.3s;
    font-weight: bold;
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section>*:not(.section-header) {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-header {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 3rem;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.main-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.visual-element {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    transition: all 0.5s;
}

/* Cards & Grid */
.cards-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card,
.project-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border: var(--border-width) var(--border-style) var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover,
.project-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.project-image {
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
}

/* Sinergia Section */
.sinergia-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--surface-color);
    padding: 3rem;
    border: var(--border-width) var(--border-style) var(--primary-color);
    border-radius: var(--border-radius);
}

.sinergia-text {
    flex: 1;
}

.sinergia-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.connection-graphic {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.node {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    font-weight: bold;
    background: var(--bg-color);
}

.connection-line {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
}

/* Location Section */
.location-container {
    display: flex;
    gap: 2rem;
    background: var(--surface-color);
    padding: 2rem;
    border: var(--border-width) var(--border-style) var(--primary-color);
    border-radius: var(--border-radius);
}

.map-info {
    flex: 1;
    padding: 2rem;
}

.map-frame {
    flex: 1;
    min-height: 300px;
}

.map-frame iframe {
    border-radius: var(--border-radius);
    height: 100%;
}

/* Contact Form */
.contact-container {
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    /* Matches typical card width */
    background: var(--surface-color);
    padding: 2.5rem;
    border: var(--border-width) var(--border-style) var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--surface-color);
    padding: 4rem 0 2rem;
    border-top: var(--border-width) var(--border-style) var(--primary-color);
    margin-top: 4rem;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ================= THEMES & ANIMATIONS ================= */

/* 1. Renaissance - Rich Venetian reds, gold leaf, deep azure blues */
[data-theme="renaissance"] {
    --bg-color: #F5E6D3;
    --surface-color: #FFF8F0;
    --primary-color: #8B0000;
    --secondary-color: #DAA520;
    --accent-color: #1E3A5F;
    --text-primary: #2C1B18;
    --text-secondary: #5C4033;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 2px;
    --border-width: 4px;
    --border-style: double;
    --shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Renaissance marble texture background */
[data-theme="renaissance"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(218, 165, 32, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(218, 165, 32, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(218, 165, 32, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(218, 165, 32, 0.03) 75%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

[data-theme="renaissance"] .visual-element {
    border-radius: 50%;
    border: 10px double var(--secondary-color);
    background: radial-gradient(circle at 30% 30%, #DAA520 0%, #8B0000 40%, #2C1B18 100%);
    box-shadow:
        0 0 30px rgba(139, 0, 0, 0.3),
        inset 0 0 60px rgba(218, 165, 32, 0.2);
    animation: renaissance-pulse 4s infinite ease-in-out;
}

[data-theme="renaissance"] .card {
    background: linear-gradient(135deg, #FFF8F0, #F5E6D3);
    border: 4px double var(--secondary-color);
    position: relative;
}

[data-theme="renaissance"] .card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    pointer-events: none;
}

[data-theme="renaissance"] .section-header h2 {
    text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.2);
    letter-spacing: 0.1em;
}

[data-theme="renaissance"] .navbar {
    background: linear-gradient(to bottom, #FFF8F0, #F5E6D3);
    border-bottom: 4px double var(--secondary-color);
}

@keyframes renaissance-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 0, 0, 0.3), inset 0 0 60px rgba(218, 165, 32, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(218, 165, 32, 0.5), inset 0 0 80px rgba(218, 165, 32, 0.3);
    }
}

/* 2. Art Nouveau (Jugendstil) - Organic peacock greens, sunset ambers, floral mauves */
[data-theme="art-nouveau"] {
    --bg-color: #F4F1EA;
    --surface-color: #E8F1F2;
    --primary-color: #2E8B57;
    --secondary-color: #D4AF37;
    --accent-color: #9B6B9E;
    --text-primary: #2F4F4F;
    --text-secondary: #5F7F7F;
    --font-heading: 'Great Vibes', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 20px 0 20px 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 5px 15px rgba(46, 139, 87, 0.2);
}

/* Art Nouveau organic flowing background */
[data-theme="art-nouveau"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse 200px 300px at 10% 20%, rgba(46, 139, 87, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 150px 250px at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 180px 280px at 50% 50%, rgba(155, 107, 158, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="art-nouveau"] .visual-element {
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, #2E8B57 0%, #D4AF37 50%, #9B6B9E 100%);
    border: 3px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 40px rgba(46, 139, 87, 0.3);
    animation: art-nouveau-flow 6s infinite ease-in-out;
}

[data-theme="art-nouveau"] .card {
    border-radius: 25px 5px 25px 5px;
    background: linear-gradient(145deg, #E8F1F2, #F4F1EA);
    border: 2px solid rgba(46, 139, 87, 0.3);
    position: relative;
    overflow: hidden;
}

[data-theme="art-nouveau"] .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E8B57, #D4AF37, #9B6B9E);
}

[data-theme="art-nouveau"] .navbar {
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #2E8B57, #D4AF37, #9B6B9E) 1;
}

[data-theme="art-nouveau"] .section-header h2 {
    background: linear-gradient(90deg, #2E8B57, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="art-nouveau"] .cta-button {
    border-radius: 20px 5px 20px 5px;
}

@keyframes art-nouveau-flow {

    0%,
    100% {
        border-radius: 50% 0 50% 0;
        transform: rotate(0deg) scale(1);
    }

    50% {
        border-radius: 0 50% 0 50%;
        transform: rotate(5deg) scale(1.02);
    }
}

/* 3. Neoclassical - Wedgwood blues, Pompeian reds, classical whites */
[data-theme="neoclassical"] {
    --bg-color: #F5F5F5;
    --surface-color: #FFFFFF;
    --primary-color: #5D8AA8;
    --secondary-color: #CD7F32;
    --accent-color: #8B4513;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 0;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Neoclassical Greek key pattern border */
[data-theme="neoclassical"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg,
            var(--secondary-color) 0px,
            var(--secondary-color) 10px,
            transparent 10px,
            transparent 15px,
            var(--secondary-color) 15px,
            var(--secondary-color) 25px,
            transparent 25px,
            transparent 30px);
    z-index: 1000;
}

[data-theme="neoclassical"] .visual-element {
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(to bottom, var(--primary-color) 0%, #FFFFFF 100%);
    border-bottom: 10px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(93, 138, 168, 0.2);
}

[data-theme="neoclassical"] .card {
    border: 1px solid #DDD;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="neoclassical"] .section-header h2 {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

[data-theme="neoclassical"] .navbar {
    border-bottom: 1px solid #DDD;
    border-top: 4px solid var(--secondary-color);
}

[data-theme="neoclassical"] .cta-button {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

[data-theme="neoclassical"] .sinergia-container,
[data-theme="neoclassical"] .location-container {
    border: 1px solid #DDD;
    border-top: 4px solid var(--secondary-color);
}

/* 4. Rococo */
[data-theme="rococo"] {
    --bg-color: #FFF0F5;
    --surface-color: #FFFACD;
    --primary-color: #FFB7C5;
    --secondary-color: #B0E0E6;
    --accent-color: #E6C9A8;
    --text-primary: #6B5B5B;
    --text-secondary: #8B7B7B;
    --font-heading: 'Great Vibes', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 30px;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 8px 32px rgba(255, 183, 197, 0.3);
}

/* Rococo Background Pattern - Delicate ornamental */
[data-theme="rococo"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse 80px 120px at 20% 30%, rgba(255, 183, 197, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 100px 80px at 80% 20%, rgba(176, 224, 230, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60px 90px at 60% 70%, rgba(255, 250, 205, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 90px 70px at 30% 80%, rgba(255, 183, 197, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="rococo"] .visual-element {
    animation: rococo-spin 15s infinite linear;
    background: conic-gradient(from 0deg, #FFB7C5, #B0E0E6, #FFFACD, #E6C9A8, #FFB7C5);
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 0 40px rgba(255, 183, 197, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Rococo - Centralizar conteúdo nas seções 2, 3, 4, contato e localização */
[data-theme="rococo"] #sinergia .sinergia-container,
[data-theme="rococo"] #servicos .cards-grid,
[data-theme="rococo"] #portfolio .portfolio-grid,
[data-theme="rococo"] #contato .contact-container,
[data-theme="rococo"] #localizacao .location-container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

[data-theme="rococo"] .sinergia-container {
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.9), rgba(255, 240, 245, 0.9));
    border: 2px solid rgba(255, 183, 197, 0.5);
    border-radius: 40px;
    padding: 3rem;
}

[data-theme="rococo"] .cards-grid {
    justify-items: center;
}

[data-theme="rococo"] .card {
    background: linear-gradient(145deg, #FFFACD, #FFF0F5);
    border: 2px solid rgba(255, 183, 197, 0.4);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

[data-theme="rococo"] .card::before {
    content: '❀';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.4;
    color: var(--primary-color);
}

[data-theme="rococo"] .location-container {
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 250, 205, 0.9), rgba(255, 240, 245, 0.9));
    border-radius: 40px;
}

[data-theme="rococo"] .contact-form {
    background: linear-gradient(145deg, #FFFACD, #FFF0F5);
    border-radius: 30px;
    border: 2px solid rgba(255, 183, 197, 0.4);
}

[data-theme="rococo"] h2,
[data-theme="rococo"] h3 {
    color: #8B6B6B;
}

[data-theme="rococo"] .section-number {
    color: var(--primary-color);
    opacity: 0.6;
}

@keyframes rococo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 5. Arts and Crafts - Morris greens, terracotta, handcrafted browns */
[data-theme="arts-crafts"] {
    --bg-color: #E8DCC8;
    --surface-color: #F5EFE0;
    --primary-color: #556B2F;
    --secondary-color: #A0522D;
    --accent-color: #8B4513;
    --text-primary: #3E2723;
    --text-secondary: #5D4037;
    --font-heading: 'IM Fell English', serif;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 4px;
    --border-width: 3px;
    --border-style: solid;
    --shadow: 4px 4px 0px #3E2723;
}

/* Arts and Crafts woodblock pattern */
[data-theme="arts-crafts"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(85, 107, 47, 0.03) 0px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(85, 107, 47, 0.03) 0px, transparent 1px, transparent 20px);
    pointer-events: none;
    z-index: 0;
}

[data-theme="arts-crafts"] .visual-element {
    background-image:
        repeating-linear-gradient(45deg, #556B2F 0, #556B2F 10px, #E8DCC8 10px, #E8DCC8 20px),
        repeating-linear-gradient(-45deg, #A0522D 0, #A0522D 10px, transparent 10px, transparent 20px);
    border: 5px solid var(--secondary-color);
    box-shadow: 6px 6px 0 #3E2723;
}

[data-theme="arts-crafts"] .card {
    background: #F5EFE0;
    border: 3px solid var(--secondary-color);
    box-shadow: 5px 5px 0 #3E2723;
    position: relative;
}

[data-theme="arts-crafts"] .card::before {
    content: '❧';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

[data-theme="arts-crafts"] .section-header h2 {
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

[data-theme="arts-crafts"] .navbar {
    background: #F5EFE0;
    border-bottom: 4px solid var(--secondary-color);
}

[data-theme="arts-crafts"] .cta-button {
    box-shadow: 3px 3px 0 #3E2723;
}

/* 6. Bauhaus - Primary colors, geometric shapes, form follows function */
[data-theme="bauhaus"] {
    --bg-color: #F5F5F5;
    --surface-color: #FFFFFF;
    --primary-color: #D92B2B;
    --secondary-color: #1E3D9C;
    --accent-color: #F4C542;
    --text-primary: #111111;
    --text-secondary: #333333;
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Jost', sans-serif;
    --border-radius: 0;
    --border-width: 0;
    --border-style: none;
    --shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
}

[data-theme="bauhaus"] .visual-element {
    border-radius: 50%;
    background: var(--primary-color);
    position: relative;
    animation: bauhaus-bounce 2s infinite ease-in-out alternate;
}

[data-theme="bauhaus"] .visual-element::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    height: 60%;
    background: var(--accent-color);
    z-index: -1;
}

[data-theme="bauhaus"] .visual-element::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    background: var(--secondary-color);
    transform: translate(50%, -50%);
}

[data-theme="bauhaus"] .card {
    background: #FFFFFF;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-color);
}

[data-theme="bauhaus"] .card:nth-child(2) {
    border-left-color: var(--secondary-color);
}

[data-theme="bauhaus"] .card:nth-child(3) {
    border-left-color: var(--accent-color);
}

[data-theme="bauhaus"] .section-header h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

[data-theme="bauhaus"] .navbar {
    border-bottom: 4px solid #000;
}

[data-theme="bauhaus"] .cta-button {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes bauhaus-bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

/* 7. De Stijl (Neoplasticismo) - Strict primary colors, perpendicular lines */
[data-theme="de-stijl"] {
    --bg-color: #FFFFFF;
    --surface-color: #FFFFFF;
    --primary-color: #FF0000;
    --secondary-color: #0000FF;
    --accent-color: #FFDE00;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 0;
    --border-width: 4px;
    --border-style: solid;
    --shadow: none;
}

[data-theme="de-stijl"] .navbar {
    border-bottom: 6px solid #000;
    position: relative;
}

[data-theme="de-stijl"] .navbar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: var(--primary-color);
}

[data-theme="de-stijl"] .card {
    border: 4px solid black;
    box-shadow: 10px 10px 0 var(--secondary-color);
    position: relative;
}

[data-theme="de-stijl"] .card:nth-child(2) {
    box-shadow: 10px 10px 0 var(--accent-color);
}

[data-theme="de-stijl"] .card:nth-child(3) {
    box-shadow: 10px 10px 0 var(--primary-color);
}

[data-theme="de-stijl"] .visual-element {
    background: var(--primary-color);
    border: 6px solid black;
    box-shadow: 25px 25px 0 var(--secondary-color), 50px 50px 0 var(--accent-color);
    transition: all 0.3s;
}

[data-theme="de-stijl"] .visual-element:hover {
    transform: translate(-5px, -5px);
    box-shadow: 30px 30px 0 var(--secondary-color), 55px 55px 0 var(--accent-color);
}

[data-theme="de-stijl"] .section-header h2 {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    position: relative;
    display: inline-block;
}

[data-theme="de-stijl"] .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 6px;
    background: var(--primary-color);
}

[data-theme="de-stijl"] .cta-button {
    border: 4px solid #000;
    text-transform: uppercase;
}

/* 8. Japonisme - Cherry blossom pinks, indigo blues, ink blacks, Zen aesthetic */
[data-theme="japonisme"] {
    --bg-color: #FAF8F5;
    --surface-color: #FFFFFF;
    --primary-color: #C41E3A;
    --secondary-color: #264653;
    --accent-color: #FFB7C5;
    --text-primary: #2F3542;
    --text-secondary: #5F6B7A;
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Shippori Mincho', serif;
    --border-radius: 2px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Japonisme washi paper texture */
[data-theme="japonisme"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(38, 70, 83, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="japonisme"] .visual-element {
    background: radial-gradient(circle at 30% 30%, var(--primary-color) 0%, transparent 50%),
        linear-gradient(to bottom, #FAF8F5, #264653);
    border-radius: 50%;
    opacity: 0.8;
    animation: japonisme-fade 4s infinite alternate;
}

[data-theme="japonisme"] .card {
    background: #FFFFFF;
    border: 1px solid rgba(38, 70, 83, 0.2);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="japonisme"] .section-header h2 {
    font-weight: 400;
    letter-spacing: 0.2em;
}

[data-theme="japonisme"] .navbar {
    background: rgba(250, 248, 245, 0.95);
    border-bottom: 1px solid rgba(38, 70, 83, 0.1);
}

@keyframes japonisme-fade {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 0.9;
    }
}

/* 9. Futurism - Dynamic speed reds, mechanical silvers, motion blues */
[data-theme="futurism"] {
    --bg-color: #E8E8E8;
    --surface-color: #D8D8D8;
    --primary-color: #FF2400;
    --secondary-color: #4169E1;
    --accent-color: #C0C0C0;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: 'Russo One', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

[data-theme="futurism"] .visual-element {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: skewX(-20deg);
    animation: futurism-speed 0.3s infinite alternate;
}

[data-theme="futurism"] .card {
    transform: skewX(-3deg);
    border-left: 5px solid var(--primary-color);
}

[data-theme="futurism"] .section-header h2 {
    font-style: italic;
    transform: skewX(-5deg);
    text-transform: uppercase;
}

@keyframes futurism-speed {
    from {
        transform: skewX(-20deg) translateX(0);
    }

    to {
        transform: skewX(-20deg) translateX(8px);
    }
}

/* 10. Constructivism - Soviet reds, industrial blacks */
[data-theme="constructivism"] {
    --bg-color: #F5F0E6;
    --surface-color: #FFFFFF;
    --primary-color: #CC0000;
    --secondary-color: #000000;
    --text-primary: #000000;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 0;
    --border-width: 5px;
    --border-style: solid;
    --shadow: 10px 10px 0 #000;
}

[data-theme="constructivism"] .visual-element {
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    transform: rotate(-15deg);
    box-shadow: 15px 15px 0 #000;
}

[data-theme="constructivism"] .card {
    border: 5px solid #000;
    box-shadow: 8px 8px 0 var(--primary-color);
}

[data-theme="constructivism"] .section-header h2 {
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* 11. Streamline Moderne - Aerodynamic chrome, ocean liner blues */
[data-theme="streamline"] {
    --bg-color: #E0F7FA;
    --surface-color: #FFFFFF;
    --primary-color: #006064;
    --secondary-color: #C0C0C0;
    --accent-color: #B0BEC5;
    --text-primary: #333;
    --text-secondary: #555;
    --font-heading: 'Audiowide', cursive;
    --font-body: 'Inter', sans-serif;
    --border-radius: 30px;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 5px 5px 15px rgba(0, 96, 100, 0.15);
}

[data-theme="streamline"] .visual-element {
    border-radius: 100px 100px 50px 50px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    height: 150px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 96, 100, 0.2);
}

[data-theme="streamline"] .card {
    border-radius: 20px;
    background: linear-gradient(135deg, #FFFFFF, #F5F5F5);
}

[data-theme="streamline"] .navbar {
    border-radius: 0 0 30px 30px;
}

[data-theme="streamline"] .section-header h2 {
    letter-spacing: 0.15em;
}

/* 12. Medieval Illuminated - Lapis lazuli blues, vermillion reds, gold leaf */
[data-theme="medieval"] {
    --bg-color: #1A1510;
    --surface-color: #2D2520;
    --primary-color: #C5A059;
    --secondary-color: #800000;
    --accent-color: #1E3A5F;
    --text-primary: #E0C097;
    --text-secondary: #B8A070;
    --font-heading: 'UnifrakturCook', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 4px;
    --border-width: 3px;
    --border-style: double;
    --shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

[data-theme="medieval"] .visual-element {
    border: 8px double var(--primary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: rotate(45deg);
    width: 250px;
    height: 250px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 160, 89, 0.3);
}

[data-theme="medieval"] .card {
    background: linear-gradient(135deg, #2D2520, #1A1510);
    border: 3px double var(--primary-color);
}

[data-theme="medieval"] .navbar {
    background: linear-gradient(to bottom, #2D2520, #1A1510);
    border-bottom: 3px double var(--primary-color);
}

/* 13. Wiener Werkstatte (Eclético Vienense) - Checkerboard patterns, geometric precision */
[data-theme="wiener"] {
    --bg-color: #FFFFFF;
    --surface-color: #F8F8F8;
    --primary-color: #000000;
    --secondary-color: #DAA520;
    --accent-color: #C0C0C0;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 4px 4px 0 #000;
}

[data-theme="wiener"] .visual-element {
    background-image:
        repeating-linear-gradient(0deg, #000 0, #000 20px, #fff 20px, #fff 40px),
        repeating-linear-gradient(90deg, #000 0, #000 20px, #fff 20px, #fff 40px);
    background-blend-mode: difference;
    border: 4px solid var(--secondary-color);
    box-shadow: 6px 6px 0 #000;
}

[data-theme="wiener"] .card {
    border: 2px solid #000;
    box-shadow: 4px 4px 0 var(--secondary-color);
}

[data-theme="wiener"] .section-header h2 {
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

[data-theme="wiener"] .navbar {
    border-bottom: 4px solid #000;
}

/* 14. German Expressionism - Psychological yellows, ominous blacks, emotional reds */
[data-theme="expressionism"] {
    --bg-color: #0D0D0D;
    --surface-color: #1A1A1A;
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --accent-color: #4A0000;
    --text-primary: #E8E8E8;
    --text-secondary: #AAAAAA;
    --font-heading: 'Metal Mania', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 12px 12px 0 #000;
}

[data-theme="expressionism"] .visual-element {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: rotate(10deg);
    animation: expressionism-shake 0.15s infinite;
    box-shadow: 10px 10px 0 rgba(139, 0, 0, 0.5);
}

[data-theme="expressionism"] .card {
    background: #1A1A1A;
    border: 2px solid var(--primary-color);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

[data-theme="expressionism"] .section-header h2 {
    text-shadow: 3px 3px 0 var(--secondary-color);
}

[data-theme="expressionism"] .navbar {
    border-bottom: 4px solid var(--primary-color);
}

@keyframes expressionism-shake {
    0% {
        transform: rotate(10deg) translate(0, 0);
    }

    50% {
        transform: rotate(11deg) translate(1px, -1px);
    }

    100% {
        transform: rotate(10deg) translate(-1px, 1px);
    }
}

/* 15. Swiss International - Grid-based, Helvetica, mathematical precision */
[data-theme="swiss"] {
    --bg-color: #FFFFFF;
    --surface-color: #FAFAFA;
    --primary-color: #FF3333;
    --secondary-color: #000000;
    --accent-color: #666666;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 0;
    --border-width: 0;
    --border-style: none;
    --shadow: none;
}

[data-theme="swiss"] .visual-element {
    background: var(--primary-color);
    width: 100%;
    height: 400px;
}

[data-theme="swiss"] .card {
    background: #FAFAFA;
    border-left: 4px solid var(--primary-color);
}

[data-theme="swiss"] .section-header h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

[data-theme="swiss"] .navbar {
    border-bottom: 1px solid #EEE;
}

[data-theme="swiss"] .cta-button {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 16. Psychedelic 60s - Acid colors, op-art vibration, consciousness-expanding */
[data-theme="psychedelic"] {
    --bg-color: #2D0A4E;
    --surface-color: #FF1493;
    --primary-color: #00FF00;
    --secondary-color: #FFFF00;
    --accent-color: #FF6B00;
    --text-primary: #FFFFFF;
    --text-secondary: #FFFF00;
    --font-heading: 'Spicy Rice', cursive;
    --font-body: 'Jost', sans-serif;
    --border-radius: 30px;
    --border-width: 3px;
    --border-style: solid;
    --shadow: 0 0 30px var(--primary-color);
}

[data-theme="psychedelic"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-radial-gradient(circle at 50% 50%,
            rgba(0, 255, 0, 0.05) 0px,
            transparent 10px,
            rgba(255, 255, 0, 0.05) 20px,
            transparent 30px);
    pointer-events: none;
    z-index: 0;
}

[data-theme="psychedelic"] .visual-element {
    border-radius: 50%;
    background: repeating-radial-gradient(#00FF00, #FFFF00 8%, #FF1493 16%, #FF6B00 24%);
    animation: psychedelic-pulse 3s infinite;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5);
}

[data-theme="psychedelic"] .card {
    background: linear-gradient(135deg, #FF1493, #FF6B00);
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

[data-theme="psychedelic"] .section-header h2 {
    text-shadow: 3px 3px 0 var(--primary-color), -3px -3px 0 var(--secondary-color);
}

@keyframes psychedelic-pulse {
    0% {
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        filter: hue-rotate(60deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
        filter: hue-rotate(0deg);
    }
}

/* 17. Mannerism - Unnatural greens, serpentine forms, elongated proportions */
[data-theme="mannerism"] {
    --bg-color: #1F3D3D;
    --surface-color: #2A4F4F;
    --primary-color: #7CCD7C;
    --secondary-color: #D8BFD8;
    --accent-color: #8B7B8B;
    --text-primary: #E8F0F0;
    --text-secondary: #B0C8C8;
    --font-heading: 'Forum', cursive;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 10px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="mannerism"] .visual-element {
    height: 500px;
    width: 120px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 60px;
    transform: rotate(15deg) scaleY(1.2);
}

[data-theme="mannerism"] .card {
    background: linear-gradient(145deg, #2A4F4F, #1F3D3D);
    border: 1px solid rgba(124, 205, 124, 0.3);
}

[data-theme="mannerism"] .section-header h2 {
    font-style: italic;
    letter-spacing: 0.15em;
}

/* 18. Vienna Secession (Secessão Vienense) - Klimt golds, organic greens */
[data-theme="secession"] {
    --bg-color: #F5EFE0;
    --surface-color: #FFFFFF;
    --primary-color: #B8860B;
    --secondary-color: #556B2F;
    --accent-color: #8B7355;
    --text-primary: #2F4F4F;
    --text-secondary: #4F6F6F;
    --font-heading: 'Poiret One', cursive;
    --font-body: 'Jost', sans-serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 6px 6px 0 var(--primary-color);
}

[data-theme="secession"] .visual-element {
    border: 4px solid var(--primary-color);
    background:
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(184, 134, 11, 0.1) 10px, rgba(184, 134, 11, 0.1) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(184, 134, 11, 0.1) 10px, rgba(184, 134, 11, 0.1) 20px),
        linear-gradient(135deg, #F5EFE0, #FFFFFF);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

[data-theme="secession"] .card {
    border: 2px solid var(--primary-color);
    box-shadow: 5px 5px 0 var(--secondary-color);
}

[data-theme="secession"] .section-header h2 {
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

[data-theme="secession"] .navbar {
    border-bottom: 3px solid var(--primary-color);
}

/* 19. Brutalist Graphic - Raw digital, anti-design, system defaults */
[data-theme="brutalist"] {
    --bg-color: #0000FF;
    --surface-color: #C0C0C0;
    --primary-color: #000000;
    --secondary-color: #FFFFFF;
    --accent-color: #FF0000;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: monospace;
    --font-body: monospace;
    --border-radius: 0;
    --border-width: 3px;
    --border-style: solid;
    --shadow: 6px 6px 0 #000;
}

[data-theme="brutalist"] .visual-element {
    background: #FFFFFF;
    border: 6px solid black;
    width: 300px;
    height: 300px;
    box-shadow: 10px 10px 0 var(--accent-color);
}

[data-theme="brutalist"] .card {
    background: #C0C0C0;
    border: 3px solid #000;
    box-shadow: 5px 5px 0 #000;
}

[data-theme="brutalist"] .section-header h2 {
    text-transform: uppercase;
    text-decoration: underline;
}

[data-theme="brutalist"] .navbar {
    background: #C0C0C0;
    border: 3px solid #000;
}

[data-theme="brutalist"] .cta-button {
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
}

/* 20. Orientalism - Arabian nights blues, harem purples, spice market golds */
[data-theme="orientalism"] {
    --bg-color: #0F1A3D;
    --surface-color: #1E2D5A;
    --primary-color: #FFD700;
    --secondary-color: #9B30FF;
    --accent-color: #FF6B35;
    --text-primary: #FFF8DC;
    --text-secondary: #E8D8B8;
    --font-heading: 'Aref Ruqaa', serif;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 8px 8px 0 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

/* Orientalism arabesque pattern */
[data-theme="orientalism"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 75% 75%, rgba(155, 48, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="orientalism"] .visual-element {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 3px solid var(--accent-color);
    animation: orientalism-float 3s infinite ease-in-out;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

[data-theme="orientalism"] .card {
    background: linear-gradient(135deg, #1E2D5A, #0F1A3D);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

[data-theme="orientalism"] .section-header h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="orientalism"] .navbar {
    background: linear-gradient(to bottom, #1E2D5A, #0F1A3D);
    border-bottom: 2px solid var(--primary-color);
}

@keyframes orientalism-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .sinergia-container,
    .location-container,
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    --primary-color: #7CCD7C;
    --secondary-color: #D8BFD8;
    --accent-color: #8B7B8B;
    --text-primary: #E8F0F0;
    --text-secondary: #B0C8C8;
    --font-heading: 'Forum',
    cursive;
    --font-body: 'Cormorant Garamond',
    serif;
    --border-radius: 10px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="mannerism"] .visual-element {
    height: 500px;
    width: 120px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 60px;
    transform: rotate(15deg) scaleY(1.2);
}

[data-theme="mannerism"] .card {
    background: linear-gradient(145deg, #2A4F4F, #1F3D3D);
    border: 1px solid rgba(124, 205, 124, 0.3);
}

[data-theme="mannerism"] .section-header h2 {
    font-style: italic;
    letter-spacing: 0.15em;
}

/* 18. Vienna Secession (Secessão Vienense) - Klimt golds, organic greens */
[data-theme="secession"] {
    --bg-color: #F5EFE0;
    --surface-color: #FFFFFF;
    --primary-color: #B8860B;
    --secondary-color: #556B2F;
    --accent-color: #8B7355;
    --text-primary: #2F4F4F;
    --text-secondary: #4F6F6F;
    --font-heading: 'Poiret One', cursive;
    --font-body: 'Jost', sans-serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 6px 6px 0 var(--primary-color);
}

[data-theme="secession"] .visual-element {
    border: 4px solid var(--primary-color);
    background:
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(184, 134, 11, 0.1) 10px, rgba(184, 134, 11, 0.1) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(184, 134, 11, 0.1) 10px, rgba(184, 134, 11, 0.1) 20px),
        linear-gradient(135deg, #F5EFE0, #FFFFFF);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

[data-theme="secession"] .card {
    border: 2px solid var(--primary-color);
    box-shadow: 5px 5px 0 var(--secondary-color);
}

[data-theme="secession"] .section-header h2 {
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

[data-theme="secession"] .navbar {
    border-bottom: 3px solid var(--primary-color);
}

/* 19. Brutalist Graphic - Raw digital, anti-design, system defaults */
[data-theme="brutalist"] {
    --bg-color: #0000FF;
    --surface-color: #C0C0C0;
    --primary-color: #000000;
    --secondary-color: #FFFFFF;
    --accent-color: #FF0000;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: monospace;
    --font-body: monospace;
    --border-radius: 0;
    --border-width: 3px;
    --border-style: solid;
    --shadow: 6px 6px 0 #000;
}

[data-theme="brutalist"] .visual-element {
    background: #FFFFFF;
    border: 6px solid black;
    width: 300px;
    height: 300px;
    box-shadow: 10px 10px 0 var(--accent-color);
}

[data-theme="brutalist"] .card {
    background: #C0C0C0;
    border: 3px solid #000;
    box-shadow: 5px 5px 0 #000;
}

[data-theme="brutalist"] .section-header h2 {
    text-transform: uppercase;
    text-decoration: underline;
}

[data-theme="brutalist"] .navbar {
    background: #C0C0C0;
    border: 3px solid #000;
}

[data-theme="brutalist"] .cta-button {
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
}

/* 20. Orientalism - Arabian nights blues, harem purples, spice market golds */
[data-theme="orientalism"] {
    --bg-color: #0F1A3D;
    --surface-color: #1E2D5A;
    --primary-color: #FFD700;
    --secondary-color: #9B30FF;
    --accent-color: #FF6B35;
    --text-primary: #FFF8DC;
    --text-secondary: #E8D8B8;
    --font-heading: 'Aref Ruqaa', serif;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 8px 8px 0 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

/* Orientalism arabesque pattern */
[data-theme="orientalism"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 75% 75%, rgba(155, 48, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="orientalism"] .visual-element {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 3px solid var(--accent-color);
    animation: orientalism-float 3s infinite ease-in-out;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

[data-theme="orientalism"] .card {
    background: linear-gradient(135deg, #1E2D5A, #0F1A3D);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

[data-theme="orientalism"] .section-header h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="orientalism"] .navbar {
    background: linear-gradient(to bottom, #1E2D5A, #0F1A3D);
    border-bottom: 2px solid var(--primary-color);
}

@keyframes orientalism-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .sinergia-container,
    .location-container,
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================= NEW THEMES (21-40) ================= */

/* 21. Cyberpunk */
[data-theme="cyberpunk"] {
    --bg-color: #0b0b0b;
    --surface-color: #121212;
    --primary-color: #00ff9d;
    --secondary-color: #ff00ff;
    --accent-color: #00f3ff;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 0 10px var(--primary-color);
}

[data-theme="cyberpunk"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 999;
}

[data-theme="cyberpunk"] .visual-element {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    background: repeating-linear-gradient(45deg, var(--primary-color), var(--primary-color) 10px, var(--bg-color) 10px, var(--bg-color) 20px);
    box-shadow: 0 0 20px var(--primary-color), inset 0 0 20px var(--secondary-color);
    animation: cyberpunk-glitch 2s infinite;
}

[data-theme="cyberpunk"] .card {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
    position: relative;
}

[data-theme="cyberpunk"] .card::after {
    content: 'ERR_01';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.7rem;
    color: var(--secondary-color);
    font-family: monospace;
}

@keyframes cyberpunk-glitch {
    0% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(-5px, 5px);
    }

    20% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(5px, -5px);
    }

    40% {
        clip-path: inset(40% 0 40% 0);
        transform: translate(-5px, 5px);
    }

    60% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(5px, -5px);
    }

    80% {
        clip-path: inset(20% 0 70% 0);
        transform: translate(-5px, 5px);
    }

    100% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(0, 0);
    }
}

/* 22. Minimalist */
[data-theme="minimalist"] {
    --bg-color: #ffffff;
    --surface-color: #f9f9f9;
    --primary-color: #2c2c2c;
    --secondary-color: #e0e0e0;
    --accent-color: #757575;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 8px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

[data-theme="minimalist"] .visual-element {
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

[data-theme="minimalist"] .card {
    border: 1px solid #eee;
    background: #fff;
}

[data-theme="minimalist"] .navbar {
    border-bottom: 1px solid #f0f0f0;
}

/* 23. Victorian */
[data-theme="victorian"] {
    --bg-color: #2e1a1a;
    --surface-color: #3d2b2b;
    --primary-color: #c5a059;
    --secondary-color: #800020;
    --accent-color: #004225;
    --text-primary: #e6d8b8;
    --text-secondary: #c0a080;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 4px;
    --border-width: 4px;
    --border-style: double;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="victorian"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, transparent 20%, #2e1a1a 120%),
        repeating-linear-gradient(45deg, rgba(197, 160, 89, 0.05) 0, rgba(197, 160, 89, 0.05) 10px, transparent 10px, transparent 20px);
    pointer-events: none;
    z-index: 0;
}

[data-theme="victorian"] .visual-element {
    background: radial-gradient(circle at 30% 30%, var(--secondary-color), #2e1a1a);
    border: 8px double var(--primary-color);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
    transform: rotate(45deg);
}

/* 24. Art Deco */
[data-theme="art-deco"] {
    --bg-color: #1a1a1a;
    --surface-color: #262626;
    --primary-color: #d4af37;
    --secondary-color: #000000;
    --accent-color: #e5e5e5;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --font-heading: 'Poiret One', cursive;
    --font-body: 'Jost', sans-serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="art-deco"] .visual-element {
    background: repeating-linear-gradient(90deg, var(--primary-color) 0, var(--primary-color) 2px, transparent 2px, transparent 10px);
    border: 4px solid var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

[data-theme="art-deco"] .card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
}

[data-theme="art-deco"] .section-header h2 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 3px double var(--primary-color);
    display: inline-block;
}

/* 25. Steampunk */
[data-theme="steampunk"] {
    --bg-color: #2b2118;
    --surface-color: #3e2f22;
    --primary-color: #cd7f32;
    --secondary-color: #b8860b;
    --accent-color: #8b4513;
    --text-primary: #e8dcc8;
    --text-secondary: #c2a788;
    --font-heading: 'Rye', serif;
    --font-body: 'Cormorant Garamond', serif;
    --border-radius: 6px;
    --border-width: 3px;
    --border-style: solid;
    --shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

[data-theme="steampunk"] .visual-element {
    background: radial-gradient(circle, #cd7f32, #2b2118);
    border: 8px dashed var(--secondary-color);
    border-radius: 50%;
    animation: steampunk-spin 10s infinite linear;
}

[data-theme="steampunk"] .card {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231a120b' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    border: 4px solid var(--primary-color);
    box-shadow: 5px 5px 0 var(--accent-color);
}

@keyframes steampunk-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 26. Brutalist (Concrete) */
[data-theme="brutalist-concrete"] {
    --bg-color: #808080;
    --surface-color: #999999;
    --primary-color: #ff4500;
    --secondary-color: #2f2f2f;
    --accent-color: #e0e0e0;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 0;
    --border-width: 0;
    --border-style: none;
    --shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}

[data-theme="brutalist-concrete"] .visual-element {
    background: #a0a0a0;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 0 100%, 0 10%);
    box-shadow: 15px 15px 0 var(--secondary-color);
}

[data-theme="brutalist-concrete"] .card {
    background: #b0b0b0;
    border-left: 10px solid var(--primary-color);
}

/* 27. Synthwave */
[data-theme="synthwave"] {
    --bg-color: #120428;
    --surface-color: #1f0b3d;
    --primary-color: #ff00ff;
    --secondary-color: #00ffff;
    --accent-color: #ff9900;
    --text-primary: #ffffff;
    --text-secondary: #d1b3ff;
    --font-heading: 'Audiowide', cursive;
    --font-body: 'Jost', sans-serif;
    --border-radius: 12px;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 0 15px var(--primary-color);
}

[data-theme="synthwave"]::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40vh;
    background: linear-gradient(to top, rgba(255, 0, 255, 0.1), transparent);
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, .3) 25%, rgba(0, 255, 255, .3) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, .3) 75%, rgba(0, 255, 255, .3) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 255, 255, .3) 25%, rgba(0, 255, 255, .3) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, .3) 75%, rgba(0, 255, 255, .3) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    pointer-events: none;
    z-index: -1;
}

[data-theme="synthwave"] .visual-element {
    background: linear-gradient(to bottom, #ff9900, #ff00ff);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%, 0 60%, 100% 60%, 100% 65%, 0 65%, 0 70%, 100% 70%, 100% 100%, 0 100%);
}

/* 28. Organic */
[data-theme="organic"] {
    --bg-color: #f3f4ed;
    --surface-color: #ffffff;
    --primary-color: #6b8c42;
    --secondary-color: #8b5a2b;
    --accent-color: #a4c639;
    --text-primary: #2f3a25;
    --text-secondary: #5c6b4e;
    --font-heading: 'Comfortaa', cursive;
    --font-body: 'Quicksand', sans-serif;
    --border-radius: 20px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 10px 30px rgba(107, 140, 66, 0.15);
}

[data-theme="organic"] .visual-element {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: #6b8c42;
    animation: organic-morph 8s ease-in-out infinite;
}

@keyframes organic-morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* 29. Sci-Fi Futurista */
[data-theme="scifi"] {
    --bg-color: #050a14;
    --surface-color: #0f1926;
    --primary-color: #00a8ff;
    --secondary-color: #0055ff;
    --accent-color: #ffffff;
    --text-primary: #e0f0ff;
    --text-secondary: #80a0c0;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --border-radius: 4px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 0 20px rgba(0, 168, 255, 0.1);
}

[data-theme="scifi"] .card {
    border: 1px solid rgba(0, 168, 255, 0.3);
    background: rgba(15, 25, 38, 0.8);
    backdrop-filter: blur(5px);
    position: relative;
}

[data-theme="scifi"] .card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
}

[data-theme="scifi"] .card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

/* 30. Vintage Retro */
[data-theme="vintage"] {
    --bg-color: #fdf6e3;
    --surface-color: #eee8d5;
    --primary-color: #cb4b16;
    --secondary-color: #2aa198;
    --accent-color: #b58900;
    --text-primary: #586e75;
    --text-secondary: #93a1a1;
    --font-heading: 'Lobster', cursive;
    --font-body: 'Courier Prime', monospace;
    --border-radius: 2px;
    --border-width: 1px;
    --border-style: dashed;
    --shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
}

[data-theme="vintage"] .visual-element {
    background: repeating-linear-gradient(45deg, #cb4b16 0, #cb4b16 10px, #fdf6e3 10px, #fdf6e3 20px);
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

/* 31. Industrial */
[data-theme="industrial"] {
    --bg-color: #2b2b2b;
    --surface-color: #383838;
    --primary-color: #ffc107;
    --secondary-color: #555555;
    --accent-color: #000000;
    --text-primary: #dcdcdc;
    --text-secondary: #999999;
    --font-heading: 'Black Ops One', cursive;
    --font-body: 'Roboto Condensed', sans-serif;
    --border-radius: 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

[data-theme="industrial"] .card {
    border: 2px solid #555;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.1) 5px, rgba(0, 0, 0, 0.1) 10px);
}

[data-theme="industrial"] .cta-button {
    background: repeating-linear-gradient(45deg, #ffc107, #ffc107 10px, #e0a800 10px, #e0a800 20px);
    color: #000;
    font-weight: 900;
}

/* 32. Gothic */
[data-theme="gothic"] {
    --bg-color: #0a0a0a;
    --surface-color: #1a0505;
    --primary-color: #800000;
    --secondary-color: #4b0082;
    --accent-color: #2f4f4f;
    --text-primary: #d3d3d3;
    --text-secondary: #808080;
    --font-heading: 'UnifrakturMaguntia', cursive;
    --font-body: 'Crimson Text', serif;
    --border-radius: 4px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 0 25px rgba(128, 0, 0, 0.4);
}

[data-theme="gothic"] .visual-element {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(to bottom, #000, #800000);
    border-bottom: 5px solid #4b0082;
}

/* 33. Tropical */
[data-theme="tropical"] {
    --bg-color: #e0f7fa;
    --surface-color: #ffffff;
    --primary-color: #00bfa5;
    --secondary-color: #ff6e40;
    --accent-color: #ffd740;
    --text-primary: #004d40;
    --text-secondary: #00695c;
    --font-heading: 'Pacifico', cursive;
    --font-body: 'Nunito', sans-serif;
    --border-radius: 25px;
    --border-width: 0;
    --border-style: none;
    --shadow: 0 10px 20px rgba(0, 191, 165, 0.2);
}

[data-theme="tropical"] .visual-element {
    background: linear-gradient(45deg, #ffd740, #ff6e40);
    border-radius: 50% 50% 0 50%;
    transform: rotate(-15deg);
}

/* 34. Material Design */
[data-theme="material"] {
    --bg-color: #fafafa;
    --surface-color: #ffffff;
    --primary-color: #6200ee;
    --secondary-color: #03dac6;
    --accent-color: #3700b3;
    --text-primary: #000000;
    --text-secondary: #666666;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --border-radius: 4px;
    --border-width: 0;
    --border-style: none;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

[data-theme="material"] .card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: box-shadow 0.3s cubic-bezier(.25, .8, .25, 1);
}

[data-theme="material"] .card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* 35. Memphis Style */
[data-theme="memphis"] {
    --bg-color: #fff0f5;
    --surface-color: #ffffff;
    --primary-color: #ff1493;
    --secondary-color: #00ced1;
    --accent-color: #ffd700;
    --text-primary: #000000;
    --text-secondary: #333333;
    --font-heading: 'Righteous', cursive;
    --font-body: 'Karla', sans-serif;
    --border-radius: 0;
    --border-width: 3px;
    --border-style: solid;
    --shadow: 8px 8px 0 #000;
}

[data-theme="memphis"] .visual-element {
    background-image: radial-gradient(#000 20%, transparent 20%);
    background-size: 20px 20px;
    background-color: var(--secondary-color);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

/* 36. Nordic/Escandinavo */
[data-theme="nordic"] {
    --bg-color: #f4f6f8;
    --surface-color: #ffffff;
    --primary-color: #607d8b;
    --secondary-color: #90a4ae;
    --accent-color: #cfd8dc;
    --text-primary: #37474f;
    --text-secondary: #546e7a;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --border-radius: 8px;
    --border-width: 0;
    --border-style: none;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="nordic"] .visual-element {
    background: #eceff1;
    border-radius: 50%;
}

/* 37. Barroco */
[data-theme="baroque"] {
    --bg-color: #2c1b18;
    --surface-color: #3e2723;
    --primary-color: #ffd700;
    --secondary-color: #800000;
    --accent-color: #d2691e;
    --text-primary: #fff8e1;
    --text-secondary: #ffecb3;
    --font-heading: 'Cinzel Decorative', cursive;
    --font-body: 'Cardo', serif;
    --border-radius: 15px;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="baroque"] .visual-element {
    background: radial-gradient(circle, #ffd700, #800000);
    border: 5px double #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px #ffd700;
}

/* 38. Grunge */
[data-theme="grunge"] {
    --bg-color: #3e3e3e;
    --surface-color: #4f4f4f;
    --primary-color: #8b0000;
    --secondary-color: #2f4f4f;
    --accent-color: #000000;
    --text-primary: #d3d3d3;
    --text-secondary: #a9a9a9;
    --font-heading: 'Special Elite', cursive;
    --font-body: 'Special Elite', cursive;
    --border-radius: 2px;
    --border-width: 1px;
    --border-style: dashed;
    --shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

[data-theme="grunge"] .card {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
    transform: rotate(1deg);
}

/* 39. Art Nouveau (Floral) */
[data-theme="art-nouveau-floral"] {
    --bg-color: #f0f5f0;
    --surface-color: #ffffff;
    --primary-color: #556b2f;
    --secondary-color: #8fbc8f;
    --accent-color: #deb887;
    --text-primary: #2f4f4f;
    --text-secondary: #556b2f;
    --font-heading: 'Cinzel Decorative', cursive;
    --font-body: 'Alice', serif;
    --border-radius: 15px 0 15px 0;
    --border-width: 2px;
    --border-style: solid;
    --shadow: 0 5px 15px rgba(85, 107, 47, 0.2);
}

[data-theme="art-nouveau-floral"] .visual-element {
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, #8fbc8f, #deb887);
}

/* 40. Glassmorphism */
[data-theme="glassmorphism"] {
    --bg-color: #e0e5ec;
    --surface-color: rgba(255, 255, 255, 0.25);
    --primary-color: #007bff;
    --secondary-color: #6610f2;
    --accent-color: #ffffff;
    --text-primary: #333333;
    --text-secondary: #555555;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --border-radius: 16px;
    --border-width: 1px;
    --border-style: solid;
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

[data-theme="glassmorphism"]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

[data-theme="glassmorphism"] .card,
[data-theme="glassmorphism"] .navbar,
[data-theme="glassmorphism"] .sinergia-container,
[data-theme="glassmorphism"] .location-container,
[data-theme="glassmorphism"] .contact-form,
[data-theme="glassmorphism"] footer {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

[data-theme="glassmorphism"] .visual-element {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}