:root {
    --primary-color: #6C63FF;
    --primary-dark: #554fd8;
    --secondary-color: #333;
    --light-color: #f9f9f9;
    --dark-color: #222;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #888;
    --white: #fff;
    --black: #000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}


.dark-mode {
    --light-color: #222;
    --dark-color: #f9f9f9;
    --gray-light: #333;
    --gray-medium: #444;
    --gray-dark: #777;
    --white: #222;
    --black: #fff;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    
    &:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    }
}

.btn-small {
    @extend .btn;
    padding: 8px 20px;
    font-size: 0.9rem;
}


header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    
    .nav-links {
        display: flex;
        list-style: none;
        
        li {
            margin-left: 2rem;
            
            a {
                font-weight: 500;
                transition: var(--transition);
                position: relative;
                
                &::after {
                    content: '';
                    position: absolute;
                    bottom: -5px;
                    left: 0;
                    width: 0;
                    height: 2px;
                    background-color: var(--primary-color);
                    transition: var(--transition);
                }
                
                &:hover::after {
                    width: 100%;
                }
            }
        }
    }
    
    .burger {
        display: none;
        cursor: pointer;
        
        div {
            width: 25px;
            height: 3px;
            background-color: var(--dark-color);
            margin: 5px;
            transition: var(--transition);
        }
    }
}

.dark-mode nav {
    background-color: rgba(34, 34, 34, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.hero {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: 5rem 5% 3rem;
    min-height: 100vh;
    gap: 2rem;
    text-align: center;
    position: relative;
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
        z-index: 2;
        
        h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            margin-bottom: 1rem;
        }
        
        .subtitle {
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: 1.5rem;
        }
    }
    
    .hero-image {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        
        img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 75vh;
            border-radius: var(--border-radius);
            object-fit: contain;
            object-position: center top; 
            aspect-ratio: 3/4; 
        }
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .hero-image {
        max-width: 280px;
        
        img {
            max-height: 65vh;
        }
    }
}


@media (max-width: 480px) {
    .hero {
        padding-top: 4rem;
        
        .hero-image img {
            max-height: 60vh;
        }
    }
}


@media (max-width: 320px) {
    .hero {
        padding-top: 3rem;
        gap: 1rem;
        
        .hero-image {
            max-width: 200px;
            
            img {
                max-height: 50vh;
            }
        }
    }
}


@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8rem 5% 5rem;
        text-align: left;
        gap: 5rem;
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero-image {
            max-width: 380px;
            align-items: center;
            
            img {
                max-height: 80vh;
                aspect-ratio: 3/4;
                object-position: center top 15%; 
            }
        }
    }
}


h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out both;
    
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    span {
        color: var(--primary-color);
    }
}

h1 {
    animation: fadeInUp 0.8s ease-out both;
      
    span {
        color: var(--primary-color);
    }
}


.about {
    padding: 6rem 0;
    position: relative;
    
    .about-description {
        max-width: 800px;
        margin: 0 auto 3rem;
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--gray-dark);
    }
    
    .skills {
        margin-top: 4rem;
    }
    
    h2:nth-of-type(2) {
        margin-top: 4rem;
        margin-bottom: 2rem;
    }
}


.tech-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    padding: 1rem 0;
}

.tech-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 20s linear infinite;
    will-change: transform;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    margin: 0 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    svg {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-origin: center;
        animation: float 3s ease-in-out infinite;
    }
    
    span {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-color);
        text-align: center;
        transition: var(--transition);
        opacity: 0.9;
    }
    
    &:hover {
        transform: translateY(-5px);
        
        svg {
            transform: scale(1.15);
            filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
        }
        
        span {
            opacity: 1;
            color: var(--primary-color);
            transform: scale(1.05);
        }
    }
}

.dark-mode .tech-item {
    span {
        color: #fff;
    }
    
    &:hover svg {
        filter: drop-shadow(0 6px 12px rgba(255,255,255,0.1));
    }
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background-color: transparent;
    
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .project-card {
        background: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        
        &:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .project-info {
            padding: 1.5rem;
            
            h3 {
                margin-bottom: 0.5rem;
                font-size: 1.3rem;
            }
            
            p {
                color: var(--gray-dark);
                margin-bottom: 1rem;
                font-size: 0.95rem;
            }
        }
    }
}

.dark-mode .projects {
    background-color: rgba(34, 34, 34, 0.8);
    
    .project-card {
        background: var(--gray-light);
        color: var(--dark-color);
    }
}


