/* =======================
   HOME
======================= */
.home {
    position: relative;
    overflow: hidden;

    padding: 170px 0 120px;

    background: linear-gradient(135deg,
            #ffffff 0%,
            #fff7f8 40%,
            #fff2f5 100%);
}

/* =======================
   FORMAS DE FONDO HOME
======================= */

.home-shape {
    position: absolute;
    top: -120px;
    right: -250px;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            rgba(220, 20, 60, .12),
            rgba(220, 20, 60, .04));

    filter: blur(40px);

    animation: pulseShape 20s ease-in-out infinite;

    z-index: 1;
}

.home::before {
    content: '';

    position: absolute;
    top: -80px;
    right: -100px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(220, 20, 60, .08);

    animation: floatOne 15s ease-in-out infinite;

    z-index: 1;
}

.home::after {
    content: '';

    position: absolute;
    bottom: -120px;
    left: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(220, 20, 60, .05);

    animation: floatTwo 18s ease-in-out infinite;

    z-index: 1;
}

/* =======================
   BURBUJAS HOME
======================= */

.bubble {
    position: absolute;

    border-radius: 50%;

    background: rgba(220, 20, 60, .08);

    backdrop-filter: blur(5px);

    z-index: 1;
}

.bubble-1 {
    width: 80px;
    height: 80px;

    top: 20%;
    left: 10%;

    animation: bubbleFloat 10s infinite ease-in-out;
}

.bubble-2 {
    width: 50px;
    height: 50px;

    top: 70%;
    right: 20%;

    animation: bubbleFloat 12s infinite ease-in-out;
}

.bubble-3 {
    width: 120px;
    height: 120px;

    top: 40%;
    right: 5%;

    animation: bubbleFloat 14s infinite ease-in-out;
}

.bubble-4 {
    width: 180px;
    height: 180px;

    top: 15%;
    left: 45%;

    background: rgba(220, 20, 60, .04);

    animation: bubbleFloat 16s infinite ease-in-out;
}

/* =======================
   CONTENIDO HOME
======================= */

.home-content {
    position: relative;
    z-index: 10;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: center;
}

.home-badge {
    display: inline-block;

    padding: 10px 18px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: rgba(220, 20, 60, .10);

    color: #13070a;

    font-size: .9rem;
    font-weight: 600;
}

.home h1 {
    font-size: 4rem;
    font-weight: 800;

    line-height: 1.1;

    color: var(--dark);
}

.home p {
    margin: 25px 0 35px;

    color: var(--gray);

    font-size: 1.1rem;
    line-height: 1.9;

    text-align: justify;
}

/* =======================
   IMAGEN HOME
======================= */

.home-image {
    position: relative;
}

.home-image::before {
    content: '';

    position: absolute;

    top: 20px;
    left: 20px;

    width: 100%;
    height: 100%;

    border-radius: 25px;

    background: rgba(220, 20, 60, .15);

    z-index: 1;
}

.home-image img {
    position: relative;
    z-index: 2;

    width: 100%;

    border-radius: 25px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .15);

    transition: all .4s ease;
}

.home-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

/* =======================
   ANIMACIONES HOME
======================= */

