* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;

}


html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.top-inf {
    background-color: #222;
    color: #fff;
    font-size: 14px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.top-left span,
.top-right span {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.redes a {
    color: #ffcc00;
    text-decoration: none;
    margin-left: 10px;
    font-size: 20px;
    transition: 0.3s ease;
}

.redes a:hover {
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}


.top-inf {
    border-bottom: 2px solid #ccc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nv {
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nv img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-top: -10px;
}

.nv-lst {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nv-lst a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
    padding: 5px 0;
}

.nv-lst a:hover {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
}

.nv-usr {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nv-usr a {
    color: #ffcc00;
    font-size: 34px;
    text-decoration: none;
    transition: color 0.3s;
}

.nv-usr a:hover {
    color: #ffcc00;
}



.activaciones-panel {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: #111;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    color: #eee;
}

.activaciones-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffdd00;
    margin-bottom: 36px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.activaciones-wrapper {
    display: flex;
    gap: 30px;
}

.activaciones-sidebar {
    display: flex;
    flex-direction: column;
    width: 190px;
    border-right: 3px solid #444;
    padding-right: 18px;
}

.year-btn {
    background-color: #222;
    color: #ffdd00;
    border: none;
    margin-bottom: 16px;
    padding: 18px 24px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    border-radius: 12px 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.year-btn i {
    font-size: 1.5rem;
}

.year-btn:hover:not(.active) {
    background-color: #444;
    color: #ffdd00;
}

.year-btn.active {
    background-color: #ffdd00;
    color: #111;
    box-shadow: none;
    position: relative;
    top: 2px;
    z-index: 10;
}

.year-btn:focus-visible {
    outline: 2px solid #ffdd00;
    outline-offset: 2px;
}

.activaciones-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.brands-list button {
    background-color: #222;
    border: 2px solid #ffdd00;
    color: #ffdd00;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.brands-list button.active,
.brands-list button:hover {
    background-color: #ffdd00;
    color: #111;
    border-color: #111;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    grid-auto-flow: dense;
    align-items: start;
}

.images-grid img {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid #ffdd00;
    cursor: pointer;
    background-color: #000;
    padding: 4px;
    display: block;
}

.images-grid img:hover {
    border-color: #ffd700;

}

@media (max-width: 1024px) {
    .activaciones-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .activaciones-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        padding-right: 0;
        gap: 12px;
        scrollbar-width: thin;
    }

    .year-btn {
        flex: 0 0 auto;
        border-radius: 12px;
    }

    .activaciones-main {
        flex-grow: 1;
    }
}

@media (max-width: 768px) {
    .activaciones-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .brands-list button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .images-grid img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .year-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .images-grid img {
        height: 160px;
    }

    .brands-list {
        gap: 10px;
    }

    .brands-list button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.form-wrapper {
    display: flex;
    max-width: 900px;
    margin: 80px auto;
    border-radius: 16px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    background-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.form-wrapper:hover {

    box-shadow: 0 14px 40px rgba(255, 215, 0, 0.6);
}

.form-image {
    width: 45%;
    background: url('Imagenes/1.jpg') no-repeat center center;
    background-size: cover;
}

.form-box {
    width: 55%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000000;
}

.form-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    position: relative;
    flex: 1;
    margin-bottom: 12px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 12px;
    border: 1px solid #e6b800;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background-color: #fff8b3;
    color: #000000;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%207%205-7H0z%22%20fill%3D%22%23000%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 7px;
    cursor: pointer;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 0 5px;
    color: #000000;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #000000;
    font-weight: 600;
}

.form-group select:invalid+label {
    top: 50%;
    font-size: 14px;
    color: #000000;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}

.boton-enviar {
    margin-top: 15px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background-color: #f0ff1f;
    color: #fffb00;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boton-enviar:hover {
    background-color: #f0ff1f;
    transform: translateY(-2px);
}

.boton-enviar .btn-icon {
    margin-right: 8px;
    font-size: 18px;
}


.Men-card {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    text-align: center;
    max-width: 400px;
    animation: fadeIn 0.4s ease-out;
}

.Men-card p {
    margin-bottom: 20px;
    font-size: 16px;
}

.Men-card button {
    padding: 10px 25px;
    background-color: #ffcc00;
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.Men-card button:hover {
    background-color: #e6b800;
}

.Men-card .success-message {
    display: inline-block;
    background-color: #ffdd00;
    /* amarillo sólido */
    color: #111;
    /* texto oscuro */
    font-size: 18px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.5s ease-out;
    margin-bottom: 20px;
    text-align: center;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
    }

    .form-image {
        width: 100%;
        height: 180px;
    }

    .form-box {
        width: 100%;
        padding: 25px 20px;
    }

    .form-row {
        flex-direction: column;
    }
}

.boton-enviar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #222;
    color: #ffd900;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: background-color 0.3s ease;
}

.boton-enviar:hover {
    background-color: #333;
}

.btn-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.btn-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.boton-enviar:hover .btn-text {
    width: 60px;
    opacity: 1;
}

@media (max-width: 768px) {

    .nv-lst,
    .top-inf {
        display: none;
    }

    .nv {
        justify-content: space-between;
        padding: 10px 20px;
    }

    .nv img {
        max-height: 50px;
    }

    #btn-menu {
        display: block;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 20px;
        max-width: 350px;
        margin: 30px auto 0 auto;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        width: 100%;
    }

    .form-box h2 {
        font-size: 1.8rem;
        text-align: center;
    }



    .form-image {
        border-radius: 14px;
        height: 220px;
        background-size: cover;
        background-position: center;
        margin-bottom: 20px;
    }
}

.sider {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100%;
    background: linear-gradient(to bottom right, #000000, #1a1a1a);
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
    padding: 25px 20px;
    z-index: 1000;
    transition: right 0.3s ease;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sider.activo {
    right: 0;
}

.sider-header {
    position: relative;
    padding: 6px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 25px;
    background-color: #ffee00;
    border-bottom: 1px solid #444;
}

.sider-header h3 {
    text-align: center;
    color: #000000;
    margin: 0;
    font-size: 20px;
}

.btn-cerrar {
    position: absolute;
    top: 5px;
    right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-cerrar:hover {
    transform: scale(1.2);
}

.btn-cerrar {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #000;
}


.sider ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sider ul li {
    margin: 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sider ul li i {
    color: #ffd700;
    font-size: 20px;
}

.sider ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s, transform 0.2s;
}

.sider ul li a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.sider .redes-sociales {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.sider .redes-sociales a {
    color: #ffd700;
    font-size: 26px;
    width: 50px;
    height: 50px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.sider .redes-sociales a:hover {
    transform: scale(1.2);
    background: rgba(255, 215, 0, 0.1);
}

.menu-sider-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sider {
    overflow-y: auto;
}

@media (max-width: 768px) {
    .top-inf {
        display: none;
    }
}

.menu-sider-list li a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #ffd700;
    border-radius: 10px;
    padding: 5px 10px;
    color: white;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.menu-sider-list li a i {
    color: #ffd700;
    font-size: 20px;
    transition: color 0.3s;
}

.menu-sider-list li a span {
    flex-grow: 1;
}

.menu-sider-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.menu-sider-list li a:hover i {
    color: #ffffff;
}

.sider-img {
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
    border-radius: 25px;
    border: 2px solid #ffd700;
}

@media screen and (max-width: 768px) {
    .nv-lst {
        display: none;
    }
}

.mision-vision {
    background-color: #000;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
}

.mision-vision::before,
.mision-vision::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ffcc0033, transparent 70%);
    animation: float 8s infinite ease-in-out;
    z-index: 0;
}

.mision-vision::before {
    top: -100px;
    left: -100px;
}

.mision-vision::after {
    bottom: -100px;
    right: -100px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

.card-mv {
    background-color: #111;
    border: 4px solid #ffcc00;
    border-radius: 20px;
    padding: 70px 30px 40px;
    max-width: 500px;
    flex: 1 1 300px;
    color: white;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    transition: transform 0.3s ease;
}

.card-mv .titulo {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 30px;
    border: 3px solid #ffcc00;
}

.card-mv .titulo i {
    font-size: 48px;
    color: #ffffff;
}

.card-mv .titulo h2 {
    font-size: 36px;
    color: #ffffff;
    margin: 0;
    font-weight: 800;
    font-family: 'Segoe UI', sans-serif;
}

.card-mv p {
    text-align: justify;
    line-height: 1.8;
    margin: 0;
    font-size: 18px;
    font-family: 'Segoe UI', sans-serif;
}

.icon-decor {
    position: absolute;
    font-size: 50px;
    color: #ffcc00;
    opacity: 0.25;
    z-index: 0;
    animation: float 4s ease-in-out infinite alternate;
    pointer-events: none;
}

.icon1 {
    top: 10%;
    left: 10%;
}

.icon2 {
    top: 8%;
    right: 5%;
}

.icon3 {
    bottom: 10%;
    left: 20%;
}

.icon4 {
    top: 80%;
    right: 10%;
}

.icon5 {
    top: 5%;
    left: 70%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.loader {
    border: 6px solid #fff3b0;
    border-top: 6px solid #ffdd00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-container span {
    font-weight: bold;
    font-size: 1rem;
    color: #ffdd00;
}