﻿/* ====== GENERAL ====== */
body {
    background: linear-gradient(to bottom right, #0b2c4d, #083a59);
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

/* ====== HERO ====== */
.hero {
    padding: 100px 0;
    text-align: center;
}

.btn-main {
    background-color: #00bcd4;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn-main:hover {
        background-color: #009bb3;
    }

/* ====== FEATURES ====== */
.features {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 0;
}

    .features h5 {
        font-weight: bold;
    }

/* ====== SCREENSHOTS ====== */
.screenshots img {
    border-radius: 12px;
    max-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* ====== PLANES ====== */
#plans-container section.features {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
}

#plans-container .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

#plans-container .row {
    margin: 0 !important;
}

#plans-container .card.h-100 {
    height: auto !important;
}

#plans-container .card-body {
    padding: 1rem !important;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#plans-container .card-title {
    margin-bottom: 0.25rem !important;
}

#plans-container .card-text {
    margin-bottom: 0.75rem !important;
    line-height: 1.25 !important;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ====== FOOTER GENERAL ====== */
.footer-cta {
    background-color: #02203c;
    padding: 40px 0;
    color: #fff;
}

    .footer-cta .container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    /* Columna izquierda */
    .footer-cta .col-lg-5 {
        padding-right: 25px;
        margin-bottom: 20px;
    }

    /* Columna derecha (formulario) */
    .footer-cta .col-lg-7 {
        padding-left: 30px;
    }

/* ====== FORMULARIO ====== */
.bg-dark-2 {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.form-control-dark {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

    .form-control-dark::placeholder {
        color: rgba(255, 255, 255, 0.65);
    }

    .form-control-dark:focus {
        background-color: rgba(255, 255, 255, 0.12);
        border-color: #00bcd4;
        box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.15);
        color: #fff;
    }

/* ====== TARJETAS DE CONTACTO ====== */
#contacto-info {
    margin-top: 25px;
}

    #contacto-info h2 {
        margin-bottom: 20px;
        font-size: 1.5rem;
        color: #fff;
        text-align: left;
    }

    /* Contenedor de tarjetas */
    #contacto-info .row.g-3 {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

/* Tarjeta individual */
.contact-mini {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background-color 0.3s ease;
    width: 100%;
    max-width: 320px;
}

    /* Hover tarjeta */
    .contact-mini:hover {
        transform: translateY(-4px);
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Íconos */
    .contact-mini .icon-circle {
        background-color: #00c2ff;
        color: #fff;
        padding: 10px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        min-height: 42px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

/* Texto tarjeta */
.mini-label {
    font-weight: bold;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.mini-link {
    color: #00c2ff;
    text-decoration: none;
    font-weight: 500;
}

    .mini-link:hover {
        text-decoration: underline;
    }

/* ====== SUBFOOTER ====== */
.subfooter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #001a33 0%, #052240 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 12px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

    .subfooter a {
        color: #00c2d1;
        text-decoration: none;
        font-weight: 600;
    }

        .subfooter a:hover {
            text-decoration: underline;
            text-underline-offset: 2px;
        }

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .footer-cta .container {
        flex-direction: column;
    }

    .footer-cta .col-lg-5 {
        padding-right: 0;
        border-right: none;
    }

    .footer-cta .col-lg-7 {
        padding-left: 0;
        margin-top: 30px;
    }

    #contacto-info .row.g-3 {
        justify-content: center;
    }

    .contact-mini {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }

    .carousel-caption {
        font-size: 0.9rem;
    }

    .btn-main {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

.text-color {
color:#fff;
}  