@keyframes bubbleFloat {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(0, -60px) rotate(180deg);
    }

    75% {
        transform: translate(-40px, -30px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatOne {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatTwo {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes pulseShape {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* =======================
   FEATURES
======================= */

.section-features {
    padding: 100px 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(220, 20, 60, .10);

    color: var(--primary);

    font-size: .9rem;
    font-weight: 600;

    margin-bottom: 20px;
}

.section-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;

    margin-top: 20px;
}

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

    gap: 30px;
}

.card {
    position: relative;

    background: #fff;

    padding: 35px;

    border-radius: 24px;

    border: 1px solid #f2f2f2;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: all .35s ease;
}

.card:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 45px rgba(220, 20, 60, .12);

    border-color: rgba(220, 20, 60, .15);
}

.card i {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(220, 20, 60, .08);

    color: var(--primary);

    font-size: 32px;

    margin-bottom: 25px;
}

.card h3 {
    color: var(--dark);

    font-size: 1.3rem;

    margin-bottom: 15px;
}

.card p {
    color: var(--gray);

    line-height: 1.8;
}

.featured {
    border: 2px solid var(--primary);
}

.featured::before {
    content: '⭐ Destacado';

    position: absolute;

    top: 18px;
    right: 18px;

    padding: 6px 12px;

    border-radius: 50px;

    background: var(--primary);

    color: #fff;

    font-size: .75rem;
    font-weight: 600;
}

/* =======================
   PRODUCTS
======================= */

.products-section {
    padding: 100px 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;

    padding: 10px 20px;

    background: rgba(220, 20, 60, .1);

    color: var(--primary);

    border-radius: 50px;

    font-size: .9rem;
    font-weight: 600;

    margin-bottom: 20px;
}

.section-description {
    color: var(--gray);

    font-size: 1.1rem;

    line-height: 1.8;

    margin-top: 15px;
}

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

.product {
    position: relative;

    overflow: hidden;

    background: #fff;

    border-radius: 28px;

    border: 1px solid #f0f0f0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: all .35s ease;
}

.product:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(220, 20, 60, .15);
}

.product-tag {
    position: absolute;

    top: 15px;
    right: 15px;

    background: #50b621;

    color: #fff;

    padding: 8px 16px;

    border-radius: 50px;

    font-size: .8rem;
    font-weight: 600;

    z-index: 10;

    box-shadow: 0 5px 15px rgba(220, 20, 60, .25);
}


.product-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.product-overlay {

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .45);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;

    transition: .3s;
}

.product-overlay i {
    color: #fff;
    font-size: 2rem;
}

.product-image:hover .product-overlay {
    opacity: 1;
}

.product-image:hover img {
    transform: scale(1.05);
}


.product-info {
    padding: 25px;
}

.product-info h3 {
    color: var(--dark);

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 12px;
}

.product-info p {
    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 25px;
}


.product-btn {

    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;

    border-radius: 50px;

    background: #28a745;
    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}

.product-btn:hover {
    background: #218838;
    color: #fff;
}


/* =======================
   STATS 
======================= */

#section-stats {

    position: relative;

    padding: 100px 0;

    background: linear-gradient(135deg,
            #ffffff 0%,
            #fff8f8 100%);

    overflow: hidden;
}



#section-stats::before {

    content: '';

    position: absolute;

    width: 280px;
    height: 280px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background: rgba(220, 20, 60, .05);

    animation: statsFloat 10s ease-in-out infinite;
}

#section-stats::after {

    content: '';

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -60px;
    left: -60px;

    border-radius: 50%;

    background: rgba(220, 20, 60, .04);

    animation: statsFloat 12s ease-in-out infinite;
}

.stats {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 280px));

    justify-content: center;

    gap: 30px;
}

.stat {

    position: relative;

    overflow: hidden;

    background: #fff;

    padding: 45px 25px;

    border-radius: 24px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: all .35s ease;

    animation: statAppear .8s ease forwards;
}

.stat:nth-child(2) {
    animation-delay: .15s;
}

.stat:nth-child(3) {
    animation-delay: .30s;
}

.stat:nth-child(4) {
    animation-delay: .45s;
}

.stat::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg,
            #dc143c,
            #ff5c7a);
}

.stat:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 60px rgba(220, 20, 60, .15);
}

.stat i {

    font-size: 48px;

    color: var(--primary);

    margin-bottom: 20px;

    transition: .3s;
}

.stat:hover i {

    transform: scale(1.1) rotate(5deg);
}

