* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7ff; /* Fondo claro sutil */
    color: #2c3e8c;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.main-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* --- CABECERA --- */
.header-section {
    margin-bottom: 50px;
}

.coming-soon {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2c3e8c;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: -10px;
    color: #2c3e8c;
}

.description {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    line-height: 1.5;
}

/* --- CUADRÍCULA DE SERVICIOS (3x2) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e7ff;
    border-radius: 25px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-placeholder img {
    height: 70px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card h3 span {
    font-weight: 400;
    color: #666;
}

.service-card p {
    font-size: 0.9rem;
    color: #777;
}

/* --- SECCIÓN SUSCRIPCIÓN --- */
.subscribe-box {
    background-color: #1a2440; /* Azul muy oscuro */
    border-radius: 30px;
    padding: 40px;
    color: #fff;
    margin-bottom: 40px;
}

.subscribe-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.mail-icon img {
    width: 120px;
}

.subscribe-text {
    text-align: left;
    flex: 1;
}

.subscribe-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.subscribe-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
}

.subscribe-form button {
    background-color: #ff6b18; /* Naranja */
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e55a00;
}

/* --- FOOTER --- */
.footer-section {
    padding-top: 20px;
}

.social-links {
    margin-bottom: 15px;
}

.social-links img {
    width: 24px;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links img:hover {
    opacity: 1;
}

.footer-section p {
    font-size: 0.85rem;
    color: #888;
}

/* --- RESPONSIVIDAD PARA MÓVILES --- */
@media (max-width: 850px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .subscribe-container {
        flex-direction: column;
        text-align: center;
    }
    .subscribe-text {
        text-align: center;
    }
    .subscribe-form {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .brand-name {
        font-size: 2.5rem;
    }
}