﻿body {
}
.logo-black {
    height: 40px; /* Ajusta el tamaño según tu necesidad */
    width: auto;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000; /* Color negro para la palabra "NEW" */
}

.soft {
    color: #003b5c; /* Color oscuro para SOFT */
}

.ideas {
    color: #3a8dde; /* Color azul para IDEAS */
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-in.appear {
        opacity: 1;
        transform: translateY(0);
    }

 /*Modal*/
.modal-content {
    border-radius: 10px;
}

.modal-body {
    text-align: center;
}

.btn-outline-secondary {
    border: 1px solid #ddd;
}

    .btn-outline-secondary:hover {
        background-color: #f8f9fa;
    }


    /*landing*/
.hero {
    background-color: #2d6cdf;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

    .hero h1,
    .hero p {
        color: white !important;
    }


.check-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
}

    .check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

        .check-list li::before {
            content: "✔️";
            position: absolute;
            left: 0;
            color: #28a745;
        }

.contact-form {
    padding: 60px 20px;
}
