/* VAP INFORMATICA - GLOBAL MASTER CSS 2026 */
:root {
    --primary: #0ea5e9;
    /* Sky 500 - Bright Neon Blue */
    --accent: #6366f1;
    /* Indigo 500 - Electric Purple */
    --accent-hover: #4338ca;
    --dark: #0f172a;
    /* Slate 900 - Dark Text */
    --light-bg: #f8fafc;
    /* Slate 50 - Very Light Background */
    --card-bg: #ffffff;
    /* White Card Background */
    --white: #ffffff;
    --black: #020617;
    --gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    /* Soft Shadow */
    --card-hover-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--light-bg);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo .logo-brand {
    color: var(--dark);
    margin-right: 3px;
    transition: color 0.3s;
}



.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links.active {
    top: 0%;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

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

.nav-links a.active {
    color: var(--primary);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30vh;
    padding: 60px 30px 80px;
    position: relative;
    background-image:
        radial-gradient(at 20% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(14, 165, 233, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
        linear-gradient(rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.95)),
        linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03), inset 0 0 60px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1.2;
    max-width: 1000px;
    z-index: 2;
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-devices {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: floatDevice 6s ease-in-out infinite;
}

@keyframes floatDevice {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 6s infinite alternate;
}

.hero h1,
.hero p {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    /* Fluid scale */
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--dark) 20%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.1));
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #475569;
    /* Slate 600 */
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 1rem;
    border: 2px solid rgba(14, 165, 233, 0.4);
    /* Primary color with transparency */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 0 5px rgba(0, 0, 0, 0.02);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    transform: translateY(-3px);
}

/* GRID SYSTEM */
.section {
    padding: 60px 0 80px 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARDS */
.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Subtle top highlight */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 0 20px rgba(14, 165, 233, 0.1);
    border-color: var(--primary);
}

/* MAP STYLING */
.map-container {
    margin-top: 20px;
    height: 400px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(1) contrast(1.1) saturate(1.4);
    /* Colorful and vibrant map */
    opacity: 1;
    transition: opacity 0.3s;
}

.map-iframe:hover {
    opacity: 1;
}