.stat h3 {

    font-size: 3.2rem;

    font-weight: 800;

    margin-bottom: 10px;

    background: linear-gradient(135deg,
            #dc143c,
            #ff4d6d);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =======================
   TEXT
======================= */

.stat p {

    color: var(--gray);

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: .5px;
}

/* =======================
   ANIMATIONS
======================= */

@keyframes statsFloat {

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

    50% {
        transform: translateY(25px);
    }

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

@keyframes statAppear {

    from {

        opacity: 0;

        transform: translateY(40px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

/* =======================
   PRICING
======================= */

#section-pricing {

    padding: 100px 0;

    background: linear-gradient(135deg,
            #dc143c 0%,
            #c1123a 50%,
            #a50f2d 100%);

    position: relative;

    overflow: hidden;
}

#section-pricing .title {
    color: #fff;
}

#section-pricing .section-description {
    color: #fff;
}

#section-pricing::before {

    content: '';

    position: absolute;

    top: -200px;
    right: -150px;

    width: 500px;
    height: 500px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;
}

#section-pricing::after {

    content: '';

    position: absolute;

    bottom: -250px;
    left: -150px;

    width: 600px;
    height: 600px;

    background: rgba(255, 255, 255, .05);

    border-radius: 50%;
}

.pricing {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;

    margin-top: 50px;
}

.plan {

    position: relative;

    background: #fff;

    border-radius: 30px;

    padding: 45px 35px;

    text-align: center;

    border: 1px solid #f0f0f0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s ease;
}

.plan:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 60px rgba(220, 20, 60, .15);
}

/* PLAN DESTACADO */

.featured-2 {

    border: 2px solid var(--primary);

    transform: scale(1.05);
}

.featured-2:hover {
    transform: scale(1.05) translateY(-12px);
}

.plan-badge {

    position: absolute;

    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    background: var(--primary-hover);

    color: #fff;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: .85rem;

    font-weight: 600;
}

/* TITULO */

.plan h3 {

    font-size: 1.8rem;

    color: var(--dark);

    margin-bottom: 20px;
}

/* PRECIO */

.price {

    font-size: 3.2rem;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 25px;
}

.price span {

    font-size: 1rem;

    font-weight: 500;

    color: var(--gray);
}

/* LISTA */

.plan ul {

    list-style: none;

    padding: 0;

    margin: 30px 0;
}

.plan li {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: var(--gray);
}

.plan li i {

    color: #28a745;

    font-size: .9rem;
}

/* BOTON */

.plan-btn {

    width: 100%;

    border: none;

    padding: 15px;

    border-radius: 50px;

    background: var(--primary);

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.plan-btn:hover {

    transform: translateY(-2px);

    background: #b81235;
}

/* =======================
   CONTACT
======================= */

.contact-content {
    text-align: center;

    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-hover));

    color: white;

    padding: 80px 30px;

    border-radius: 30px;
}

.contact-content h2 {
    font-size: 2.5rem;
}

.contact-content p {
    font-size: 1.1rem;
}

/* ========================================
   RESTAU DEVICES
======================================== */

.restau-devices {

    padding: 120px 20px;

    background-image: url('/assets/banners/Banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(220, 20, 60, .08);
    color: #dc143c;
    font-weight: 700;
    font-size: .9rem;
}

.section-heading h2 {
    margin: 20px 0;
    font-size: 3.2rem;
    line-height: 1.1;
    color: #ffffff;
}

.section-heading p {
    color: #ffffff;
    font-size: 1.1rem;
}

/* ========================================
   DEVICES CONTAINER
======================================== */

.devices-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   WEB DEVICE
======================================== */

.web-device {

    width: 900px;

    background: #111827;

    border-radius: 25px;

    padding: 15px;

    box-shadow:
        0 40px 80px rgba(0, 0, 0, .12),
        0 15px 40px rgba(0, 0, 0, .08);

    transition: .4s;
}

.web-device:hover {
    transform: translateY(-5px);
}

.browser-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.browser-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4b5563;
}

.web-body {
    background: white;
    border-radius: 20px;
    padding: 25px;
}

