@font-face {
    font-family: 'Neutra Text Alt';
    src: url('../fonts/neutra-text-alt.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Neutra Text Bold Italic';
    src: url('../fonts/neutra-text-bold-italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: 'Neutra Text Bold';
    src: url('../fonts/neutra-text-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Neutra Text Light';
    src: url('../fonts/neutra-text-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Neutra Text TF';
    src: url('../fonts/neutra-text-tf.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --text-forecolor: rgba(0, 96, 128, 1);
    --tag-forecolor: rgba(0, 55, 93, 1);
    --servicio-descripcion-forecolor: rgba(0, 0, 0, 1);
    --servicio-button-forecolor: rgba(0, 55, 93, 1);

    --area-tag-forecolor: rgba(0, 96, 128, 1);
    --area-title-forecolor: rgba(0, 55, 93, 1);
    --area-description-forecolor: rgba(0, 0, 0, 1);

    --contacto-background: rgba(0, 55, 93, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Red Hat Display", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.6rem 0 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.nav {
    justify-self: end;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: rgb(0, 0, 1);
    font-weight: 600;
    transition: background-color 0.1s ease;
    padding: 0.25rem 1rem;
    border: 1px solid transparent;
    border-radius: 15px;
}

.nav a:hover {
    /* color: #3498db; */
    border-color: #00E7A1;
    background-color: #00E7A1;
    color: var(--tag-forecolor);    
}

/* Botón menú hamburguesa */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Menú lateral para mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    border-right: 1px solid #ddd;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 2000;
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: #1e6091; /* azul */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Overlay para fondo */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1500;
}

.mobile-nav-overlay.active {
    display: block;
}

@media (max-width: 768px) {
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .header-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 10px;
        left: 30px;
    }

    .nav {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    height: 100vh;
    background-color: white;
    padding-top: 80px;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.hero-inner {
    position: relative;
    display: flex;
    height: 100%;
    background-color: rgba(0, 55, 93, 1);
    padding: 0;
    background-image: url('../images/background.png');
    background-clip: content-box;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 45px;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
}

.hero-content h1 {
    font-family: 'Neutra Text Bold', Arial, sans-serif;
    color: white;
    font-size: 4rem;
    line-height: 4rem;
    /* font-weight: 700; */
    margin-bottom: 2rem;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-content h2 {
    font-family: 'Neutra Text Bold', Arial, sans-serif;
    font-size: 1.5rem;
    /* font-weight: 700; */
    padding: 0.25rem 1rem;
    border-color: #00E7A1;
    border-radius: 15px;
    background-color: #00E7A1;
    color: var(--tag-forecolor);    
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
    margin-bottom: 2rem;
    max-width: fit-content;
}

.hero-content h3 {
    font-family: 'Neutra Text Bold', Arial, sans-serif;
    color: white;
    font-size: 1.2rem;
    /* font-weight: 700; */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 2.8rem;
    }

    .hero-content h2 {
        line-height: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero-content h2 {
        font-size: 1.6rem !important;
        line-height: 2rem;
        padding: 0.5rem 1rem;
    }
}


/* Sections */
section {
    padding: 5rem 0;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

/* Servicios */
.servicios {
    padding: 5rem 0;
}
.servicios-grid {
    display: grid;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.servicio-item {
    display: grid;
    grid-template-areas: 
        "check-icon content";
    grid-template-columns: 160px 1fr;
    /* grid-template-columns: auto 1fr; */
    gap: 10px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
}

.servicio-check-section {
    grid-area: check-icon;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    align-self: baseline;
    margin-top: 20%;
}

.servicio-check-icon {
    width: 100%;
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-check-icon::after {
    content: "✓";
    color: #0060803B;
    font-size: 8rem;
    font-weight: bold;
}

.servicio-content-section {
    grid-area: content;
    display: grid;
    grid-template-areas: 
        "header header-image"
        "description description"
        "button button";
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 10px;
}

.servicio-tag-section {
    grid-area: tag;
    display: none;
    /* display: flex; */
    justify-content: left;
    align-self: baseline;
}

.servicio-header-section {
    grid-area: header;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.servicio-tag {
    /* background: linear-gradient(135deg, #4fd1c7, #38b2ac); */
    background: #00E7A1;
    color: var(--tag-forecolor);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(0, 231, 161, 0.3);
}

.servicio-title {
    font-family: 'Neutra Text Bold', Arial, sans-serif;
    color: var(--text-forecolor);
    font-size: 48px;
    /* font-weight: bold; */
    line-height: 1.1;
    margin-bottom: 15px;
    max-width: 70%;
}

.servicio-image-section {
    grid-area: header-image;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.servicio-description-section {
    grid-area: description;
}

.servicio-description {
    color: var(--servicio-descripcion-forecolor);
    font-size: 18px;
    line-height: 1.6;
    /* max-width: 600px; */
}

.servicio-button-section {
    grid-area: button;
    margin-top: 5px;
}

.servicio-button {
    border: 3px solid rgba(0, 96, 128, 1);
    color: var(--servicio-button-forecolor);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: fit-content;
    /* align-self: flex-start; */
}

.servicio-button a {
    text-decoration: none;
    color: inherit;
}
.servicio-button a:hover {
    text-decoration: none;
    color: inherit;
}
.servicio-button a:visited {
    text-decoration: none;
    color: inherit;
}


@media (max-width: 1024px) {
    .servicios-grid {
        max-width: 800px;
    }

    .servicio-item {
        grid-template-areas: "content";
        grid-template-columns: 1fr;
        /* text-align: center; */
    }
    
    .servicio-content-section {
        grid-template-areas: 
            "header header-image"
            "description description"
            "button button";
        grid-template-columns: 1fr auto;
        grid-template-rows: 1fr auto;
        /* text-align: center; */
    }

    .servicio-check-section {
        display: none;
    }

    .servicio-title {
        font-size: 36px;
    }
    
    .servicio-image-section {
        justify-content: center;
    }        
}

@media (max-width: 600px) {
    .servicios {
        padding: 3rem 0;
    }
    .servicio-content-section {
        grid-template-areas:
            "tag" 
            "header"
            "header-image"
            "description"
            "button";
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        /* text-align: center; */
    }

    /* .servicio-content-section {
        grid-template-areas:
            "tag tag" 
            "header header-image"
            "description description"
            "button button";
        grid-template-columns: 1fr 30%;
        grid-template-rows: 1fr 30%;
        text-align: center;
    } */

    .servicio-tag-section {
        display: flex;
        margin-bottom: 10px;
    }

    .servicio-header-section {
        justify-content: left;
        text-align: left;
    }

    .servicio-header-section .servicio-tag {
        display: none;
    }

    .servicio-title {
        font-size: 36px;
        max-width: 90%;
    }
    
    .servicio-image-section {
        justify-content: center;
    }

    .servicio-img {
        /* width: 100%;
        height: auto; */
        height: 100%;
        width: auto;
        max-width: 50%;
        max-height: 120px;
    }
}

/* Areas */
.areas {
    padding: 5rem 0;
    background: white;
}
.areas-grid {
    display: grid;
    gap: 4rem;
}
.area-item {
    display: grid;
    grid-template-areas:
        "area-image area-content";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    /* gap: 1rem; */
    align-items: center;
}
.area-item.even {
    grid-template-areas:
        "area-content area-image";
}
.area-image-section {
    grid-area: area-image;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 8%;
}
.area-image-section-mobile {
    display: none;
}
.area-img {
    width: 100%;
    object-fit: cover;
}
.area-content-section {
    grid-area: area-content;

    display: grid;
    grid-template-areas: "area-tag"
                         "area-header" 
                         "area-description";
    grid-template-columns: 1fr;
    grid-template-rows: auto;

}
.area-tag-section {
    grid-area: area-tag;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.area-tag {
    background: var(--area-tag-forecolor);
    color: rgba(255, 255, 255, 1);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(0, 96, 128, 0.3);
}
.area-header-section {
    grid-area: area-header;
}
.area-item.even .area-tag-section {
    justify-content: flex-end;
}
.area-item.even .area-header-section {
    text-align: right;
}
.area-title {
    font-family: 'Neutra Text Bold', Arial, sans-serif;
    font-size: 3rem;
    color: var(--area-title-forecolor);
    /* font-weight: bold; */
    margin-bottom: 1.4rem;
    line-height: 1.1;
}
.area-description-section {
    grid-area: area-description;
}

.area-description-section p {
    font-size: 1.1rem;
    color: var(--area-description-forecolor);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}


@media (max-width: 1024px) {
    .area-title {
        font-size: 36px;
    }
    

/*    
    .area-item {
        display: grid;
        grid-template-areas:
            "area-tag"
            "image header" 
            "description description";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
        align-items: center;
    }

    .area-item.even {
        grid-template-areas:
            "area-tag"
            "header image" 
            "description description";
    }

    .area-content-section {
        display: contents;
    }
*/
} 

@media (max-width: 600px) {
    .areas {
        padding: 3rem 0;
    }
    .area-item,
    .area-item.even {
        display: block;
        align-items: left;
    }
    .area-content-section {
        display: grid;
        grid-template-areas:
            "area-header" 
            "area-tag"
            "area-image"
            "area-description";
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        /* gap: 4rem; */
        gap: 1rem;
        /* align-items: center; */
    }
    .area-image-section {
        display: none;
    }
    .area-image-section-mobile {
        grid-area: area-image;
        display: block;
        text-align: center;
    }
    .area-img {
        max-width: 50%;
    }
    .area-item.even .area-tag-section {
        justify-content: flex-start;
    }
    .area-item.even .area-header-section {
        text-align: left;
    }
    .area-title {
        font-size: 36px;
        max-width: 90%;
    }
}

/* Contacto */
.contacto {
    /* background: linear-gradient(135deg, #1e3a8a 0%, #164e63 50%, #0f766e 100%); */
    background: var(--contacto-background);
    color: white;
}

.contacto-grid {
    display: grid;
    grid-template-areas: "content form";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: baseline;

    gap: 4rem;
    margin-top: 3rem;
}

.contacto-content-section {
    grid-area: content;
    display: grid;
    grid-template-areas: "titulo"
                         "info";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
}

.contacto-header-section {
    grid-area: titulo;
}

.contacto-info-section {
    grid-area: info;
    padding-left: 5%;
}

.contacto-header-section .section-title {
    font-family: 'Neutra Text Bold', Arial, sans-serif;
    color: #1dd1a1;
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 2rem;
    /* font-weight: 600; */
    text-align: left;
}

.contacto-header-section .section-title span {
    color: white !important;
}

.contacto-info-section .contact-item {
    /* display: flex;
    align-items: center; */
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contacto-info-section .contact-item p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contacto-info-section .contact-item p i {
    color: #1dd1a1;
    margin-right: 3px;
}

.contacto-form-section {
    grid-area: form;
}

.contacto-form-section .contacto-form {
    background: rgba(255, 254, 254, 1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contacto-form-section .contacto-form .form-group {
    margin-bottom: 1.5rem;
}

.contacto-form-section .contacto-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-forecolor);
}

.contacto-form-section .contacto-form .form-group input,
.contacto-form-section .contacto-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid rgba(120, 120, 120, 0.5);
    /* border-radius: 10px; */
    background: white;
    color: rgba(120, 120, 120, 1);
    /* color: #333; */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contacto-form-section .contacto-form .form-group input:focus {
    outline: none;
    /* background: white; */
    /* box-shadow: 0 0 0 3px rgba(29, 209, 161, 0.3); */
    border-bottom: 2px solid rgba(120, 120, 120, 1);
}

.contacto-form-section .contacto-form .form-group textarea {
    height: 120px;
    resize: vertical;
    border: 2px solid rgba(120, 120, 120, 0.5);
    border-radius: 10px;
}

.contacto-form-section .contacto-form .form-group textarea:focus {
    outline: none;
    border-bottom: 2px solid rgba(120, 120, 120, 1);
}

.contacto-form-section .contacto-form .form-btn {
    /* background: var(--text-forecolor); */
    background: hsla(195, 100%, 25%, 1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contacto-form-section .contacto-form .form-btn:hover {
    /* background: #06919c; */
    background: hsla(195, 100%, 15%, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 209, 161, 0.3);
}

@media (max-width: 1024px) {
    .contacto-grid {
        grid-template-areas: "titulo"
                             "form"
                             "info";
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }

    .contacto-content-section {
        display: contents;
    }
}

/* Footer */
.footer {
    background: hsla(195, 100%, 25%, 1);
    /* background: linear-gradient(135deg, #0e7490 0%, #155e75 100%); */
    color: white;
    /* padding: 3rem 0; */
    padding: 0;
    /* height: 140px; */
}
.top-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem;
    /* padding-top: 30px; */
    text-align: center;
}

.top-footer img {
    position: relative;
    max-height: 40px;
    width: auto;
}

.top-footer img {
    position: relative;
    max-height: 40px;
    width: auto;
}

@media (max-width: 600px) {
    .top-footer img {
        max-height: 30px;
    }
}

.bottom-footer {
    position: absolute;
    background: hsla(162, 100%, 45%, 1);
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(195, 100%, 25%, 1);
    gap: 2rem;
    /* clip-path: path("M 420,0 L 450,70 L 650,70 L 680,0 Z");
    clip-path: path("M 400,0 A 10,10 0,0,1 560,70 L 650,70 L 680,0 Z"); */
    clip-path: url(#roundedTrapezoid);
    /* -webkit-clip-path: path("M 120 0 Q 122 20 135 300 L 165 300 Q 178 20 180 0 Z"); */
    overflow: hidden;    
    padding-top: 20px;
    padding-bottom: 20px;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: all 0.5s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-social {
        gap: 1.4rem;
    }
    .social-icon {
        font-size: 0.8rem;
    }
}
@media (max-width: 600px) {
    .footer-social {
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .footer-social {
        gap: 0.6rem;
    }
}


/* .footer-info {
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
} */

/* Responsive */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Banner */
.banner-section  {
    /* height: 250px; */
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 0 3%;
}
.banner-inner  {
    min-height: 250px;
    width: 100%;
    display: flex;
    background-image: url('../images/background_hacemos.png');
    background-clip: content-box;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 45px;
    padding: 0;
}
.banner-section h3 {
    position: relative;
    font-size: 2.5rem;
    font-weight: 800 !important;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .banner-inner  {
        min-height: 140px;
        background-image: url('../images/background_hacemos_mobile.png');
    }
    .banner-section h3 {
        font-size: 1.8rem;
    }
}
@media (max-width: 600px) {
    .banner-section h3 {
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    .banner-section h3 {
        font-size: 1.4rem;
    }
}

/* .banner-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        to right,
        white 0%,
        white 30%,     
        transparent 30%,
        transparent 35%,
        white 35%,     
        white 45%,
        transparent 45%,
        transparent 50%,
        white 50%,     
        white 60%,
        transparent 60%,
        transparent 65%,
        white 65%,     
        white 100%     
    );
} */

/* Slider */
.tools-slider {
    background: white;
    padding: 40px;
    width: 80%;
    left: 10%;
    position: relative;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    /* border-radius: 15px; */
    /* background: #f8f9fa; */
    padding: 40px 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    padding: 0 20px;
}

.slide {
    flex: 0 0 calc(20% - 16px);
    /* flex: 0 0 calc(12% - 18px); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 10px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 60px;
}

/* .slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} */

.slide-icon {
    width: 40px;
    height: 40px;
    /* width: 48px;
    height: 48px; */
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.slide:hover .slide-icon {
    transform: scale(1.1);
}

.slide-title {
    display: none;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}

.nav-button:hover {
    background: #667eea;
    color: white;
    /* transform: translateY(-50%) scale(1.1); */
}

.nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-button.prev {
    /* left: -25px; */
    left: 10px;
}

.nav-button.next {
    /* right: -25px; */
    right: 10px;
}

/* .progress-bar {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.auto-play-indicator {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #6c757d;
    transition: opacity 0.3s ease;
}

.auto-play-indicator.hidden {
    opacity: 0;
} */

@media (max-width: 1024px) {
    .tools-slider {
        padding: 20px;
    }
    
    .slide {
        flex: 0 0 calc(33.333% - 14px);
    }
    
    .slide-icon {
        width: 36px;
        height: 36px;
    }
}

/* WhatsApp Button */
#whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

#whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

#whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}