.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.card-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.card-body p {
    color: #475569;
    /* Slate 600 */
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-body ul {
    list-style: none;
    margin-bottom: 15px;
    color: #94a3b8;
}

.card-body li {
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.card-body li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #334155;
    padding: 60px 0 0 0;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    color: #475569;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.footer-rating {
    margin-top: 20px;
    padding: 15px;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    font-size: 0.9rem;
}

.footer-hours {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    color: var(--dark);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.footer-trust {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-trust i {
    color: var(--accent);
    margin-right: 8px;
}

.footer-payment {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-payment i {
    font-size: 1.8rem;
    color: #94a3b8;
    transition: 0.3s;
}

.footer-payment i:hover {
    color: var(--primary);
}

.footer-bottom {
    background: #e2e8f0;
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #1e293b;
}

.footer-bottom a {
    color: #1d4ed8;
    text-decoration: underline;
    font-weight: 600;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-attribution {
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-attribution a {
    color: rgba(137, 132, 132, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-attribution a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* STICKY CONTACT BAR (Desktop + Mobile) */
/* FLOATING CONTACT MENU */
.sticky-contact-bar {
    display: flex;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: transparent;
    z-index: 999;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
    box-shadow: none;
    padding: 0;
    border: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    opacity: 0;
    transform: scale(0) translateY(20px);
    pointer-events: none;
}

.sticky-contact-bar.active .sticky-btn {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.sticky-btn i {
    font-size: 1.4rem;
}

.sticky-btn span {
    position: absolute;
    right: 65px;
    background: var(--dark);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.sticky-btn:hover span {
    opacity: 1;
}

/* Toggle FAB */
.fab-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
    border: none;
    /* Remove default border */
    outline: none;
    /* Remove focus outline */
}

.sticky-contact-bar.active .fab-toggle {
    background: var(--dark);
}

.sticky-phone {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    transition-delay: 0.1s;
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    transition-delay: 0.05s;
}

.sticky-email {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    transition-delay: 0s;
}

.sticky-contact-bar.hidden {
    transform: translateY(120px);
}

/* ANIMATIONS */
/* REMOVED ALL ANIMATIONS TO ENSURE VISIBILITY */
@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: none;
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes pulseGlow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

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

.hero {
    /* animation: fadeInUp 0.8s ease-out; REMOVED FOR DEBUGGING */
}

.section {
    /* animation: fadeInUp 0.8s ease-out 0.2s backwards; Removed duplicate */
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1300px) {
    .nav-links {
        display: none;
        /* Hide by default, show flex when active */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform: none;
        /* Remove translation */
        height: auto;
        /* Auto height based on content */
        max-height: calc(100vh - 80px);
        /* Prevent overflow on small screens */
        overflow-y: auto;
        /* Enable scrolling */
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
        transition: none;
        /* Remove transition to allow instant close */
    }

    .nav-links.active {
        display: flex;
        animation: fadeInDown 0.3s ease-in-out;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 5px;
        /* Reduced from 15px */
    }

    .nav-links li:last-child {
        margin-bottom: 0;
    }

    .nav-links a {
        display: block;
        padding: 8px 10px;
        /* Reduced vertical padding */
        font-size: 1.05rem;
        /* Slightly smaller font */
    }

    .menu-toggle {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
        background: none;
        border: none;
        padding: 10px;
        transition: color 0.3s ease;
        z-index: 1002;
    }

    .menu-toggle:hover {
        color: var(--primary);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Overlay - Blurs the rest of the page */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darken background */
    backdrop-filter: blur(5px);
    /* Apply blur to everything behind overlay */
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    /* Below Navbar (1000) but above content */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {


    .hero h1 {
        margin-bottom: 16px;
        font-size: clamp(2.1rem, 8vw, 4.5rem);
    }

    .hero p {
        padding: 0 20px;
        /* Add horizontal padding on mobile */
        font-size: 1.1rem;
    }

    .hero {
        padding: 50px 0;
    }

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

    /* MOBILE FOOTER OPTIMIZATIONS */
    .footer {
        padding-bottom: 80px;
        /* Space for sticky bar */
    }

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

    /* Hide non-essential columns on mobile */
    .footer-col:nth-child(2) {
        display: none;
        /* Hide Quick Links */
    }

    /* Show Hours & Social on mobile as requested */
    .footer-col:nth-child(4) {
        display: block;
        text-align: center;
    }

    /* Hide payment icons on mobile */
    .footer-payment {
        display: none;
    }

    /* Larger touch targets for contact info */
    .footer-contact li {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-contact i {
        font-size: 1.2rem;
        width: 25px;
    }

    /* Larger social icons */
    .footer-social {
        justify-content: center;
        gap: 15px;
    }

    .footer-social a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* ABOUT SECTION STYLING */
.about-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-header {
    margin-bottom: 40px;
}

.about-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    white-space: nowrap;
    /* Prevents wrapping within the tag */
}

.about-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    /* Fluid typography */
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.1));
}

.about-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: #475569;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brand-category {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.brand-category h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-category ul {
    list-style: none;
    padding: 0;
}

.brand-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark);
}

.brand-category li:last-child {
    border-bottom: none;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    /* Prevents icon from shrinking */
    margin-top: 4px;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sticky-contact-bar {
        bottom: 80px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px 30px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-devices {
        max-height: 300px;
    }
}

/* Responsive adjustments for Chi Siamo */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-header h2 {
        font-size: 1.8rem;
    }
}

/* TESTIMONIALS & TRUST STYLING */
.hero-trust-badge {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.hero-trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, 0.3);
}

.testimonial-card {
    text-align: left;
    position: relative;
    padding-bottom: 20px;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px !important;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.1;
    color: var(--primary);
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--primary);
}

.testimonial-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.2rem;
    opacity: 0.2;
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-trust-badge {
        margin: 20px auto 10px auto;
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}


/* Brand Partnership Carousel - Minimalist Alternative */
.brand-carousel-section {
    width: 100%;
    background: transparent;
    margin: 0;
    position: relative;
}



.brand-carousel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 20px;
    min-height: 70px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brand-carousel::-webkit-scrollbar {
    display: none;
}

.brand-carousel:hover::-webkit-scrollbar {
    display: block;
    width: 6px;
    height: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-carousel:hover::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.brand-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary) 10%, var(--primary) 90%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-carousel:hover::after,
.brand-carousel:focus::after {
    opacity: 1;
}

.brand-carousel:hover::-webkit-scrollbar {
    display: block;
    width: 6px;
    height: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .brand-carousel {
        gap: 25px;
        padding: 0 15px;
    }

    .brand-logo {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .brand-carousel {
        gap: 20px;
        padding: 0 10px;
    }

    .brand-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .brand-carousel {
        gap: 15px;
        padding: 0 5px;
    }

    .brand-logo {
        height: 35px;
    }
}

/* Brand Wrapper - Full width container */
.brand-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    margin: 10px 0;
    padding: 10px 20px;
    background: white;
    box-shadow: var(--shadow);
    z-index: 10;
}

/* Responsive Brand Wrapper */
@media (max-width: 768px) {
    .brand-wrapper {
        position: relative;
        width: 100%;
        margin: 10px 0;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .brand-wrapper {
        position: relative;
        width: 100%;
        margin: 10px 0;
        padding: 8px 15px;
    }
}

/* About Card */
.about-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

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

.about-card p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-card .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-card .feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
}

.about-card .feature-item h4 {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-card .feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive About Card */
@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card .feature-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .about-card .feature-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 25px 15px;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }
}

/* Office Image Section */
.office-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.02) 0%, transparent 50%);
    border-radius: 16px;
    margin: 20px 0;
}

