/* =======================================
   FONTS
   ======================================= */
@font-face {
    font-family: 'Akzidenz Grotesk Extended';
    src: url('refs/OneDrive_1_10-3-2026/03_TIPOGRAFÍAS/Akzidentz Grotesk/AkzidenzGrotesk-Extended.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Akzidenz Grotesk Extended';
    src: url('refs/OneDrive_1_10-3-2026/03_TIPOGRAFÍAS/Akzidentz Grotesk/AkzidenzGrotesk-BoldExtended.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* =======================================
   CSS VARIABLES & THEME SETUP
   ======================================= */
:root {
    /* Brand Saffron Yellow */
    --primary: #d8da00;
    --primary-hover: #c2c400;

    --bg-dark: #0a0a0a;
    --bg-light: #ffffff;
    --bg-offwhite: #f5f5f5;

    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-muted: #888888;

    --font-sans: 'Akzidenz Grotesk Extended', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Used for precise spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

/* =======================================
   RESET & TYPOGRAPHY
   ======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);

    /* Apply user's background seamlessly across these sections via fixed attachment */
    background-image: url('refs/fondo-roto.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

h1,
h2,
h3,
h4 {
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.highlight {
    color: var(--primary);
}

.mt-2 {
    margin-top: 2rem;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.cursor.hovering {
    width: 50px;
    height: 50px;
    background-color: rgba(242, 78, 30, 0.2);
    border-color: transparent;
}

/* =======================================
   LAYOUT UTILITIES
   ======================================= */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* =======================================
   COMPONENTS
   ======================================= */
/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-hover);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--text-light);
}

/* Hover Underline effect */
.hvr-underline {
    position: relative;
}

.hvr-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.hvr-underline:hover::after {
    width: 100%;
}

/* Black & White Images */
.bw-image {
    filter: grayscale(100%) contrast(1.1);
    transition: var(--transition);
}

.bw-image:hover,
.client-card:hover .bw-image {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

/* =======================================
   HEADER & NAV
   ======================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 60px;
    transition: var(--transition);
}

.logo-link {
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: transparent;
}

.nav-link:hover::before {
    top: 0;
}

.nav-contact-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    border-radius: 2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
}

.nav-contact-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* =======================================
   HERO SECTION
/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.65);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    z-index: -1;
}

.hero-angled-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background-color: rgba(216, 218, 0, 0.45);
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero-angled-overlay-dark {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
    clip-path: polygon(0 0, 60% 0, 80% 50%, 0 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    color: var(--bg-dark);
    z-index: 1;
    max-width: 50%;
    padding: 0 5%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 7.5rem);
    margin-bottom: 0.8rem;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--bg-dark);
    /* Black text on yellow */
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(10, 10, 10, 0.9);
    /* Black text on yellow */
    max-width: 90%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 5%;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

@media (max-width: 992px) {
    .hero-angled-overlay {
        width: 80%;
        clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
    }

    .hero-content {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .hero-angled-overlay {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    }

    .hero-angled-overlay-dark {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 25%, 0 100%);
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .scroll-indicator {
        right: 20px;
    }
}

/* =======================================
   MANIFESTO
   ======================================= */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.manifesto-lead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.image-wrapper {
    overflow: hidden;
    height: 600px;
    position: relative;
    /* Forma irregular (trapecio) */
    clip-path: polygon(0 5%, 100% 0, 95% 100%, 5% 95%);
    transition: clip-path 0.5s ease-in-out;
}

.image-wrapper:hover {
    /* Ligera animación al pasar el ratón */
    clip-path: polygon(0 2%, 100% 0, 98% 100%, 2% 98%);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =======================================
   XTREME COLLAGE
   ======================================= */
.xtreme-collage {
    position: relative;
    width: 100%;
    height: 700px;
}

.collage-item {
    position: absolute;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-color: var(--bg-dark);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-1 {
    width: 58%;
    height: 480px;
    top: 0;
    left: 0;
    z-index: 2;
    clip-path: polygon(0 2%, 100% 0, 95% 100%, 5% 98%);
    transform: rotate(-3deg);
}

.collage-1 img {
    object-position: 20% 80%;
}

.collage-3 {
    width: 65%;
    height: 450px;
    bottom: 0;
    right: 5%;
    z-index: 3;
    clip-path: polygon(2% 5%, 98% 0, 100% 98%, 0 95%);
    transform: rotate(-2deg);
}

.collage-item:hover {
    z-index: 10;
    transform: scale(1.05) rotate(0deg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .xtreme-collage {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .xtreme-collage {
        height: 500px;
        margin-top: 2rem;
    }

    .collage-1 {
        width: 65%;
        height: 320px;
    }

    .collage-3 {
        width: 75%;
        height: 300px;
        bottom: 0;
        left: auto;
        right: 0;
    }
}

/* =======================================
   SERVICES
   ======================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* =======================================
   CLIENTS (Grid Layout)
   ======================================= */
.clients-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.client-card {
    position: relative;
    overflow: hidden;
    background: #000;
    aspect-ratio: 3/4;
}

.client-image {
    width: 100%;
    height: 100%;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transition: var(--transition);
}

.client-card:hover .client-overlay {
    bottom: 0;
}

.client-overlay h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.client-overlay p {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* =======================================
   NEWS (Professional Card Layout)
   ======================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: none;
    transition: var(--transition);
    display: block;
}

.news-card:hover .news-card-image {
    filter: brightness(1.1);
}

.news-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-card-category {
    background: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.65rem;
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
}

.news-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-top: 0.5rem;
    transition: var(--transition);
}

.news-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-card-link:hover::after {
    transform: translateX(4px);
}

.news-card-link:hover {
    color: var(--text-light);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.view-all-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    color: var(--text-light);
}

.view-all-link:hover::after {
    transform: translateX(4px);
}

/* =======================================
   CLIENTS TEASER (Homepage strip)
   ======================================= */
.clients-teaser {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.clients-teaser-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.teaser-img-wrap {
    overflow: hidden;
    height: 360px;
    position: relative;
}

.teaser-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.teaser-img-wrap:hover img {
    transform: scale(1.04);
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 768px) {
    .clients-teaser-images {
        grid-template-columns: 1fr;
    }

    .teaser-img-wrap {
        height: 280px;
    }
}

/* =======================================
   BRANDS TICKER (Infinite Scroll)
   ======================================= */
.brands {
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
}

.brands-ticker-wrap {
    width: 100%;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    /* Gradient masks to fade the edges smoothly */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-ticker {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}



.brands-group {
    display: flex;
    justify-content: space-around;
    /* Make the width perfectly calculate so the 100% transform works */
}

.brand-item {
    width: 250px;
    margin: 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 1;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly -50% of the entire track (which equals exactly 1 group width) */
        transform: translateX(-50%);
    }
}

/* =======================================
   FOOTER
   ======================================= */
.footer {
    background-color: #050505;
    color: var(--text-light);
    padding: var(--spacing-xl) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-contact h3,
.footer-social h3 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    font-weight: 600;
}

.social-link:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--primary);
}

/* =======================================
   ANIMATIONS UTILS (Triggered via JS)
   ======================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* =======================================
   RESPONSIVE DESIGN
   ======================================= */
@media (max-width: 1024px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .navbar {
        justify-content: space-between;
        gap: 0;
    }

    .nav-links,
    .nav-contact-btn {
        display: none;
        /* Add mobile menu later */
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 1000;
    }

    .menu-toggle .bar {
        width: 30px;
        height: 2px;
        background-color: var(--text-light);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =======================================
   CAROUSEL OVERRIDES FOR NEWS
   ======================================= */
.news-carousel-wrapper {
    position: relative;
    width: 100%;
}

.news-grid {
    display: flex !important;
    /* Override grid */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 2rem;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.news-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.news-card {
    min-width: 320px;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.news-nav-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.news-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

/* =======================================
   BACKGROUND WATERMARKS (USER LOGO)
   ======================================= */

.relative-section {
    position: relative;
    overflow: hidden;
    /* This absolutely prevents logos from bleeding into the top screen */
}

img.bg-floating-logo {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: overlay;
    user-select: none;
    height: auto;
}

/* Grey sections dark contrast */
.bg-dark img.bg-floating-logo {
    opacity: 0.04;
    mix-blend-mode: lighten;
}

/* Light sections (like Manifesto) might need different blend mode or opacity if using a dark image */
.manifesto img.bg-floating-logo {
    opacity: 0.05;
    mix-blend-mode: multiply;
}

/* Positions across sections (Varied in corners, rotated) */
.logo-pos-1 {
    top: -10%;
    left: -10vw;
    /* Movido a la izquierda */
    width: 50vw;
    max-width: 600px;
    transform: rotate(-15deg);
}

img.logo-pos-tire {
    bottom: -5%;
    /* Esquina inferior */
    right: -10vw;
    /* Esquina derecha */
    width: 45vw;
    /* Grande */
    max-width: 700px;
    transform: rotate(-10deg);
    mix-blend-mode: multiply !important;
    /* Forza eliminar el fondo blanco */
    opacity: 0.6 !important;
    /* Forza una visibilidad mayor */
    z-index: 0;
}

.logo-pos-2 {
    bottom: 5%;
    left: -5vw;
    width: 45vw;
    max-width: 600px;
    transform: rotate(-25deg);
}

.logo-pos-3 {
    top: 5%;
    right: -5vw;
    width: 35vw;
    max-width: 500px;
    transform: rotate(5deg);
}

.logo-pos-2 {
    bottom: 5%;
    left: -5vw;
    width: 45vw;
    max-width: 600px;
    transform: rotate(-25deg);
}

.logo-pos-3 {
    top: 5%;
    right: -5vw;
    width: 35vw;
    max-width: 500px;
    transform: rotate(5deg);
}

logo-pos-3 {
    top: 5%;
    right: -5vw;
    width: 35vw;
    max-width: 500px;
    transform: rotate(5deg);
}