
:root {
    --negro: #0a0a0a;
    --verde-oscuro: #0d2818;
    --verde-medio: #1b4332;
    --verde-claro: #2d6a4f;
    --blanco: #f5f5f5;
    --gris-claro: #d6eaff;
    --gris-oscuro: #1a1a1a;
    --degradado-verde: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-claro) 100%);
    --icon-size: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--negro);
    color: var(--blanco);
    overflow-x: hidden;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    text-align: center;
    background: linear-gradient(-45deg, var(--negro), var(--verde-oscuro), var(--verde-medio), var(--negro));
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--blanco) 0%, var(--verde-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease forwards;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--blanco);
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    background-color: var(--blanco);
    color: var(--negro);
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--degradado-verde);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .btn:hover::before {
        left: 0;
    }

    .btn:hover {
        color: var(--blanco);
        transform: translateY(-3px);
    }

.hero-image {
    width: 25%;
    max-width: 600px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 2;
}

    .hero-image.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(45, 106, 79, 0.3);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.section-black {
    padding: 8rem 2rem;
    background-color: var(--negro);
}

.section-white {
    padding: 8rem 2rem;
    background-color: var(--blanco);
    color: var(--negro);
}

    .section-white h2, .section-white .service-card-modern h3 {
        color: var(--negro);
    }

    .section-white .service-card-modern {
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

        .section-white .service-card-modern p {
            color: rgba(0, 0, 0, 0.7);
        }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-title h2 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--blanco) 0%, var(--verde-claro) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.stats-section {
    background: var(--negro);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

    .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 0;
        background: var(--blanco);
        transition: height 0.5s ease;
    }

    .stat-item:hover::before {
        height: 100%;
    }

    .stat-item:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.15);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--blanco) 0%, var(--gris-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--blanco);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section {
    padding: 8rem 2rem;
    background-color: var(--blanco);
    color: var(--negro);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-modern {
    background: var(--blanco);
    color: var(--negro);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

    .service-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.service-card-modern:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--negro);
}

.service-card-modern p {
    color: rgba(0,0,0,0.7);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.mobile-apps-section {
    padding: 8rem 2rem;
    background: var(--degradado-verde);
    color: var(--blanco);
}

.mobile-apps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-devices {
    position: relative;
    height: 500px;
}

.mobile-device, .pc-device {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

.device-1 {
    width: 200px;
    height: 400px;
    left: 0;
    top: 50px;
    z-index: 3;
    transform: rotate(-5deg);
}

.device-2 {
    width: 220px;
    height: 440px;
    left: 180px;
    top: 30px;
    z-index: 2;
}

.device-3 {
    width: 200px;
    height: 400px;
    left: 350px;
    top: 70px;
    z-index: 1;
    transform: rotate(5deg);
}

.pc-device {
    width: 400px;
    height: 250px;
    left: 220px;
    top: 200px;
    z-index: 4;
    border-radius: 10px;
}

    .mobile-device img, .pc-device img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-device:hover, .pc-device:hover {
        transform: translateY(-10px) rotate(0deg);
        z-index: 5;
    }

.mobile-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mobile-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ia-section {
    padding: 8rem 2rem;
    background: var(--negro);
    color: var(--blanco);
}

.ia-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ia-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--blanco) 0%, var(--verde-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ia-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ia-image {
    position: relative;
    text-align: center;
}

    .ia-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

.team-section {
    padding: 8rem 2rem;
    background-color: var(--blanco);
    color: var(--negro);
}

    .team-section .section-title h2 {
        color: var(--negro);
    }

    .team-section .section-title p {
        color: rgba(0,0,0,0.7);
    }

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--negro);
    }

    .card p {
        color: rgba(0,0,0,0.7);
    }

.technologies-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

    .tech-item img {
        width: 4rem;
        height: 4rem;
        transition: transform 0.3s ease;
    }

    .tech-item:hover img {
        transform: scale(1.1);
    }

    .tech-item span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--negro);
    }

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--blanco);
}

.contact-details {
    margin-bottom: 2rem;
}

    .contact-details p {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .contact-details i {
        margin-right: 10px;
        color: var(--verde-claro);
    }

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--blanco);
    }

    .form-group input, .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.05);
        border-radius: 5px;
        color: var(--blanco);
        font-family: 'Montserrat', sans-serif;
    }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

