:root {
    --primary: #001a33;
    --secondary: #003366;
    --accent: #00a8e8;
    --accent-glow: rgba(0, 168, 232, 0.3);
    --text: #ffffff;
    --text-dark: #1a1a1a;
    --bg: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    z-index: 1000;
}

header.scrolled {
    padding: 15px 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

header.scrolled .logo-img {
    filter: none;
}

header.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Dropdown Suport --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    z-index: 2000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: var(--primary) !important;
    font-size: 0.85rem;
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: var(--accent) !important;
}

/* --- Botiga Online --- */
.btn-shop {
    background: var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* --- Botons Generals --- */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 20;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* --- Hero Section & Carousel --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 5%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* --- Promo Carousel Section --- */
.promo-section {
    padding: 100px 5% 60px;
    background: #ffffff;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 450px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
}

.promo-slide.active {
    opacity: 1;
    visibility: visible;
}

.promo-image {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1));
}

.promo-content {
    flex: 0.8;
    background: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.promo-badge {
    padding: 6px 15px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.promo-content h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 35px;
}

/* Transicions de text */
.fade-up-enter-active,
.fade-up-leave-active {
    transition: all 0.6s ease-out;
}

.fade-up-enter-from {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up-leave-to {
    opacity: 0;
    transform: translateY(-30px);
}

/* --- Botó Tornar a Dalt --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* --- Indicador de Scroll --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator a:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

h1 span {
    background: linear-gradient(to right, #ffffff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Secció Qui Som --- */
.about-section {
    padding: 120px 5%;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

.about-content h2,
.about-text h2 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-content p,
.about-text p,
.history-text p,
.history-literal p {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.stat-item {
    padding-left: 30px;
    border-left: 4px solid var(--accent);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- Secció de Serveis --- */
.services-section {
    padding: 100px 5%;
    background: var(--bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-container a {
    text-decoration: none;
    color: inherit;
}

.card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    height: 100%;
}

.card:hover {
    transform: translateY(-12px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* --- Seccions Detallades --- */
.detail-section {
    padding: 120px 5%;
    background: #ffffff;
}

.detail-section.alt-bg {
    background: #f8fafc;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.detail-container.reverse {
    direction: ltr;
}

.detail-container.reverse .detail-content {
    order: 2;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-content h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.detail-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: #1e293b;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

/* --- Targetes Visuals --- */
.visual-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 50px;
    border-radius: 40px;
    color: white;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.tech-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.furniture-card {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

.visual-badge {
    background: var(--accent);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
}

.visual-item {
    margin-top: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    opacity: 0.9;
}

/* --- IT Services Grid --- */
.it-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.it-item {
    background: rgba(0, 168, 232, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 168, 232, 0.1);
    transition: var(--transition);
}

.it-item:hover {
    background: rgba(0, 168, 232, 0.05);
    border-color: rgba(0, 168, 232, 0.3);
}

.it-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.it-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
}

/* --- Papereria Premium Components --- */
.premium-help-card {
    background: rgba(0, 168, 232, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.premium-help-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 5%;
    background: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-card:hover {
    background: #fdfdfd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.contact-card h4 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
}

/* Formulari */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 15px;
}

.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.form-success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success-message p {
    color: #64748b;
    margin-bottom: 30px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-instagram:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.contact-map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Footer --- */
footer {
    padding: 80px 5% 40px;
    background: var(--primary);
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    align-items: start;
}

.footer-column p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-column a {
    color: var(--accent);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* --- Pàgines Legals --- */
.legal-content-page {
    padding-top: 0;
    background: #ffffff;
}

.legal-hero {
    padding: 160px 5% 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin: 0;
}

.legal-text-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.text-container h2 {
    color: var(--primary);
    font-size: 2rem;
    margin: 40px 0 20px;
}

.text-container h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.text-container p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Taules Legals --- */
.table-responsive {
    overflow-x: auto;
    margin: 40px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 20px;
    border: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.legal-table td strong {
    color: var(--primary);
}

.legal-table ul {
    margin-top: 10px;
    padding-left: 20px;
}

.legal-table li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #475569;
}

/* --- Menú Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

header.scrolled .menu-toggle span {
    background: var(--primary);
}

.menu-toggle.active .bar1 {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar2 {
    opacity: 0;
}

.menu-toggle.active .bar3 {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Animacions Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    header {
        padding: 15px 5%;
        justify-content: space-between;
    }

    .logo-img {
        height: 35px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 40px;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        gap: 10px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 12px 0;
        color: white !important;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        border-radius: 12px;
        margin-top: 5px;
        padding: 5px 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu li a {
        color: white !important;
        font-size: 1rem;
        padding: 10px 15px;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: var(--accent) !important;
    }

    .btn-shop {
        display: inline-block;
        margin-top: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-container,
    .detail-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: left;
    }

    .about-content h2,
    .about-text h2,
    .detail-content h2,
    .contact-info h2 {
        font-size: 2.2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-container.reverse .detail-content {
        order: 0;
    }

    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .promo-container {
        height: auto;
        flex-direction: column;
        display: block;
    }

    .promo-slide {
        display: block;
        position: relative;
        opacity: 0;
        height: 0;
        overflow: hidden;
    }

    .promo-slide.active {
        opacity: 1;
        height: auto;
    }

    .promo-image {
        height: 250px;
        width: 100%;
    }

    .promo-content {
        padding: 40px 30px;
    }

    .promo-content h3 {
        font-size: 2rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    padding: 12px 18px;
    width: 90%;
    max-width: 900px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-content h3 {
    margin: 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions button {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

/* Móvil */
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.cookie-banner {
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.legal-form-info {
    margin-top: 20px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.legal-form-info p {
    margin-bottom: 8px;
    font-weight: 600;
}

.legal-form-info ul {
    padding-left: 18px;
    margin: 0;
}

.legal-form-info li {
    margin-bottom: 4px;
}

.cookie-settings {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-box {
    background: #ffffff;
    color: #222;
    width: 100%;
    max-width: 560px;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cookie-settings-box h3 {
    margin: 0 0 12px;
    color: #111;
}

.cookie-settings-intro {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

.cookie-option {
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #f8f8f8;
}

.cookie-option label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.cookie-option input {
    margin-top: 4px;
}

.cookie-option strong {
    color: #111;
}

.cookie-settings .cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .cookie-settings-box {
        padding: 22px;
    }

    .cookie-settings .cookie-actions {
        flex-direction: column;
    }

    .cookie-settings .cookie-actions button {
        width: 100%;
    }
}

.cookie-settings .btn-secondary {
    background: #0ea5e9;
    color: #fff;
}

.cookie-settings .btn-secondary:hover {
    background: #0284c7;
}

.cookie-banner .btn-secondary {
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.cookie-banner .btn-secondary:hover {
    background: #0ea5e9;
    color: #fff;
}

.it-highlight-card .visual-item {
    text-align: left;
    line-height: 1.4;
}

.it-highlight-card .visual-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 0.95rem;
}

.it-highlight-card .visual-item span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.85;
}