.web-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.web-top h4 {
    color: #dc143c;
    font-size: 1.3rem;
}

.legend {
    display: flex;
    gap: 10px;
}

.legend span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.legend .green {
    background: #22c55e;
}

.legend .yellow {
    background: #f59e0b;
}

.legend .red {
    background: #ef4444;
}

/* ========================================
   MESAS WEB
======================================== */

.mesas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mesa {

    min-height: 110px;

    border-radius: 18px;

    padding: 15px;

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: .3s;

    cursor: pointer;
}

.mesa:hover {
    transform: translateY(-6px);
}

.mesa small {
    opacity: .9;
    margin-bottom: 8px;
}

.mesa strong {
    font-size: 1rem;
    color: #07142b;
}

.mesa p {
    margin: 0;
    font-size: .70rem;
    color: rgba(255, 255, 255, .9);
}

.mesa.green {

    background: linear-gradient(45deg, #CCF390, #d4f79f);
}

.mesa.yellow {
    background: linear-gradient(135deg,
            #f59e0b,
            #d97706);
}

.mesa.red {
    background: linear-gradient(135deg,
            #ef4444,
            #dc2626);
}

/* ========================================
   PHONE DEVICE
======================================== */

.phone-device {

    position: absolute;

    right: 70px;

    bottom: 50px;

    width: 240px;

    background: #111827;

    border-radius: 35px;

    padding: 10px;

    z-index: 20;

    transform: none;

    box-shadow:
        0 35px 70px rgba(0, 0, 0, .25),
        0 15px 30px rgba(0, 0, 0, .12);

    /* animation: floatPhone 5s ease-in-out infinite; */
}

.phone-device:hover {

    transform: translateY(-15px) rotate(-2deg) scale(1.04);

    box-shadow:
        0 50px 100px rgba(0, 0, 0, .30),
        0 20px 50px rgba(220, 20, 60, .25);
}

.phone-screen {
    background: white;
    border-radius: 28px;
    overflow: hidden;
}

.phone-header {

    background: #dc143c;

    color: white;

    padding: 15px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.phone-header h5 {
    margin: 0;
    font-size: 1rem;
}

.phone-tabs {

    display: flex;

    justify-content: center;

    gap: 20px;

    padding: 15px;

    font-size: .85rem;

    font-weight: 700;
}

.phone-tabs span {
    color: #94a3b8;
}

.phone-tabs .active {
    color: #dc143c;
}

.phone-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    padding: 15px;
}

.phone-mesa {

    border-radius: 15px;

    padding: 12px;

    text-align: center;
}

.phone-mesa strong {
    display: block;
    margin-bottom: 8px;
    font-size: .75rem;
}

.phone-mesa span {
    display: block;
    margin-top: 8px;
    font-size: .7rem;
}

.available {
    background: #ecfdf5;
    color: #16a34a;
}

.busy {
    background: #fef2f2;
    color: #dc2626;
}

.table-icon {

    width: 40px;
    height: 40px;

    border-radius: 12px;

    background: currentColor;

    opacity: .15;

    margin: 0 auto;
}

/* ========================================
   ANIMATION
======================================== */


@keyframes floatPhone {

    0% {
        transform: translateY(0);
    }

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

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

/* ========================================
   CLIENTES
======================================== */

.clients-section {
    padding: 100px 20px;
    background: #fff;
    overflow: hidden;
}

.clients-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.clients-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(220, 20, 60, .08);
    color: #dc143c;
    font-weight: 700;
}


.clients-header p {
    margin: 15px 0;
    color: #64748b;
}


.logos-slider {
    position: relative;
    overflow: hidden;
}

.logos-slider::before,
.logos-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right,
            #fff,
            transparent);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left,
            #fff,
            transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;

    animation: scrollLogos 25s linear infinite;
}

.logo-item {

    min-width: 300px;
    height: 170px;

    background: #fff;

    border-radius: 24px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {

    width: 250px;
    height: 140px;

    object-fit: contain;

    transition: .4s;
}

.logo-item:hover img {
    transform: scale(1.08);
}



@keyframes scrollLogos {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =======================
   TESTIMONIOS
======================= */

.testimonials-section {

    padding: 120px 0;

    background: linear-gradient(180deg, #fff, #fafafa);
}

.testimonials-slider {

    overflow: hidden;

    margin-top: 60px;
}

.testimonials-track {

    display: flex;

    gap: 25px;

    width: max-content;

    animation: testimonialScroll 30s linear infinite;
}

.testimonials-slider:hover .testimonials-track {

    animation-play-state: paused;
}

.testimonial-card {

    width: 380px;

    background: #fff;

    padding: 30px;

    border-radius: 28px;

    border: 1px solid #eee;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

    flex-shrink: 0;

    position: relative;

    transition: .3s;
}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(220, 20, 60, .12);
}

.testimonial-card::before {

    content: '"';

    position: absolute;

    top: 10px;
    right: 20px;

    font-size: 6rem;

    color: rgba(220, 20, 60, .08);

    font-family: serif;
}

.testimonial-source {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    margin-bottom: 15px;

    font-size: .85rem;

    font-weight: 600;
}

.facebook {
    background: rgba(24, 119, 242, .12);
    color: #1877f2;
}

.tiktok {
    background: rgba(0, 0, 0, .08);
    color: #000;
}


.whatsapp {
    background: rgba(37, 211, 102, .12);
    color: #25d366;
}

.stars {

    margin-bottom: 15px;

    font-size: 1.1rem;
}

.testimonial-card p {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 25px;
}

.client {

    display: flex;

    align-items: center;

    gap: 15px;
}

.client-avatar {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: 700;
}

.client h4 {

    margin-bottom: 4px;

    color: var(--dark);
}

.client span {

    color: var(--gray);

    font-size: .9rem;
}

@keyframes testimonialScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =======================
   FOOTER
======================= */
.footer {

    background: var(--primary-hover);

    color: #fff;

    padding-top: 70px;

    margin-top: 100px;
}

.footer-content {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 50px;
}

.footer-column h3 {

    font-size: 1.4rem;

    margin-bottom: 20px;

    color: #fff;
}

.footer-column p {

    color: #fff;

    line-height: 1.8;
}

.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-column ul li {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 15px;

    color: #fff;
}

.footer-column ul li i {

    color: #fff;

    margin-top: 4px;
}

.footer-map {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 15px;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}

.footer-map:hover {

    color: #fff;
}

.footer-map-card {

    margin-top: 20px;

    overflow: hidden;

    border-radius: 15px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .3s;
}

.footer-map-card:hover {

    transform: translateY(-4px);
}

.footer-map-card img {

    width: 100%;

    height: 180px;

    object-fit: cover;

    display: block;
}

.footer-map-btn {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px;

    background: white;

    color: var(--primary);

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}

.footer-map-btn:hover {

    background: #fff;
}

.footer-links li {

    margin-bottom: 12px;
}

.footer-links a {

    text-decoration: none;

    color: #fff;

    transition: .3s;
}

.footer-links a:hover {

    color: #fff;

    padding-left: 5px;
}

.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.footer-social span {

    cursor: pointer;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: var(--primary);

    text-decoration: none;

    transition: .3s;
}

.footer-social span:hover {

    background: white;

    transform: translateY(-3px);
}


.footer-certifications {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.footer-certifications img {

    width: 180px;

    height: 100px;

    object-fit: cover;

    display: block;

    border-radius: 15px;

    box-shadow: 0 5px 15px var(--primary-hover);

    transition: .3s;
}

.footer-certifications img:hover {

    transform: translateY(-3px);
}

.footer-security {

    margin-top: 20px;

    font-size: .95rem;

    color: #fff;
}


.footer-bottom {

    margin-top: 50px;

    padding: 25px 0;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {

    color: #fff;
}