.submit-btn {
    background: var(--degradado-verde);
    color: var(--blanco);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

.helper {
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    margin-top: .5rem;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }

    .ia-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        padding-top: 10rem;
        padding-bottom: 5rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        position: relative;
        width: 80%;
        margin: 2rem auto 0;
        right: 0;
        display: block;
        animation: float 6s ease-in-out infinite;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .ia-container, .mobile-apps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ia-image, .mobile-devices {
        order: 2;
        height: auto;
        margin-top: 2rem;
    }

    .ia-content {
        order: 1;
    }

    .services-grid, .grid-container {
        grid-template-columns: 1fr;
    }

    .mobile-devices {
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        gap: 1.5rem;
    }

    .mobile-device, .pc-device {
        position: static;
        transform: none !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .mobile-device {
        width: 150px;
        height: 300px;
        flex-shrink: 0;
    }

    .pc-device {
        display: none;
    }

    .modal-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

        .hero h1 {
            font-size: 2.2rem;
        }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .ia-content h2, .mobile-content h2 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details p {
        justify-content: center;
    }

    .mobile-devices {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        position: relative;
        gap: 20px;
    }

    .mobile-device {
        position: relative;
        width: 180px;
        height: 360px;
        margin-bottom: 0;
    }

    .pc-device {
        position: relative;
        width: 300px;
        height: 190px;
    }

    .device-2, .device-3 {
        display: none;
    }

    .section-black, .section-white {
        padding: 5rem 1.5rem;
    }

    .services-section, .ia-section, .team-section, .mobile-apps-section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-black, .section-white {
        padding: 4rem 1rem;
    }

    .services-section, .ia-section, .team-section, .mobile-apps-section {
        padding: 4rem 1rem;
    }

    .hero-image {
        width: 100%;
    }

    .mobile-device {
        width: 160px;
        height: 320px;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .mobile-apps-section .mobile-apps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pc-device {
        width: 250px;
        height: 160px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-modern h3 {
        font-size: 1.3rem;
    }

    .tech-item img {
        width: 3rem;
        height: 3rem;
    }

    .tech-item span {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.5rem;
    }

        .card h3 {
            font-size: 1.3rem;
        }
}





.footer {
    background-color: var(--negro);
    padding: 4rem 2rem 2rem;
    color: var(--blanco);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--blanco);
    text-transform: uppercase;
}

    .footer-column h3 a {
        text-decoration: none;
        color: inherit;
    }

        .footer-column h3 a:hover {
            color: var(--verde-claro);
        }

.footer-column p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .footer-social a {
        font-size: 1.2rem;
        color: var(--blanco);
        transition: color 0.3s ease;
    }

        .footer-social a:hover {
            color: var(--verde-claro);
        }

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list-unstyled li {
        margin-bottom: 0.5rem;
    }

    .list-unstyled a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-weight: 400;
        transition: color 0.3s ease;
    }

        .list-unstyled a:hover {
            color: var(--blanco);
        }

.copyright {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-grid {
        gap: 1rem;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-social a {
        font-size: 1.1rem;
    }
}








header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-img {
    height: 50px;
    animation: pulse 2s infinite;
    max-width: 100%
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanco);
    text-decoration: none;
    display: flex;
    align-items: center
}

    .logo span {
        color: var(--verde-claro)
    }

.nav-links {
    display: flex;
    list-style: none
}

    .nav-links li {
        margin: 0 1rem
    }

    .nav-links a {
        color: var(--blanco);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: var(--verde-claro)
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--degradado-verde);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%
        }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001
}

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: var(--blanco);
        margin: 4px 0;
        transition: all 0.3s ease
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px,6px)
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px,-6px)
    }

@media (max-width:1024px) {
    header {
        padding: 1rem 1.5rem
    }

    .nav-links {
        display: none
    }
}

@media (max-width:768px) {
    header {
        padding: 1rem
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(10,10,10,0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

        .nav-links.active {
            left: 0;
            display: flex
        }

        .nav-links li {
            margin: 1.5rem 0
        }

    .hamburger {
        display: flex
    }
}

@media (max-width:480px) {
    .logo {
        font-size: 1.5rem
    }

    .logo-img {
        height: 40px
    }
}



