/* --- PLANT SYSTEM SECTION (Dark Mode Cards) --- */

.plant-system-section {
    background-color: #1a1a1a; /* Fondo general de la sección (oscuro) */
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
}

/* Estilos Generales de las Tarjetas */
.plant-card {
    background-color: #2d2d2d; /* Gris oscuro de la tarjeta */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* El borde superior degradado (Azul a Verde) */
.card-gradient-top {
    height: 8px;
    width: 100%;
    background: linear-gradient(90deg, #00b4db 0%, #a8e063 100%);
}

.card-content {
    padding: 30px;
}

/* --- ESTILOS TARJETA IZQUIERDA (Principal) --- */

.plant-header h2 {
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 20px;
}

.plant-header .subtitle {
    font-weight: 400;
    font-size: 16px;
    color: #bbb;
    margin-left: 10px;
}

.main-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Pills (Botones pequeños redondeados) */
.tech-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tech-pill {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid #444;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #ddd;
}

/* Workflow (Monitor -> Model...) */
.workflow-steps {
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #ccc;
}
.workflow-steps .step {
    background: #3a3a3a;
    padding: 5px 15px;
    border-radius: 6px;
    display: inline-block;
}
.workflow-steps .arrow {
    
    color: #ffffff;
    margin: 0 8px;
}

/* Cajas internas (Impact & Why Act Now) */
.inner-boxes-row {
    margin-bottom: 30px;
}

.info-box {
    background-color: #383838; /* Ligeramente más claro que la tarjeta base */
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    font-size: 14px;
}

.info-box h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-box ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.info-box ul li {
    color: #bbb;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Botones de acción inferiores */
.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-plant {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gradient {
    background: linear-gradient(90deg, #00c6ff 0%, #a4e123 100%);
    color: #fff;
    border: none;
}
.btn-gradient:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #555;
    color: #fff;
}
.btn-outline:hover {
    border-color: #fff;
    color: #fff;
}

/* --- ESTILOS TARJETA DERECHA (Contacto) --- */

.contact-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-person h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-person p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #aaa;
    line-height: 1.4;
}

.contact-person .email,
.contact-person .phone {
    color: #ccc;
    margin-top: 8px;
}

.contact-person i {
    color: #a4e123; /* Verde para los iconos pequeños */
    margin-right: 8px;
    width: 15px;
}

.contact-divider {
    border: 0;
    border-top: 1px solid #444;
    margin: 20px 0;
}

/* Iconos Sociales */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .plant-header h2 {
        font-size: 22px;
    }
    .plant-header .subtitle {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    .inner-boxes-row > div {
        margin-bottom: 20px;
    }
    .action-buttons {
        flex-direction: column;
        text-align: center;
    }
}