.office-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.08));
    animation: floatOffice 8s ease-in-out infinite;
}

@keyframes floatOffice {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    50% {
        transform: translateY(-15px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

/* Section Header - Simple Style like testimonials */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Centered Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

/* Portfolio Header */
.portfolio-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Legal Section */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-card-body {
    padding: 40px;
    text-align: left;
}

/* Hero Trust Badge */
.hero-trust-badge {
    margin-top: 30px;
    margin-bottom: 0;
}

.star-rating {
    color: #fbbf24;
}

.rating-link {
    text-decoration: none;
    color: inherit;
}

/* UTILITIES & SHARED HELPERS */
.text-center {
    text-align: center;
}

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

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

.text-large {
    font-size: 1.1rem;
}

.text-margin-bottom {
    margin-bottom: 30px;
}

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

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

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

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

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

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

.mt-4 {
    margin-top: 2rem;
}

.card-img-rounded {
    border-radius: 15px;
}

.btn-margin {
    margin: 10px;
}

.check-green {
    color: #10b981;
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

/* BREADCRUMBS */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 10px;
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #cbd5e1;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #94a3b8;
    pointer-events: none;
}

/* GUIDE DETAIL PAGE STYLES */
.guide-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    margin-top: 40px;
}

.guide-content h2 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.guide-content h3 {
    color: var(--dark);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.guide-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
}

.guide-content ul,
.guide-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #334155;
}

.guide-content li {
    margin-bottom: 10px;
}

.guide-step {
    background: var(--light-bg);
    padding: 25px;
    border-left: 4px solid var(--accent);
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.guide-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.guide-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rule-box {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.rule-item {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.rule-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
    line-height: 1;
}

.alert-info {
    background: #e0f2fe;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 5px solid var(--primary);
}

.alert-info h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.alert-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.alert-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.danger-text {
    color: #ef4444;
    font-weight: 700;
}

/* Code snippet style if needed */
code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #e11d48;
    font-size: 0.9em;
}

/* Guide Hero specific */
.hero-guide,
.hero {
    min-height: 40vh;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav[aria-label="breadcrumb"] {
        padding: 10px 10px;
    }

    nav[aria-label="breadcrumb"] .breadcrumb {
        width: 95%;
        font-size: 0.8rem;
    }

    .breadcrumb {
        flex-wrap: nowrap;
    }

    .breadcrumb li:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
        display: block;
        flex: 1;
    }

    .breadcrumb li:not(:last-child) {
        flex-shrink: 0;
    }

    .guide-content {
        padding: 20px;
        margin-top: 0;
        position: relative;
        z-index: 10;
        width: 95%;
    }

    .hero-guide,
    .hero {
        min-height: 30vh;
        padding-bottom: 60px;
        padding-top: 60px;
    }

    .rule-box {
        flex-direction: column;
    }
}

/* ACCESSIBILITY: REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}