.contact {
    padding: 6rem 0;
    
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        
        .form-group {
            margin-bottom: 1.5rem;
            
            input, textarea {
                width: 100%;
                padding: 15px;
                border: 1px solid var(--gray-medium);
                border-radius: var(--border-radius);
                font-size: 1rem;
                background-color: var(--white);
                color: var(--dark-color);
                transition: var(--transition);
                
                &:focus {
                    outline: none;
                    border-color: var(--primary-color);
                    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
                }
            }
            
            textarea {
                min-height: 150px;
                resize: vertical;
            }
        }
        
        button {
            width: 100%;
        }
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
        
        .social-icon {
            font-size: 1.8rem;
            color: var(--dark-color);
            transition: var(--transition);
            
            &:hover {
                color: var(--primary-color);
                transform: translateY(-3px);
            }
        }
    }
}

.dark-mode .contact {
    .form-group input,
    .form-group textarea {
        background-color: var(--gray-medium);
        color: var(--white);
        border-color: var(--gray-dark);
    }
}


footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    color: var(--secondary-color);
    transition: var(--transition);
    
    p {
        font-size: 0.9rem;
    }
}

.dark-mode footer {
    background-color: var(--light-color);
    color: #fff;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.03); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
        padding-bottom: 4rem;
        
        .hero-content {
            margin-bottom: 3rem;
            
            h1 {
                font-size: 2.8rem;
            }
        }
        
        .hero-image img {
            width: 300px;
        }
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    nav {
        .nav-links {
            position: fixed;
            right: 0;
            top: 80px;
            width: 100%;
            flex-direction: column;
            align-items: center;
            background-color: var(--white);
            padding: 2rem 0;
            transform: translateX(100%);
            transition: var(--transition);
            
            li {
                margin: 1rem 0;
                
                a {
                    font-size: 1.2rem;
                }
            }
        }
        
        .burger {
            display: block;
            
            &.active {
                .line1 {
                    transform: rotate(-45deg) translate(-5px, 6px);
                }
                .line2 {
                    opacity: 0;
                }
                .line3 {
                    transform: rotate(45deg) translate(-5px, -6px);
                }
            }
        }
    }
    
    .nav-active {
        transform: translateX(0) !important;
    }
    
    h2 {
        font-size: 2rem;
        
        &::after {
            width: 60px;
            height: 3px;
        }
    }
    
    .about .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        .hero-content h1 {
            font-size: 2.2rem;
        }
        
        .hero-image img {
            width: 250px;
        }
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .projects .projects-grid {
        grid-template-columns: 1fr;
    }
}


.shimmer-btn {
    position: relative;
    padding: 12px 24px;
    background: linear-gradient(45deg, #6e48aa, #9d50bb);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    margin-left: 15px; 
}

.shimmer-btn .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.7s ease;
    z-index: -1;
}

.shimmer-btn:hover .shimmer {
    left: 100%;
}

.shimmer-btn i {
    margin-right: 8px;
}


.dark-mode .shimmer-btn {
    background: linear-gradient(45deg, #4a148c, #7b1fa2);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    cursor: pointer;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .toggle-switch .slider {
    background: linear-gradient(45deg, #4a148c, #7b1fa2); 
    border-radius: 50px;
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
  }
  

  .toggle-switch .icon-sun {
    order: 3; 
    color: #ffeb3b;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
  .toggle-switch .icon-moon {
    order: 1; 
    color: #fff;
    font-size: 14px;
    transition: opacity 0.3s;
  }
  
 
  .toggle-switch .slider::before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
    order: 2;
    z-index: 2;
  }
  
 
  .toggle-switch input:not(:checked) + .slider {
    background: #949393ab; 
  }
  
  .toggle-switch input:not(:checked) + .slider::before {
    transform: translateX(0);
  }
  

  .toggle-switch input:checked + .slider::before {
    transform: translateX(28px);
  }
  

  .toggle-switch input:checked + .slider .icon-sun {
    opacity: 0;
  }
  
  .toggle-switch input:checked + .slider .icon-moon {
    opacity: 1;
  }
  
  .toggle-switch input:not(:checked) + .slider .icon-sun {
    opacity: 1;
  }
  
  .toggle-switch input:not(:checked) + .slider .icon-moon {
    opacity: 0;
  }
  
.seccion-principal {
    margin-top: 100px; 
    padding: 0 20px;    
}

@media (max-width: 768px) {
    .seccion-principal {
        margin-top: 80px;
    }
}

@media (max-width: 480px) {
    .seccion-principal {
        margin-top: 60px;
    }
}


.lightbox .lb-image {
    border: 5px solid var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.lightbox .lb-nav a.lb-prev, 
.lightbox .lb-nav a.lb-next {
    opacity: 1;
    transition: var(--transition);
}

.lightbox .lb-nav a.lb-prev:hover, 
.lightbox .lb-nav a.lb-next:hover {
    opacity: 0.8;
}

.lightbox .lb-data .lb-close {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center;
    width: 30px;
    height: 30px;
    opacity: 1;
    transition: var(--transition);
}

.lightbox .lb-data .lb-close:hover {
    opacity: 0.8;
}

.dark-mode .lightbox .lb-image {
    border-color: var(--gray-medium);
}


.project-gallery {
    display: none; 
}


.project-card {
    position: relative;
    overflow: hidden;
}

.project-card img {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.project-info {
    position: relative;
    z-index: 2;
    background: var(--white);
}

.dark-mode .project-info {
    background: var(--gray-light);
}

.dark-mode .project-info p {
    color: rgb(221, 209, 209) !important;
}


.dark-mode .notification.success-notification {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-left-color: #388e3c;
}

.dark-mode .notification.error-notification {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-left-color: #d32f2f;
}

.dark-mode .notification-content span {
    color: #f1f1f1;
}


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

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}


.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  
  .ver-mas-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(108, 99, 255, 0.85);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    cursor: pointer;
    border: none;
    pointer-events: auto;
  }
  
  .project-card:hover .ver-mas-overlay,
  .project-card.show-overlay .ver-mas-overlay {
    opacity: 1;
  }
  
  

  .project-card:hover .ver-mas-overlay,
  .project-card.show-overlay .ver-mas-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  

  .image-wrapper img {
    transition: transform 0.5s ease, filter 0.3s ease;
  }
  
  .project-card:hover .image-wrapper img,
  .project-card.show-overlay .image-wrapper img {
    transform: scale(1.05);
    filter: brightness(0.7);
  }
  

  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow: hidden;
    border-left: 4px solid;
}

.notification.show {
    transform: translateX(0);
}

.success-notification {
    border-left-color: #4CAF50;
    background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
}

.error-notification {
    border-left-color: #f44336;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.notification-content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.notification-content i {
    font-size: 24px;
    margin-right: 15px;
}

.success-notification .notification-content i {
    color: #4CAF50;
}

.error-notification .notification-content i {
    color: #f44336;
}

.notification-content span {
    font-weight: 500;
    color: #333;
    flex: 1;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, currentColor, transparent);
    transition: width 5s linear;
}

.success-notification .notification-progress {
    background: linear-gradient(90deg, #4CAF50, rgba(76, 175, 80, 0.5));
}

.error-notification .notification-progress {
    background: linear-gradient(90deg, #f44336, rgba(244, 67, 54, 0.5));
}


.notification {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.success-notification {
    animation: pulse-green 2s infinite;
}

.error-notification {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4); }
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 10px 30px rgba(244, 67, 54, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(244, 67, 54, 0.4); }
}


@media (max-width: 768px) {
    .notification {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

.finals{
    background-color: transparent;
}


#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}


.project-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.project-details.expanded {
    max-height: 500px;
}

.tech-section {
    padding: 1.5rem;
}

.tech-section h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.tech-section h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag[data-tech="angular"] {
    background-color: rgba(221, 0, 49, 0.1);
    border: 1px solid rgba(221, 0, 49, 0.3);
    color: #dd0031;
}

.tech-tag[data-tech="laravel"] {
    background-color: rgba(255, 45, 32, 0.1);
    border: 1px solid rgba(255, 45, 32, 0.3);
    color: #ff2d20;
}

.tech-tag[data-tech="mysql"] {
    background-color: rgba(0, 97, 138, 0.1);
    border: 1px solid rgba(0, 97, 138, 0.3);
    color: #00618a;
}

.tech-tag[data-tech="ionic"] {
    background-color: rgba(56, 128, 255, 0.1);
    border: 1px solid rgba(56, 128, 255, 0.3);
    color: #3880ff;
}

.tech-tag[data-tech="docker"] {
    background-color: rgba(23, 148, 212, 0.1);
    border: 1px solid rgba(23, 148, 212, 0.3);
    color: #1794d4;
}

.tech-tag[data-tech="figma"] {
    background-color: rgba(162, 89, 255, 0.1);
    border: 1px solid rgba(162, 89, 255, 0.3);
    color: #a259ff;
}



.dark-mode .project-details {
    background-color: transparent;
}

.dark-mode .tech-section h4 {
    color: #fff;
}

.dark-mode .tech-tag {
    color: white;
} 

.dark-mode .tech-tag {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}


@media (max-width: 768px) {
    .tech-tags {
        gap: 0.4rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

.integrations-section {
    padding: 1rem 1.5rem;
    border-top: none;
}

.integrations-section h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.integrations-section h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.integrations-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.integration-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    background-color: rgba(108, 99, 255, 0.05);
    transition: var(--transition);
}

.integration-item:hover {
    background-color: rgba(108, 99, 255, 0.1);
}

.integration-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 20px;
}

.integration-text {
    font-size: 0.9rem;
    color: var(--dark-color);
}


.dark-mode .integrations-section {
    border-top-color: var(--gray-medium);
}

.dark-mode .integrations-section h4 {
    color: #fff;
}

.dark-mode .integration-item {
    background-color: rgba(108, 99, 255, 0.1);
}

.dark-mode .integration-item:hover {
    background-color: rgba(108, 99, 255, 0.2);
}

.dark-mode .integration-text {
    color: #fff;
}
